From 27d6de0b186b303624125103716851e4fd0dae83 Mon Sep 17 00:00:00 2001 From: pfrazee <1270099+pfrazee@users.noreply.github.com> Date: Sun, 13 Jul 2025 02:52:39 +0000 Subject: [PATCH 01/10] Nightly source-language update --- src/locale/locales/en/messages.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/locale/locales/en/messages.po b/src/locale/locales/en/messages.po index f2170dcb2..3c8ca8f47 100644 --- a/src/locale/locales/en/messages.po +++ b/src/locale/locales/en/messages.po @@ -5341,7 +5341,7 @@ msgstr "" msgid "No messages yet" msgstr "" -#: src/view/com/notifications/NotificationFeed.tsx:116 +#: src/view/com/notifications/NotificationFeed.tsx:122 msgid "No notifications yet!" msgstr "" @@ -8367,7 +8367,7 @@ msgstr "" msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "" -#: src/view/com/notifications/NotificationFeed.tsx:124 +#: src/view/com/notifications/NotificationFeed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "" @@ -9405,7 +9405,7 @@ msgstr "" #: src/components/ProfileHoverCard/index.web.tsx:511 #: src/view/com/posts/PostFeedErrorMessage.tsx:179 #: src/view/com/util/PostMeta.tsx:91 -#: src/view/com/util/PostMeta.tsx:127 +#: src/view/com/util/PostMeta.tsx:128 msgid "View profile" msgstr "" -- 2.51.2 From be75e00d21fa988a1c73b1a994a5ee4426bf55c9 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Mon, 14 Jul 2025 11:37:23 -0500 Subject: [PATCH 02/10] Only show WhoCanReply on root post (#8645) --- src/screens/PostThread/components/ThreadItemAnchor.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/screens/PostThread/components/ThreadItemAnchor.tsx b/src/screens/PostThread/components/ThreadItemAnchor.tsx index 23a92bc28..481c335db 100644 --- a/src/screens/PostThread/components/ThreadItemAnchor.tsx +++ b/src/screens/PostThread/components/ThreadItemAnchor.tsx @@ -510,6 +510,7 @@ function ExpandedPostDetails({ const t = useTheme() const {_, i18n} = useLingui() const openLink = useOpenLink() + const isRootPost = !('reply' in post.record) const langPrefs = useLanguagePrefs() const translatorUrl = getTranslatorLink( @@ -555,7 +556,9 @@ function ExpandedPostDetails({ {niceDate(i18n, post.indexedAt)} - + {isRootPost && ( + + )} {needsTranslation && ( <> -- 2.51.2 From 587c14bac8d0c1acc5843072a010c3c986f925f4 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Mon, 14 Jul 2025 20:01:48 +0300 Subject: [PATCH 03/10] fix who can reply icon (#8625) --- src/components/WhoCanReply.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/WhoCanReply.tsx b/src/components/WhoCanReply.tsx index 86c0c936e..ee939939d 100644 --- a/src/components/WhoCanReply.tsx +++ b/src/components/WhoCanReply.tsx @@ -160,7 +160,9 @@ function Icon({ width?: number settings: ThreadgateAllowUISetting[] }) { - const isEverybody = settings.length === 0 + const isEverybody = + settings.length === 0 || + settings.every(setting => setting.type === 'everybody') const isNobody = !!settings.find(gate => gate.type === 'nobody') const IconComponent = isEverybody ? Earth : isNobody ? CircleBanSign : Group return -- 2.51.2 From b76f95c9bd419290fe66c56b24b44b3cdf5dc7ee Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Mon, 14 Jul 2025 20:03:28 +0300 Subject: [PATCH 04/10] bump version to v1.105 (#8616) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index d47eac126..357879048 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bsky.app", - "version": "1.104.0", + "version": "1.105.0", "private": true, "engines": { "node": ">=20" -- 2.51.2 From 1da123b12be408c4e8005338a93a56131541be15 Mon Sep 17 00:00:00 2001 From: jcalabro Date: Mon, 14 Jul 2025 16:21:06 -0400 Subject: [PATCH 05/10] Fix Age Restriction Type --- bskyweb/cmd/bskyweb/server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bskyweb/cmd/bskyweb/server.go b/bskyweb/cmd/bskyweb/server.go index ce5910e99..d9827c757 100644 --- a/bskyweb/cmd/bskyweb/server.go +++ b/bskyweb/cmd/bskyweb/server.go @@ -604,7 +604,7 @@ type IPCCRequest struct { } type IPCCResponse struct { CC string `json:"countryCode"` - AgeRestrictedGeo string `json:"isAgeRestrictedGeo"` + AgeRestrictedGeo bool `json:"isAgeRestrictedGeo"` } func (srv *Server) WebIpCC(c echo.Context) error { -- 2.51.2 From c9c91fb113f9c80c5e0be8244ee367a7c9f934b2 Mon Sep 17 00:00:00 2001 From: Jim Calabro Date: Mon, 14 Jul 2025 17:22:41 -0400 Subject: [PATCH 06/10] omitempty on aa (#8647) --- bskyweb/cmd/bskyweb/server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bskyweb/cmd/bskyweb/server.go b/bskyweb/cmd/bskyweb/server.go index d9827c757..ade7e1065 100644 --- a/bskyweb/cmd/bskyweb/server.go +++ b/bskyweb/cmd/bskyweb/server.go @@ -604,7 +604,7 @@ type IPCCRequest struct { } type IPCCResponse struct { CC string `json:"countryCode"` - AgeRestrictedGeo bool `json:"isAgeRestrictedGeo"` + AgeRestrictedGeo bool `json:"isAgeRestrictedGeo,omitempty"` } func (srv *Server) WebIpCC(c echo.Context) error { -- 2.51.2 From 1f82b1d5572c3944cf1f987e9090f8f626d67fcd Mon Sep 17 00:00:00 2001 From: pfrazee <1270099+pfrazee@users.noreply.github.com> Date: Tue, 15 Jul 2025 02:49:31 +0000 Subject: [PATCH 07/10] Nightly source-language update --- src/locale/locales/en/messages.po | 44 +++++++++++++++---------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/src/locale/locales/en/messages.po b/src/locale/locales/en/messages.po index 3c8ca8f47..62152942f 100644 --- a/src/locale/locales/en/messages.po +++ b/src/locale/locales/en/messages.po @@ -464,7 +464,7 @@ msgstr "" msgid "<0>{0} is included in your starter pack" msgstr "" -#: src/components/WhoCanReply.tsx:317 +#: src/components/WhoCanReply.tsx:319 msgid "<0>{0} members" msgstr "" @@ -958,7 +958,7 @@ msgstr "" msgid "an unknown labeler" msgstr "" -#: src/components/WhoCanReply.tsx:338 +#: src/components/WhoCanReply.tsx:340 msgid "and" msgstr "" @@ -1075,13 +1075,13 @@ msgstr "" msgid "Apply default recommended feeds" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:634 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:637 #: src/view/com/post-thread/PostThreadItem.tsx:955 msgid "Archived from {0}" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:606 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:645 #: src/view/com/post-thread/PostThreadItem.tsx:924 #: src/view/com/post-thread/PostThreadItem.tsx:963 msgid "Archived post" @@ -1318,7 +1318,7 @@ msgstr "" msgid "Bluesky" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:659 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:662 #: src/view/com/post-thread/PostThreadItem.tsx:980 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "" @@ -1773,8 +1773,8 @@ msgstr "" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/components/verification/VerificationsDialog.tsx:144 #: src/components/verification/VerifierDialog.tsx:144 -#: src/components/WhoCanReply.tsx:200 -#: src/components/WhoCanReply.tsx:207 +#: src/components/WhoCanReply.tsx:202 +#: src/components/WhoCanReply.tsx:209 #: src/view/com/feeds/MissingFeed.tsx:208 #: src/view/com/feeds/MissingFeed.tsx:215 #: src/view/com/modals/ChangePassword.tsx:279 @@ -2491,7 +2491,7 @@ msgstr "" msgid "Developer options" msgstr "" -#: src/components/WhoCanReply.tsx:186 +#: src/components/WhoCanReply.tsx:188 msgid "Dialog: adjust who can interact with this post" msgstr "" @@ -3063,7 +3063,7 @@ msgstr "" msgid "Everybody can reply" msgstr "" -#: src/components/WhoCanReply.tsx:243 +#: src/components/WhoCanReply.tsx:245 msgid "Everybody can reply to this post." msgstr "" @@ -4820,7 +4820,7 @@ msgstr "" msgid "Mention notifications" msgstr "" -#: src/components/WhoCanReply.tsx:284 +#: src/components/WhoCanReply.tsx:286 msgid "mentioned users" msgstr "" @@ -5353,7 +5353,7 @@ msgstr "" msgid "No one" msgstr "" -#: src/components/WhoCanReply.tsx:267 +#: src/components/WhoCanReply.tsx:269 msgid "No one but the author can quote this post." msgstr "" @@ -5550,7 +5550,7 @@ msgid "OK" msgstr "" #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:664 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:667 #: src/view/com/post-thread/PostThreadItem.tsx:985 msgid "Okay" msgstr "" @@ -5590,7 +5590,7 @@ msgstr "" msgid "Only .jpg and .png files are supported" msgstr "" -#: src/components/WhoCanReply.tsx:247 +#: src/components/WhoCanReply.tsx:249 msgid "Only {0} can reply." msgstr "" @@ -6706,7 +6706,7 @@ msgstr "" msgid "Replies disabled" msgstr "" -#: src/components/WhoCanReply.tsx:245 +#: src/components/WhoCanReply.tsx:247 msgid "Replies to this post are disabled." msgstr "" @@ -7719,7 +7719,7 @@ msgstr "" msgid "Show warning and filter from feeds" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:605 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:608 #: src/view/com/post-thread/PostThreadItem.tsx:926 msgid "Shows information about when this post was created" msgstr "" @@ -8593,12 +8593,12 @@ msgstr "" msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:645 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:648 #: src/view/com/post-thread/PostThreadItem.tsx:966 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "" -#: src/components/WhoCanReply.tsx:238 +#: src/components/WhoCanReply.tsx:240 msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "" @@ -8773,8 +8773,8 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:144 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:444 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:446 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:567 #: src/screens/PostThread/components/ThreadItemAnchor.tsx:570 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:573 #: src/view/com/post-thread/PostThreadItem.tsx:888 #: src/view/com/post-thread/PostThreadItem.tsx:891 msgid "Translate" @@ -9199,11 +9199,11 @@ msgstr "" msgid "Username or email address" msgstr "" -#: src/components/WhoCanReply.tsx:301 +#: src/components/WhoCanReply.tsx:303 msgid "users followed by <0>@{0}" msgstr "" -#: src/components/WhoCanReply.tsx:288 +#: src/components/WhoCanReply.tsx:290 msgid "users following <0>@{0}" msgstr "" @@ -9639,7 +9639,7 @@ msgstr "" msgid "Which languages would you like to see in your algorithmic feeds?" msgstr "" -#: src/components/WhoCanReply.tsx:190 +#: src/components/WhoCanReply.tsx:192 msgid "Who can interact with this post?" msgstr "" -- 2.51.2 From 4ccbae7c30307bd19a9bd4afa9f2039aed9da94c Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Tue, 15 Jul 2025 07:48:24 +0300 Subject: [PATCH 08/10] Fix perf issue on web - restore pop behaviour to tabs (#8620) --- src/components/Link.tsx | 2 +- .../StarterPack/StarterPackCard.tsx | 1 - src/lib/hooks/useNavigationDeduped.ts | 8 ++++++++ src/view/com/util/Link.tsx | 5 +++-- src/view/shell/desktop/LeftNav.tsx | 19 ++++++++++--------- 5 files changed, 22 insertions(+), 13 deletions(-) diff --git a/src/components/Link.tsx b/src/components/Link.tsx index 127b2edfb..6954be6a8 100644 --- a/src/components/Link.tsx +++ b/src/components/Link.tsx @@ -192,7 +192,7 @@ export function useLink({ navigation.dispatch(StackActions.replace(screen, params)) } else if (action === 'navigate') { // @ts-expect-error not typed - navigation.navigate(screen, params) + navigation.navigate(screen, params, {pop: true}) } else { throw Error('Unsupported navigator action.') } diff --git a/src/components/StarterPack/StarterPackCard.tsx b/src/components/StarterPack/StarterPackCard.tsx index 88d075b78..d889b2e72 100644 --- a/src/components/StarterPack/StarterPackCard.tsx +++ b/src/components/StarterPack/StarterPackCard.tsx @@ -156,7 +156,6 @@ export function Link({ return ( { diff --git a/src/lib/hooks/useNavigationDeduped.ts b/src/lib/hooks/useNavigationDeduped.ts index 136e5fb96..2448787bd 100644 --- a/src/lib/hooks/useNavigationDeduped.ts +++ b/src/lib/hooks/useNavigationDeduped.ts @@ -7,6 +7,8 @@ import {type NavigationProp} from '#/lib/routes/types' export type DebouncedNavigationProp = Pick< NavigationProp, | 'popToTop' + | 'popTo' + | 'pop' | 'push' | 'navigate' | 'canGoBack' @@ -38,6 +40,12 @@ export function useNavigationDeduped() { popToTop: () => { dedupe(() => navigation.popToTop()) }, + popTo: (...args: Parameters) => { + dedupe(() => navigation.popTo(...args)) + }, + pop: (...args: Parameters) => { + dedupe(() => navigation.pop(...args)) + }, goBack: () => { dedupe(() => navigation.goBack()) }, diff --git a/src/view/com/util/Link.tsx b/src/view/com/util/Link.tsx index a9c12ba0e..4008a6fc3 100644 --- a/src/view/com/util/Link.tsx +++ b/src/view/com/util/Link.tsx @@ -11,7 +11,6 @@ import { type ViewStyle, } from 'react-native' import {sanitizeUrl} from '@braintree/sanitize-url' -import {StackActions} from '@react-navigation/native' import { type DebouncedNavigationProp, @@ -421,8 +420,10 @@ function onPressInner( if (tabState === TabState.InsideAtRoot) { emitSoftReset() } else { + // note: 'navigate' actually acts the same as 'push' nowadays + // therefore we need to add 'pop' -sfn // @ts-ignore we're not able to type check on this one -prf - navigation.navigate(routeName, params) + navigation.navigate(routeName, params, {pop: true}) } } else { throw Error('Unsupported navigator action.') diff --git a/src/view/shell/desktop/LeftNav.tsx b/src/view/shell/desktop/LeftNav.tsx index 52df66d70..ee2b1778b 100644 --- a/src/view/shell/desktop/LeftNav.tsx +++ b/src/view/shell/desktop/LeftNav.tsx @@ -3,11 +3,7 @@ import {StyleSheet, View} from 'react-native' import {type AppBskyActorDefs} from '@atproto/api' import {msg, plural, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' -import { - useLinkTo, - useNavigation, - useNavigationState, -} from '@react-navigation/native' +import {useNavigation, useNavigationState} from '@react-navigation/native' import {useActorStatus} from '#/lib/actor-status' import {useAccountSwitcher} from '#/lib/hooks/useAccountSwitcher' @@ -16,7 +12,10 @@ import {usePalette} from '#/lib/hooks/usePalette' import {useWebMediaQueries} from '#/lib/hooks/useWebMediaQueries' import {getCurrentRoute, isTab} from '#/lib/routes/helpers' import {makeProfileLink} from '#/lib/routes/links' -import {type CommonNavigatorParams} from '#/lib/routes/types' +import { + type CommonNavigatorParams, + type NavigationProp, +} from '#/lib/routes/types' import {useGate} from '#/lib/statsig/statsig' import {sanitizeDisplayName} from '#/lib/strings/display-names' import {isInvalidHandle, sanitizeHandle} from '#/lib/strings/handles' @@ -339,7 +338,7 @@ function NavItem({count, hasNew, href, icon, iconFilled, label}: NavItemProps) { (currentRouteInfo.params as CommonNavigatorParams['Profile']).name === currentAccount?.handle : isTab(currentRouteInfo.name, pathName) - const linkTo = useLinkTo() + const navigation = useNavigation() const onPressWrapped = useCallback( (e: React.MouseEvent) => { if (e.ctrlKey || e.metaKey || e.altKey) { @@ -349,10 +348,12 @@ function NavItem({count, hasNew, href, icon, iconFilled, label}: NavItemProps) { if (isCurrent) { emitSoftReset() } else { - linkTo(href) + const [screen, params] = router.matchPath(href) + // @ts-expect-error TODO: type matchPath well enough that it can be plugged into navigation.navigate directly + navigation.popTo(screen, params) } }, - [linkTo, href, isCurrent], + [navigation, href, isCurrent], ) return ( -- 2.51.2 From 60c0689236cf40ea0411185aec16f916ebf40085 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Tue, 15 Jul 2025 15:53:52 +0300 Subject: [PATCH 09/10] Fix navigation (#8648) --- src/view/com/util/Link.tsx | 1 + src/view/shell/desktop/LeftNav.tsx | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/view/com/util/Link.tsx b/src/view/com/util/Link.tsx index 4008a6fc3..6a931d9a4 100644 --- a/src/view/com/util/Link.tsx +++ b/src/view/com/util/Link.tsx @@ -11,6 +11,7 @@ import { type ViewStyle, } from 'react-native' import {sanitizeUrl} from '@braintree/sanitize-url' +import {StackActions} from '@react-navigation/native' import { type DebouncedNavigationProp, diff --git a/src/view/shell/desktop/LeftNav.tsx b/src/view/shell/desktop/LeftNav.tsx index ee2b1778b..aa18f9b70 100644 --- a/src/view/shell/desktop/LeftNav.tsx +++ b/src/view/shell/desktop/LeftNav.tsx @@ -350,7 +350,7 @@ function NavItem({count, hasNew, href, icon, iconFilled, label}: NavItemProps) { } else { const [screen, params] = router.matchPath(href) // @ts-expect-error TODO: type matchPath well enough that it can be plugged into navigation.navigate directly - navigation.popTo(screen, params) + navigation.navigate(screen, params, {pop: true}) } }, [navigation, href, isCurrent], -- 2.51.2 From 712c3ad4211e2e68d0cdbcc480967c63aeaa6c0e Mon Sep 17 00:00:00 2001 From: pfrazee <1270099+pfrazee@users.noreply.github.com> Date: Wed, 16 Jul 2025 02:47:16 +0000 Subject: [PATCH 10/10] Nightly source-language update --- src/locale/locales/en/messages.po | 46 +++++++++++++++---------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/src/locale/locales/en/messages.po b/src/locale/locales/en/messages.po index 62152942f..315782f12 100644 --- a/src/locale/locales/en/messages.po +++ b/src/locale/locales/en/messages.po @@ -203,7 +203,7 @@ msgstr "" msgid "{0}s" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/desktop/LeftNav.tsx:402 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "" @@ -663,8 +663,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:469 #: src/screens/Settings/Settings.tsx:472 -#: src/view/shell/desktop/LeftNav.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:264 +#: src/view/shell/desktop/LeftNav.tsx:259 +#: src/view/shell/desktop/LeftNav.tsx:263 msgid "Add another account" msgstr "" @@ -1488,7 +1488,7 @@ msgstr "" #: src/view/com/modals/ChangePassword.tsx:282 #: src/view/com/modals/CreateOrEditList.tsx:333 #: src/view/com/modals/CropImage.web.tsx:97 -#: src/view/shell/desktop/LeftNav.tsx:213 +#: src/view/shell/desktop/LeftNav.tsx:212 msgid "Cancel" msgstr "" @@ -1590,7 +1590,7 @@ msgstr "" #: src/lib/hooks/useNotificationHandler.ts:99 #: src/Navigation.tsx:547 #: src/view/shell/bottom-bar/BottomBar.tsx:221 -#: src/view/shell/desktop/LeftNav.tsx:553 +#: src/view/shell/desktop/LeftNav.tsx:554 #: src/view/shell/Drawer.tsx:455 msgid "Chat" msgstr "" @@ -1889,7 +1889,7 @@ msgstr "" msgid "Complete the challenge" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:518 +#: src/view/shell/desktop/LeftNav.tsx:519 msgid "Compose new post" msgstr "" @@ -3170,7 +3170,7 @@ msgstr "" #: src/Navigation.tsx:749 #: src/screens/Search/Shell.tsx:307 -#: src/view/shell/desktop/LeftNav.tsx:635 +#: src/view/shell/desktop/LeftNav.tsx:636 #: src/view/shell/Drawer.tsx:403 msgid "Explore" msgstr "" @@ -3434,7 +3434,7 @@ msgstr "" #: src/view/screens/Feeds.tsx:511 #: src/view/screens/Profile.tsx:230 #: src/view/screens/SavedFeeds.tsx:104 -#: src/view/shell/desktop/LeftNav.tsx:673 +#: src/view/shell/desktop/LeftNav.tsx:674 #: src/view/shell/Drawer.tsx:519 msgid "Feeds" msgstr "" @@ -4079,7 +4079,7 @@ msgstr "" #: src/Navigation.tsx:744 #: src/Navigation.tsx:764 #: src/view/shell/bottom-bar/BottomBar.tsx:178 -#: src/view/shell/desktop/LeftNav.tsx:617 +#: src/view/shell/desktop/LeftNav.tsx:618 #: src/view/shell/Drawer.tsx:429 msgid "Home" msgstr "" @@ -4676,7 +4676,7 @@ msgstr "" #: src/view/screens/Lists.tsx:65 #: src/view/screens/Profile.tsx:224 #: src/view/screens/Profile.tsx:232 -#: src/view/shell/desktop/LeftNav.tsx:691 +#: src/view/shell/desktop/LeftNav.tsx:692 #: src/view/shell/Drawer.tsx:534 msgid "Lists" msgstr "" @@ -5122,7 +5122,7 @@ msgid "Nature" msgstr "" #: src/components/StarterPack/StarterPackCard.tsx:130 -#: src/components/StarterPack/StarterPackCard.tsx:161 +#: src/components/StarterPack/StarterPackCard.tsx:160 msgid "Navigate to {0}" msgstr "" @@ -5238,7 +5238,7 @@ msgctxt "action" msgid "New post" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:526 +#: src/view/shell/desktop/LeftNav.tsx:527 msgctxt "action" msgid "New Post" msgstr "" @@ -5500,7 +5500,7 @@ msgstr "" #: src/screens/Settings/Settings.tsx:190 #: src/view/screens/Notifications.tsx:130 #: src/view/shell/bottom-bar/BottomBar.tsx:252 -#: src/view/shell/desktop/LeftNav.tsx:654 +#: src/view/shell/desktop/LeftNav.tsx:655 #: src/view/shell/Drawer.tsx:482 msgid "Notifications" msgstr "" @@ -6328,7 +6328,7 @@ msgid "profile" msgstr "" #: src/view/shell/bottom-bar/BottomBar.tsx:316 -#: src/view/shell/desktop/LeftNav.tsx:709 +#: src/view/shell/desktop/LeftNav.tsx:710 #: src/view/shell/Drawer.tsx:76 #: src/view/shell/Drawer.tsx:559 msgid "Profile" @@ -7465,7 +7465,7 @@ msgstr "" #: src/Navigation.tsx:211 #: src/screens/Settings/Settings.tsx:92 -#: src/view/shell/desktop/LeftNav.tsx:727 +#: src/view/shell/desktop/LeftNav.tsx:728 #: src/view/shell/Drawer.tsx:572 msgid "Settings" msgstr "" @@ -7787,9 +7787,9 @@ msgstr "" #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:96 #: src/screens/Takendown.tsx:85 -#: src/view/shell/desktop/LeftNav.tsx:212 -#: src/view/shell/desktop/LeftNav.tsx:267 -#: src/view/shell/desktop/LeftNav.tsx:270 +#: src/view/shell/desktop/LeftNav.tsx:211 +#: src/view/shell/desktop/LeftNav.tsx:266 +#: src/view/shell/desktop/LeftNav.tsx:269 msgid "Sign out" msgstr "" @@ -7798,7 +7798,7 @@ msgid "Sign Out" msgstr "" #: src/screens/Settings/Settings.tsx:276 -#: src/view/shell/desktop/LeftNav.tsx:209 +#: src/view/shell/desktop/LeftNav.tsx:208 msgid "Sign out?" msgstr "" @@ -8094,7 +8094,7 @@ msgstr "" #: src/screens/Settings/Settings.tsx:114 #: src/screens/Settings/Settings.tsx:128 #: src/screens/Settings/Settings.tsx:509 -#: src/view/shell/desktop/LeftNav.tsx:246 +#: src/view/shell/desktop/LeftNav.tsx:245 msgid "Switch account" msgstr "" @@ -8103,11 +8103,11 @@ msgstr "" msgid "Switch Account" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:110 +#: src/view/shell/desktop/LeftNav.tsx:109 msgid "Switch accounts" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:294 +#: src/view/shell/desktop/LeftNav.tsx:293 msgid "Switch to {0}" msgstr "" @@ -10028,7 +10028,7 @@ msgid "You reacted {0} to {1}" msgstr "" #: src/screens/Settings/Settings.tsx:277 -#: src/view/shell/desktop/LeftNav.tsx:210 +#: src/view/shell/desktop/LeftNav.tsx:209 msgid "You will be signed out of all your accounts." msgstr "" -- 2.51.2