diff --git a/.github/workflows/nightly-update-source-languages.yaml b/.github/workflows/nightly-update-source-languages.yaml
new file mode 100644
index 0000000000..27a3477da4
--- /dev/null
+++ b/.github/workflows/nightly-update-source-languages.yaml
@@ -0,0 +1,38 @@
+name: Nightly Update Source Languages
+on:
+ schedule:
+ - cron: '0 2 * * *' # run at 2 AM UTC
+ workflow_dispatch:
+
+jobs:
+ extract-languages:
+ name: Nightly Update Source Languages
+ runs-on: ubuntu-latest
+
+ permissions:
+ # Give the default GITHUB_TOKEN write permission to commit and push the
+ # added or changed files to the repository.
+ contents: write
+
+ steps:
+ - name: Check out Git repository
+ uses: actions/checkout@v3
+ with:
+ ssh-key: ${{secrets.GH_ACTION_DEPLOY_KEY}}
+ - name: Install node
+ uses: actions/setup-node@v4
+ with:
+ node-version-file: .nvmrc
+ - name: Yarn install
+ uses: Wandalen/wretry.action@master
+ with:
+ command: yarn --frozen-lockfile
+ attempt_limit: 3
+ attempt_delay: 2000
+ - name: Extract language strings
+ run: yarn intl:extract
+ - name: Create commit
+ uses: stefanzweifel/git-auto-commit-action@v5
+ with:
+ commit_message: Nightly source-language update
+ file_pattern: ./src/locale/locales/en/messages.po
diff --git a/__tests__/lib/strings/handles.test.ts b/__tests__/lib/strings/handles.test.ts
new file mode 100644
index 0000000000..4456fae946
--- /dev/null
+++ b/__tests__/lib/strings/handles.test.ts
@@ -0,0 +1,42 @@
+import {IsValidHandle, validateServiceHandle} from '#/lib/strings/handles'
+
+describe('handle validation', () => {
+ const valid = [
+ ['ali', 'bsky.social'],
+ ['alice', 'bsky.social'],
+ ['a-lice', 'bsky.social'],
+ ['a-----lice', 'bsky.social'],
+ ['123', 'bsky.social'],
+ ['123456789012345678', 'bsky.social'],
+ ['alice', 'custom-pds.com'],
+ ['alice', 'my-custom-pds-with-long-name.social'],
+ ['123456789012345678', 'my-custom-pds-with-long-name.social'],
+ ]
+ it.each(valid)(`should be valid: %s.%s`, (handle, service) => {
+ const result = validateServiceHandle(handle, service)
+ expect(result.overall).toEqual(true)
+ })
+
+ const invalid = [
+ ['al', 'bsky.social', 'frontLength'],
+ ['-alice', 'bsky.social', 'hyphenStartOrEnd'],
+ ['alice-', 'bsky.social', 'hyphenStartOrEnd'],
+ ['%%%', 'bsky.social', 'handleChars'],
+ ['1234567890123456789', 'bsky.social', 'frontLength'],
+ [
+ '1234567890123456789',
+ 'my-custom-pds-with-long-name.social',
+ 'frontLength',
+ ],
+ ['al', 'my-custom-pds-with-long-name.social', 'frontLength'],
+ ['a'.repeat(300), 'toolong.com', 'totalLength'],
+ ] satisfies [string, string, keyof IsValidHandle][]
+ it.each(invalid)(
+ `should be invalid: %s.%s due to %s`,
+ (handle, service, expectedError) => {
+ const result = validateServiceHandle(handle, service)
+ expect(result.overall).toEqual(false)
+ expect(result[expectedError]).toEqual(false)
+ },
+ )
+})
diff --git a/app.config.js b/app.config.js
index 9916e3e65f..2303a2a338 100644
--- a/app.config.js
+++ b/app.config.js
@@ -86,6 +86,7 @@ module.exports = function (config) {
'gl',
'hi',
'hu',
+ 'ia',
'id',
'it',
'ja',
diff --git a/assets/icons/chevronTopBottom_stroke2_corner0_rounded.svg b/assets/icons/chevronTopBottom_stroke2_corner0_rounded.svg
new file mode 100644
index 0000000000..249846bc3d
--- /dev/null
+++ b/assets/icons/chevronTopBottom_stroke2_corner0_rounded.svg
@@ -0,0 +1 @@
+
diff --git a/assets/icons/coffee_stroke2_corner0_rounded.svg b/assets/icons/coffee_stroke2_corner0_rounded.svg
deleted file mode 100644
index 90bd5b6ae1..0000000000
--- a/assets/icons/coffee_stroke2_corner0_rounded.svg
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/assets/icons/piggyBank_stroke2_corner0_rounded.svg b/assets/icons/piggyBank_stroke2_corner0_rounded.svg
deleted file mode 100644
index 0ec432635b..0000000000
--- a/assets/icons/piggyBank_stroke2_corner0_rounded.svg
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/assets/icons/poop_stroke2_corner0_rounded.svg b/assets/icons/poop_stroke2_corner0_rounded.svg
deleted file mode 100644
index d6342739ff..0000000000
--- a/assets/icons/poop_stroke2_corner0_rounded.svg
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/crowdin.yml b/crowdin.yml
new file mode 100644
index 0000000000..b5ed92f284
--- /dev/null
+++ b/crowdin.yml
@@ -0,0 +1,20 @@
+{
+ "project_id": "664276",
+ "base_path": ".",
+ "preserve_hierarchy": true,
+ "files": [
+ {
+ "source": "/src/locale/locales/en/messages.po",
+ "translation": "/src/locale/locales/%two_letters_code%/messages.po",
+ "languages_mapping": {
+ "two_letters_code": {
+ "pt-BR": "pt-BR",
+ "en-GB": "en-GB",
+ "zh-CN": "zh-CN",
+ "zh-TW": "zh-TW",
+ "zh-HK": "zh-HK"
+ }
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/docs/localization.md b/docs/localization.md
index 0de2447952..25c4518e6e 100644
--- a/docs/localization.md
+++ b/docs/localization.md
@@ -3,9 +3,64 @@
We want the official Bluesky app to be supported in as many languages as possible. If you want to help us translate the app, please open a PR or issue on the [Bluesky app repo on GitHub](https://github.com/bluesky-social/social-app)
## Tools
-We are using Lingui to manage translations. You can find the documentation [here](https://lingui.dev/).
+
+- We use Lingui to implement translations. You can find the documentation [here](https://lingui.dev/).
+- We use Crowdin to manage translations.
+ - Bluesky Crowdin: https://crowdin.com/project/bluesky-social
+ - Introduction to Crowdin: https://support.crowdin.com/for-translators/
+
+## Translators
+
+Much of the app is translated by community contributions. (We <3 our translators!) If you want to participate in the translation of the app, read this section.
+
+### Using Crowdin
+
+[Crowdin](https://crowdin.com/project/bluesky-social) is our primary tool for managing translations. There are two roles:
+
+- **Proof-readers**. Can create new translations and approve submitted translations.
+- **Translators**. Can create new translations.
+
+All translations must be approved by proof-readers before they are accepted into the app.
+
+### Using other platforms
+
+You may contribute PRs separately from Crowdin, however we strongly recommend using Crowdin to avoid conflicts.
+
+### Code of conduct on Crowdin
+
+Please treat everyone with respect. Proof-readers are given final say on translations. Translators who frequently come into conflict with other translators, or who contribute noticably incorrect translations, will have their membership to the Crowdin project revoked.
+
+### Adding a new language
+
+Create a new [Crowdin discussion](https://crowdin.com/project/bluesky-social/discussions) or [GitHub issue](https://github.com/bluesky-social/social-app/issues) requesting the new language be added to the project.
+
+Please only request a new language when you are certain you will be able to contribute a substantive portion of translations for the language.
+
+## Maintainers
+
+Install the [Crowdin CLI](https://crowdin.github.io/crowdin-cli/). You will need to [configure your API token](https://crowdin.github.io/crowdin-cli/configuration) to access the project.
+
+### English source-file sync with Crowdin
+
+Every night, a GitHub action will run `yarn intl:extract` to update the english `messages.po` file. This will be automatically synced with Crowdin. Crowdin should notify all subscribed users of new translations.
+
+### Release process
+
+1. Pull main and create a branch.
+1. Run `yarn intl:pull` to fetch all translation updates from Crowdin.
+1. Create a PR, ensure the translations all look correct, and merge.
+1. If needed:
+ 1. Merge all approved translation PRs (contributions from outside crowdin).
+ 1. Run `yarn intl:push` to sync Crowdin with the state of the repo.
+
+### Testing the translations in Crowdin
+
+You can run `yarn intl:pull` to pull the currently-approved translations from Crowdin.
+
+## Developers
### Adding new strings
+
When adding a new string, do it as follows:
```jsx
// Before
@@ -61,6 +116,7 @@ So the workflow is as follows:
6. Enjoy translated app!
### Common pitfalls
+
These pitfalls are memoization pitfalls that will cause the components to not re-render when the locale is changed -- causing stale translations to be shown.
```jsx
@@ -111,9 +167,3 @@ export function Welcome() {
return
{welcome}
;
}
```
-
-
-### Credits
-Please check each individual `messages.po` file for the credits of the translators. We are very grateful for their help!
-
-If you would like to translate the Bluesky app into your language, please open a PR or issue on this repo.
diff --git a/lingui.config.js b/lingui.config.js
index fe93775f99..7bef435093 100644
--- a/lingui.config.js
+++ b/lingui.config.js
@@ -17,6 +17,7 @@ module.exports = {
'gl',
'hi',
'hu',
+ 'ia',
'id',
'it',
'ja',
diff --git a/src/Navigation.tsx b/src/Navigation.tsx
index a6332c5d88..0dcce98bf3 100644
--- a/src/Navigation.tsx
+++ b/src/Navigation.tsx
@@ -70,6 +70,7 @@ import {MessagesScreen} from '#/screens/Messages/ChatList'
import {MessagesConversationScreen} from '#/screens/Messages/Conversation'
import {MessagesSettingsScreen} from '#/screens/Messages/Settings'
import {ModerationScreen} from '#/screens/Moderation'
+import {Screen as ModerationInteractionSettings} from '#/screens/ModerationInteractionSettings'
import {PostLikedByScreen} from '#/screens/Post/PostLikedBy'
import {PostQuotesScreen} from '#/screens/Post/PostQuotes'
import {PostRepostedByScreen} from '#/screens/Post/PostRepostedBy'
@@ -155,6 +156,14 @@ function commonScreens(Stack: typeof HomeTab, unreadCountLabel?: string) {
getComponent={() => ModerationBlockedAccounts}
options={{title: title(msg`Blocked Accounts`), requireAuth: true}}
/>
+ ModerationInteractionSettings}
+ options={{
+ title: title(msg`Post Interaction Settings`),
+ requireAuth: true,
+ }}
+ />
SettingsScreen}
diff --git a/src/alf/atoms.ts b/src/alf/atoms.ts
index a7cf6cb3f4..c9db8accc3 100644
--- a/src/alf/atoms.ts
+++ b/src/alf/atoms.ts
@@ -50,6 +50,12 @@ export const atoms = {
overflow_hidden: {
overflow: 'hidden',
},
+ /**
+ * @platform web
+ */
+ overflow_auto: web({
+ overflow: 'auto',
+ }),
/*
* Width
@@ -68,7 +74,6 @@ export const atoms = {
* Used for the outermost components on screens, to ensure that they can fill
* the screen and extend beyond.
*/
- // @ts-ignore - web only minHeight string
util_screen_outer: [
web({
minHeight: '100vh',
@@ -76,7 +81,7 @@ export const atoms = {
native({
height: '100%',
}),
- ] as ViewStyle,
+ ] as StyleProp,
/*
* Theme-independent bg colors
@@ -965,6 +970,34 @@ export const atoms = {
transitionDelay: '50ms',
}),
+ /*
+ * Animaations
+ */
+ fade_in: web({
+ animation: 'fadeIn ease-out 0.15s',
+ }),
+ fade_out: web({
+ animation: 'fadeOut ease-out 0.15s',
+ }),
+ zoom_in: web({
+ animation: 'zoomIn ease-out 0.1s',
+ }),
+ zoom_out: web({
+ animation: 'zoomOut ease-out 0.1s',
+ }),
+ slide_in_left: web({
+ // exponential easing function
+ animation: 'slideInLeft cubic-bezier(0.16, 1, 0.3, 1) 0.5s',
+ }),
+ slide_out_left: web({
+ animation: 'slideOutLeft ease-in 0.15s',
+ animationFillMode: 'forwards',
+ }),
+ // special composite animation for dialogs
+ zoom_fade_in: web({
+ animation: 'zoomIn ease-out 0.1s, fadeIn ease-out 0.1s',
+ }),
+
/**
* {@link Layout.SCROLLBAR_OFFSET}
*/
diff --git a/src/components/Dialog/index.web.tsx b/src/components/Dialog/index.web.tsx
index e45133dc5a..9f4f8bb3fa 100644
--- a/src/components/Dialog/index.web.tsx
+++ b/src/components/Dialog/index.web.tsx
@@ -15,6 +15,7 @@ import {FocusScope} from '@radix-ui/react-focus-scope'
import {RemoveScrollBar} from 'react-remove-scroll-bar'
import {logger} from '#/logger'
+import {useA11y} from '#/state/a11y'
import {useDialogStateControlContext} from '#/state/dialogs'
import {atoms as a, flatten, useBreakpoints, useTheme, web} from '#/alf'
import {Button, ButtonIcon} from '#/components/Button'
@@ -152,6 +153,7 @@ export function Inner({
const t = useTheme()
const {close} = React.useContext(Context)
const {gtMobile} = useBreakpoints()
+ const {reduceMotionEnabled} = useA11y()
useFocusGuards()
return (
@@ -161,7 +163,7 @@ export function Inner({
aria-label={label}
aria-labelledby={accessibilityLabelledBy}
aria-describedby={accessibilityDescribedBy}
- // @ts-ignore web only -prf
+ // @ts-expect-error web only -prf
onClick={stopPropagation}
onStartShouldSetResponder={_ => true}
onTouchEnd={stopPropagation}
@@ -177,10 +179,9 @@ export function Inner({
shadowColor: t.palette.black,
shadowOpacity: t.name === 'light' ? 0.1 : 0.4,
shadowRadius: 30,
- // @ts-ignore web only
- animation: 'fadeIn ease-out 0.1s',
},
- flatten(style),
+ !reduceMotionEnabled && a.zoom_fade_in,
+ style,
])}>
+
diff --git a/src/components/Layout/Header/index.tsx b/src/components/Layout/Header/index.tsx
index d38cf9d94c..3af0215c52 100644
--- a/src/components/Layout/Header/index.tsx
+++ b/src/components/Layout/Header/index.tsx
@@ -1,5 +1,5 @@
import {createContext, useCallback, useContext} from 'react'
-import {GestureResponderEvent, View} from 'react-native'
+import {GestureResponderEvent, Keyboard, View} from 'react-native'
import {msg} from '@lingui/macro'
import {useLingui} from '@lingui/react'
import {useNavigation} from '@react-navigation/native'
@@ -140,6 +140,7 @@ export function MenuButton() {
const {gtMobile} = useBreakpoints()
const onPress = useCallback(() => {
+ Keyboard.dismiss()
setDrawerOpen(true)
}, [setDrawerOpen])
diff --git a/src/components/Menu/index.web.tsx b/src/components/Menu/index.web.tsx
index dc91161682..eb91e014f7 100644
--- a/src/components/Menu/index.web.tsx
+++ b/src/components/Menu/index.web.tsx
@@ -4,6 +4,7 @@ import {msg} from '@lingui/macro'
import {useLingui} from '@lingui/react'
import * as DropdownMenu from '@radix-ui/react-dropdown-menu'
+import {useA11y} from '#/state/a11y'
import {atoms as a, flatten, useTheme, web} from '#/alf'
import * as Dialog from '#/components/Dialog'
import {useInteractionState} from '#/components/hooks/useInteractionState'
@@ -177,10 +178,16 @@ export function Outer({
style?: StyleProp
}>) {
const t = useTheme()
+ const {reduceMotionEnabled} = useA11y()
return (
-
+
{children}
@@ -373,9 +382,8 @@ export function Divider() {
style={flatten([
a.my_xs,
t.atoms.bg_contrast_100,
- {
- height: 1,
- },
+ a.flex_shrink_0,
+ {height: 1},
])}
/>
)
diff --git a/src/components/ProgressGuide/FollowDialog.tsx b/src/components/ProgressGuide/FollowDialog.tsx
index 288dcfe247..006f86574b 100644
--- a/src/components/ProgressGuide/FollowDialog.tsx
+++ b/src/components/ProgressGuide/FollowDialog.tsx
@@ -762,7 +762,7 @@ function SearchInput({
autoComplete="off"
autoCapitalize="none"
accessibilityLabel={_(msg`Search profiles`)}
- accessibilityHint={_(msg`Search profiles`)}
+ accessibilityHint={_(msg`Searches for profiles`)}
/>
)
diff --git a/src/components/StarterPack/StarterPackCard.tsx b/src/components/StarterPack/StarterPackCard.tsx
index ab9c01fc06..caa052726a 100644
--- a/src/components/StarterPack/StarterPackCard.tsx
+++ b/src/components/StarterPack/StarterPackCard.tsx
@@ -12,7 +12,7 @@ import {precacheResolvedUri} from '#/state/queries/resolve-uri'
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 {StarterPack as StarterPackIcon} from '#/components/icons/StarterPack'
import {Link as BaseLink, LinkProps as BaseLinkProps} from '#/components/Link'
import {Text} from '#/components/Typography'
import * as bsky from '#/types/bsky'
@@ -70,7 +70,7 @@ export function Card({
return (
- {!noIcon ? : null}
+ {!noIcon ? : null}
+ {hasIcon && topic.type === 'starter-pack' && (
+
+ )}
+
{/*
-
- {topic.type === 'tag' ? (
-
- ) : topic.type === 'topic' ? (
-
- ) : topic.type === 'feed' ? (
-
- ) : (
-
- )}
-
+
+ {topic.type === 'tag' ? (
+
+ ) : topic.type === 'topic' ? (
+
+ ) : topic.type === 'feed' ? (
+
+ ) : (
+
+ )}
+
*/}
- {settings[0].type === 'everybody' ? (
+ {settings.length === 0 ? (
+
+ This post has an unknown type of threadgate on it. Your app may be
+ out of date.
+
+ ) : settings[0].type === 'everybody' ? (
Everybody can reply to this post.
) : settings[0].type === 'nobody' ? (
Replies to this post are disabled.
@@ -257,6 +262,19 @@ function Rule({
if (rule.type === 'mention') {
return mentioned users
}
+ if (rule.type === 'followers') {
+ return (
+
+ users following{' '}
+
+ @{post.author.handle}
+
+
+ )
+ }
if (rule.type === 'following') {
return (
diff --git a/src/components/dialogs/PostInteractionSettingsDialog.tsx b/src/components/dialogs/PostInteractionSettingsDialog.tsx
index a698574a49..e4bc777023 100644
--- a/src/components/dialogs/PostInteractionSettingsDialog.tsx
+++ b/src/components/dialogs/PostInteractionSettingsDialog.tsx
@@ -40,6 +40,7 @@ import {Loader} from '#/components/Loader'
import {Text} from '#/components/Typography'
export type PostInteractionSettingsFormProps = {
+ canSave?: boolean
onSave: () => void
isSaving?: boolean
@@ -58,20 +59,53 @@ export function PostInteractionSettingsControlledDialog({
}: PostInteractionSettingsFormProps & {
control: Dialog.DialogControlProps
}) {
+ const t = useTheme()
const {_} = useLingui()
+
return (
-
+
+
+
+
+
+ You can set default interaction settings in{' '}
+
+ Settings → Moderation → Interaction settings.
+
+
+
+
)
}
+export function Header() {
+ return (
+
+
+ Post interaction settings
+
+
+ Customize who can interact with this post.
+
+
+
+ )
+}
+
export type PostInteractionSettingsDialogProps = {
control: Dialog.DialogControlProps
/**
@@ -203,26 +237,31 @@ export function PostInteractionSettingsDialogControlledInner(
- {isLoading ? (
-
-
-
- ) : (
-
- )}
+
+
+
+ {isLoading ? (
+
+
+
+ ) : (
+
+ )}
+
)
}
export function PostInteractionSettingsForm({
+ canSave = true,
onSave,
isSaving,
postgate,
@@ -283,17 +322,7 @@ export function PostInteractionSettingsForm({
return (
-
- Post interaction settings
-
-
-
- Customize who can interact with this post.
-
-
-
-
Quote settings
@@ -400,7 +429,7 @@ export function PostInteractionSettingsForm({
disabled={replySettingsDisabled}
/>
v.type === 'following',
@@ -409,6 +438,16 @@ export function PostInteractionSettingsForm({
onPress={() => onPressAudience({type: 'following'})}
disabled={replySettingsDisabled}
/>
+ v.type === 'followers',
+ )
+ }
+ onPress={() => onPressAudience({type: 'followers'})}
+ disabled={replySettingsDisabled}
+ />
{lists && lists.length > 0
? lists.map(list => (
)
diff --git a/src/components/forms/HostingProvider.tsx b/src/components/forms/HostingProvider.tsx
index 221a759d56..95539cef63 100644
--- a/src/components/forms/HostingProvider.tsx
+++ b/src/components/forms/HostingProvider.tsx
@@ -47,7 +47,7 @@ export function HostingProvider({
diff --git a/src/components/hooks/dates.ts b/src/components/hooks/dates.ts
index 5cb6e9cac4..13eae86ac1 100644
--- a/src/components/hooks/dates.ts
+++ b/src/components/hooks/dates.ts
@@ -65,6 +65,7 @@ const locales: Record = {
gl,
hi,
hu,
+ ia: undefined,
id,
it,
ja,
diff --git a/src/components/icons/Chevron.tsx b/src/components/icons/Chevron.tsx
index a04e6e0092..4d252ee3ca 100644
--- a/src/components/icons/Chevron.tsx
+++ b/src/components/icons/Chevron.tsx
@@ -15,3 +15,7 @@ export const ChevronTop_Stroke2_Corner0_Rounded = createSinglePathSVG({
export const ChevronBottom_Stroke2_Corner0_Rounded = createSinglePathSVG({
path: 'M3.293 8.293a1 1 0 0 1 1.414 0L12 15.586l7.293-7.293a1 1 0 1 1 1.414 1.414l-8 8a1 1 0 0 1-1.414 0l-8-8a1 1 0 0 1 0-1.414Z',
})
+
+export const ChevronTopBottom_Stroke2_Corner0_Rounded = createSinglePathSVG({
+ path: 'M11.293 4.293a1 1 0 0 1 1.414 0l4 4a1 1 0 0 1-1.414 1.414L12 6.414 8.707 9.707a1 1 0 0 1-1.414-1.414l4-4Zm-4 10a1 1 0 0 1 1.414 0L12 17.586l3.293-3.293a1 1 0 0 1 1.414 1.414l-4 4a1 1 0 0 1-1.414 0l-4-4a1 1 0 0 1 0-1.414Z',
+})
diff --git a/src/components/icons/Coffee.tsx b/src/components/icons/Coffee.tsx
deleted file mode 100644
index d4faccba9b..0000000000
--- a/src/components/icons/Coffee.tsx
+++ /dev/null
@@ -1,5 +0,0 @@
-import {createSinglePathSVG} from './TEMPLATE'
-
-export const Coffee_Stroke2_Corner0_Rounded = createSinglePathSVG({
- path: 'M7 2a1 1 0 0 1 1 1v2a1 1 0 0 1-2 0V3a1 1 0 0 1 1-1Zm4 0a1 1 0 0 1 1 1v2a1 1 0 1 1-2 0V3a1 1 0 0 1 1-1Zm4 0a1 1 0 0 1 1 1v2a1 1 0 1 1-2 0V3a1 1 0 0 1 1-1ZM4 9a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2h.5a3.5 3.5 0 1 1 0 7H18v4a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V9Zm12 0H6v11h10V9Zm2 5h.5a1.5 1.5 0 0 0 0-3H18v3Z',
-})
diff --git a/src/components/icons/PiggyBank.tsx b/src/components/icons/PiggyBank.tsx
deleted file mode 100644
index 974e861345..0000000000
--- a/src/components/icons/PiggyBank.tsx
+++ /dev/null
@@ -1,5 +0,0 @@
-import {createSinglePathSVG} from './TEMPLATE'
-
-export const PiggyBank_Stroke2_Corner0_Rounded = createSinglePathSVG({
- path: 'M6.5 4.999Zm0 0a.054.054 0 0 1-.016.024.196.196 0 0 1-.152.043c.057.01.113.02.168.032V7.5a1 1 0 0 1-.33.742c-.543.49-.917 1.176-1.23 2.036a1 1 0 0 1-.94.657H3V14h1a1 1 0 0 1 .866.5c.436.754.879 1.195 1.637 1.636A1 1 0 0 1 7 17v2h2a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2h2v-2.537a1 1 0 0 1 .332-.744A4.978 4.978 0 0 0 19 11.999 5 5 0 0 0 14 7H9.474a1 1 0 0 1-.893-.55v-.001l-.001-.002-.005-.008L9.474 6l-.9.438h.001v.002l.002.001.001.003.002.003v.003a2.62 2.62 0 0 0-.443-.538c-.319-.298-.839-.648-1.637-.814V5Zm2.082 1.452ZM9.5 4.447c.211.196.379.387.508.553H14a7 7 0 0 1 6.72 8.96 1.003 1.003 0 0 0 1.146-1.46 1 1 0 1 1 1.731-1 3 3 0 0 1-3.714 4.286A7.074 7.074 0 0 1 19 16.888V19a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2h-2a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2v-1.45A5.783 5.783 0 0 1 3.448 16H3a2 2 0 0 1-2-2v-3.065a2 2 0 0 1 2-2h.324c.286-.649.657-1.291 1.176-1.852V5c0-1.047.89-2.12 2.161-1.907 1.33.223 2.248.805 2.839 1.354ZM8.25 12a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5Z',
-})
diff --git a/src/components/icons/Poop.tsx b/src/components/icons/Poop.tsx
deleted file mode 100644
index 09b3b6785d..0000000000
--- a/src/components/icons/Poop.tsx
+++ /dev/null
@@ -1,5 +0,0 @@
-import {createSinglePathSVG} from './TEMPLATE'
-
-export const Poop_Stroke2_Corner0_Rounded = createSinglePathSVG({
- path: 'M12 4c0-1.012.894-2.187 2.237-1.846a5.002 5.002 0 0 1 3.218 7.119 4.001 4.001 0 0 1 2.345 4.976A3.501 3.501 0 0 1 18.5 21h-13a3.5 3.5 0 0 1-1.3-6.75 4 4 0 0 1 2.052-4.848A4 4 0 0 1 10 4h2.001Zm-4.187 7.009A2 2 0 0 0 6 13c0 .366.098.706.271 1H12a1 1 0 1 1 0 2H5.5a1.5 1.5 0 0 0 0 3h13a1.5 1.5 0 1 0 0-3H17a1 1 0 1 1 0-2h.729c.173-.294.271-.634.271-1a2 2 0 0 0-2-2h-2a1 1 0 1 1 0-2h1.236a3.002 3.002 0 0 0-1.243-4.832A2 2 0 0 1 12 6h-2a2 2 0 0 0-1.728 3.009H9a1 1 0 0 1 0 2H7.813Z',
-})
diff --git a/src/components/moderation/ContentHider.tsx b/src/components/moderation/ContentHider.tsx
index 69193592ac..d3f74c0c5e 100644
--- a/src/components/moderation/ContentHider.tsx
+++ b/src/components/moderation/ContentHider.tsx
@@ -146,10 +146,10 @@ function ContentHiderActive({
label={desc.name}
accessibilityHint={
modui.noOverride
- ? _(msg`Learn more about the moderation applied to this content.`)
+ ? _(msg`Learn more about the moderation applied to this content`)
: override
- ? _(msg`Hide the content`)
- : _(msg`Show the content`)
+ ? _(msg`Hides the content`)
+ : _(msg`Shows the content`)
}>
{state => (
= 3,
- totalLength: fullHandle.length <= (isServiceHandle ? 30 : 253),
+ frontLength: str.length >= 3 && str.length <= 18,
+ totalLength: fullHandle.length <= 253,
}
return {
diff --git a/src/locale/helpers.ts b/src/locale/helpers.ts
index 1f32ea1da8..8517bbcfb1 100644
--- a/src/locale/helpers.ts
+++ b/src/locale/helpers.ts
@@ -185,6 +185,8 @@ export function sanitizeAppLanguageSetting(appLanguage: string): AppLanguage {
return AppLanguage.hi
case 'hu':
return AppLanguage.hu
+ case 'ia':
+ return AppLanguage.ia
case 'id':
return AppLanguage.id
case 'it':
diff --git a/src/locale/i18n.ts b/src/locale/i18n.ts
index 42b1e79bbe..8c3986e545 100644
--- a/src/locale/i18n.ts
+++ b/src/locale/i18n.ts
@@ -27,6 +27,7 @@ import {messages as messagesGa} from '#/locale/locales/ga/messages'
import {messages as messagesGl} from '#/locale/locales/gl/messages'
import {messages as messagesHi} from '#/locale/locales/hi/messages'
import {messages as messagesHu} from '#/locale/locales/hu/messages'
+import {messages as messagesIa} from '#/locale/locales/ia/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'
@@ -173,6 +174,14 @@ export async function dynamicActivate(locale: AppLanguage) {
])
break
}
+ case AppLanguage.id: {
+ i18n.loadAndActivate({locale, messages: messagesIa})
+ await Promise.all([
+ import('@formatjs/intl-pluralrules/locale-data/ia'),
+ import('@formatjs/intl-numberformat/locale-data/ia'),
+ ])
+ break
+ }
case AppLanguage.id: {
i18n.loadAndActivate({locale, messages: messagesId})
await Promise.all([
diff --git a/src/locale/i18n.web.ts b/src/locale/i18n.web.ts
index d8706bd29b..dcfe20dbd0 100644
--- a/src/locale/i18n.web.ts
+++ b/src/locale/i18n.web.ts
@@ -72,6 +72,10 @@ export async function dynamicActivate(locale: AppLanguage) {
mod = await import(`./locales/hu/messages`)
break
}
+ case AppLanguage.ia: {
+ mod = await import(`./locales/ia/messages`)
+ break
+ }
case AppLanguage.id: {
mod = await import(`./locales/id/messages`)
break
diff --git a/src/locale/languages.ts b/src/locale/languages.ts
index 2e12d9ebc2..a059fcc0a3 100644
--- a/src/locale/languages.ts
+++ b/src/locale/languages.ts
@@ -21,6 +21,7 @@ export enum AppLanguage {
gl = 'gl',
hi = 'hi',
hu = 'hu',
+ ia = 'ia',
id = 'id',
it = 'it',
ja = 'ja',
@@ -64,6 +65,7 @@ export const APP_LANGUAGES: AppLanguageConfig[] = [
{code2: AppLanguage.gl, name: 'Galego – Galician'},
{code2: AppLanguage.hi, name: 'हिंदी – Hindi'},
{code2: AppLanguage.hu, name: 'magyar – Hungarian'},
+ {code2: AppLanguage.ia, name: 'Interlingua'},
{code2: AppLanguage.id, name: 'Bahasa Indonesia – Indonesian'},
{code2: AppLanguage.it, name: 'Italiano – Italian'},
{code2: AppLanguage.ja, name: '日本語 – Japanese'},
@@ -177,11 +179,7 @@ export const LANGUAGES: Language[] = [
{code3: 'cho', code2: '', name: 'Choctaw'},
{code3: 'chp', code2: '', name: 'Chipewyan; Dene Suline'},
{code3: 'chr', code2: '', name: 'Cherokee'},
- {
- code3: 'chu',
- code2: 'cu',
- name: 'Church Slavic; Old Slavonic; Church Slavonic; Old Bulgarian; Old Church Slavonic',
- },
+ {code3: 'chu', code2: 'cu', name: 'Church Slavic'},
{code3: 'chv', code2: 'cv', name: 'Chuvash'},
{code3: 'chy', code2: '', name: 'Cheyenne'},
{code3: 'cmc', code2: '', name: 'Chamic languages'},
@@ -299,13 +297,9 @@ export const LANGUAGES: Language[] = [
{code3: 'iii', code2: 'ii', name: 'Sichuan Yi; Nuosu'},
{code3: 'ijo', code2: '', name: 'Ijo languages'},
{code3: 'iku', code2: 'iu', name: 'Inuktitut'},
- {code3: 'ile', code2: 'ie', name: 'Interlingue; Occidental'},
+ {code3: 'ile', code2: 'ie', name: 'Interlingue'},
{code3: 'ilo', code2: '', name: 'Iloko'},
- {
- code3: 'ina',
- code2: 'ia',
- name: 'Interlingua (International Auxiliary Language Association)',
- },
+ {code3: 'ina', code2: 'ia', name: 'Interlingua'},
{code3: 'inc', code2: '', name: 'Indic languages'},
{code3: 'ind', code2: 'id', name: 'Indonesian'},
{code3: 'ine', code2: '', name: 'Indo-European languages'},
@@ -323,7 +317,7 @@ export const LANGUAGES: Language[] = [
{code3: 'kaa', code2: '', name: 'Kara-Kalpak'},
{code3: 'kab', code2: '', name: 'Kabyle'},
{code3: 'kac', code2: '', name: 'Kachin; Jingpho'},
- {code3: 'kal', code2: 'kl', name: 'Kalaallisut; Greenlandic'},
+ {code3: 'kal', code2: 'kl', name: 'Kalaallisut'},
{code3: 'kam', code2: '', name: 'Kamba'},
{code3: 'kan', code2: 'kn', name: 'Kannada'},
{code3: 'kar', code2: '', name: 'Karen languages'},
@@ -362,7 +356,7 @@ export const LANGUAGES: Language[] = [
{code3: 'lat', code2: 'la', name: 'Latin'},
{code3: 'lav', code2: 'lv', name: 'Latvian'},
{code3: 'lez', code2: '', name: 'Lezghian'},
- {code3: 'lim', code2: 'li', name: 'Limburgan; Limburger; Limburgish'},
+ {code3: 'lim', code2: 'li', name: 'Limburgish'},
{code3: 'lin', code2: 'ln', name: 'Lingala'},
{code3: 'lit', code2: 'lt', name: 'Lithuanian'},
{code3: 'lol', code2: '', name: 'Mongo'},
@@ -423,9 +417,9 @@ export const LANGUAGES: Language[] = [
{code3: 'nai', code2: '', name: 'North American Indian languages'},
{code3: 'nap', code2: '', name: 'Neapolitan'},
{code3: 'nau', code2: 'na', name: 'Nauru'},
- {code3: 'nav', code2: 'nv', name: 'Navajo; Navaho'},
- {code3: 'nbl', code2: 'nr', name: 'Ndebele, South; South Ndebele'},
- {code3: 'nde', code2: 'nd', name: 'Ndebele, North; North Ndebele'},
+ {code3: 'nav', code2: 'nv', name: 'Navajo'},
+ {code3: 'nbl', code2: 'nr', name: 'South Ndebele'},
+ {code3: 'nde', code2: 'nd', name: 'North Ndebele'},
{code3: 'ndo', code2: 'ng', name: 'Ndonga'},
{
code3: 'nds',
@@ -438,8 +432,8 @@ export const LANGUAGES: Language[] = [
{code3: 'nic', code2: '', name: 'Niger-Kordofanian languages'},
{code3: 'niu', code2: '', name: 'Niuean'},
{code3: 'nld', code2: 'nl', name: 'Dutch; Flemish'},
- {code3: 'nno', code2: 'nn', name: 'Norwegian Nynorsk; Nynorsk, Norwegian'},
- {code3: 'nob', code2: 'nb', name: 'Bokmål, Norwegian; Norwegian Bokmål'},
+ {code3: 'nno', code2: 'nn', name: 'Norwegian Nynorsk'},
+ {code3: 'nob', code2: 'nb', name: 'Norwegian Bokmål'},
{code3: 'nog', code2: '', name: 'Nogai'},
{code3: 'non', code2: '', name: 'Norse, Old'},
{code3: 'nor', code2: 'no', name: 'Norwegian'},
@@ -461,7 +455,7 @@ export const LANGUAGES: Language[] = [
{code3: 'ori', code2: 'or', name: 'Oriya'},
{code3: 'orm', code2: 'om', name: 'Oromo'},
{code3: 'osa', code2: '', name: 'Osage'},
- {code3: 'oss', code2: 'os', name: 'Ossetian; Ossetic'},
+ {code3: 'oss', code2: 'os', name: 'Ossetic'},
{code3: 'ota', code2: '', name: 'Turkish, Ottoman (1500-1928)'},
{code3: 'oto', code2: '', name: 'Otomian languages'},
{code3: 'paa', code2: '', name: 'Papuan languages'},
diff --git a/src/locale/locales/da/messages.po b/src/locale/locales/da/messages.po
index f3acdf8c12..bf9fa6183f 100644
--- a/src/locale/locales/da/messages.po
+++ b/src/locale/locales/da/messages.po
@@ -176,11 +176,11 @@ msgstr "{count} ulæste beskeder"
msgid "{displayName}'s Starter Pack"
msgstr "displayName}s Starter Pack"
-#: src/screens/SignupQueued.tsx:219
+#: src/screens/SignupQueued.tsx:216
msgid "{estimatedTimeHrs, plural, one {hour} other {hours}}"
msgstr "{estimatedTimeHrs, plural, one {time} other {timer}}"
-#: src/screens/SignupQueued.tsx:225
+#: src/screens/SignupQueued.tsx:222
msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}"
msgstr "{estimatedTimeMins, plural, one {minut} other {minutter}}"
@@ -363,7 +363,7 @@ msgstr "30 dage"
msgid "7 days"
msgstr "7 dage"
-#: src/Navigation.tsx:363
+#: src/Navigation.tsx:364
#: src/screens/Settings/AboutSettings.tsx:28
#: src/screens/Settings/Settings.tsx:215
#: src/screens/Settings/Settings.tsx:218
@@ -380,11 +380,11 @@ msgstr "Til navigationslinks og indstillinger"
msgid "Accessibility"
msgstr "Tilgængelighed"
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:324
msgid "Accessibility Settings"
msgstr "Tilgængelighedsindstillinger"
-#: src/Navigation.tsx:339
+#: src/Navigation.tsx:340
#: src/screens/Login/LoginForm.tsx:186
#: src/screens/Settings/AccountSettings.tsx:45
#: src/screens/Settings/Settings.tsx:153
@@ -678,15 +678,15 @@ msgstr "Der opstod en fejl"
msgid "An error occurred while compressing the video."
msgstr "Der opstod en fejl under komprimering af videoen."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:333
+#: src/components/StarterPack/ProfileStarterPacks.tsx:332
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "Der opstod en fejl under generering af din startpakke. Vil du prøve igen?"
-#: src/view/com/util/post-embeds/VideoEmbed.tsx:133
+#: src/view/com/util/post-embeds/VideoEmbed.tsx:160
msgid "An error occurred while loading the video. Please try again later."
msgstr "Der opstod en fejl under indlæsning af videoen. Prøv igen senere."
-#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:176
+#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:198
msgid "An error occurred while loading the video. Please try again."
msgstr "Der opstod en fejl under indlæsning af videoen. Prøv igen senere."
@@ -764,7 +764,7 @@ msgstr "Alle sprog"
msgid "Anybody can interact"
msgstr "Alle kan interagere"
-#: src/Navigation.tsx:371
+#: src/Navigation.tsx:372
#: src/screens/Settings/AppIconSettings/index.tsx:67
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23
@@ -800,7 +800,7 @@ msgstr "Navne på appadgangskoder skal bestå af mindst 4 tegn"
msgid "App passwords"
msgstr "Appadgangskoder"
-#: src/Navigation.tsx:291
+#: src/Navigation.tsx:292
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "Appadgangskoder"
@@ -819,6 +819,15 @@ msgstr "Klag over mærkatet \"{0}\""
msgid "Appeal submitted"
msgstr "Klage afsendt"
+#: src/screens/Takendown.tsx:111
+#: src/screens/Takendown.tsx:144
+msgid "Appeal suspension"
+msgstr "Klag over suspendering"
+
+#: src/screens/Takendown.tsx:114
+msgid "Appeal Suspension"
+msgstr "Klag over suspendering"
+
#: src/screens/Messages/components/ChatDisabled.tsx:51
#: src/screens/Messages/components/ChatDisabled.tsx:53
#: src/screens/Messages/components/ChatDisabled.tsx:99
@@ -826,7 +835,7 @@ msgstr "Klage afsendt"
msgid "Appeal this decision"
msgstr "Klag over afgørelse"
-#: src/Navigation.tsx:331
+#: src/Navigation.tsx:332
#: src/screens/Settings/AppearanceSettings.tsx:85
#: src/screens/Settings/Settings.tsx:183
#: src/screens/Settings/Settings.tsx:186
@@ -851,7 +860,7 @@ msgstr "Arkiveret opslag"
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "Er du sikker på, du vil slette appadgangskoden \"{0}\"?"
-#: src/components/dms/MessageMenu.tsx:149
+#: src/components/dms/MessageMenu.tsx:150
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant."
msgstr "Er du sikker på, du vil slette denne besked? Beskeden vil blive slettet hos dig men ikke hos modparten."
@@ -863,7 +872,7 @@ msgstr "Er du sikker på, du vil slette denne startpakke"
msgid "Are you sure you want to discard your changes?"
msgstr "Er du sikker på, du vil kassere dine ændringer?"
-#: src/components/dms/LeaveConvoPrompt.tsx:47
+#: src/components/dms/LeaveConvoPrompt.tsx:42
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr "Er du sikker på, du vil forlade denne samtale? Dine beskeder vil blive slettet hos dig men ikke hos modparten."
@@ -908,8 +917,8 @@ msgstr "Mindst 3 tegn"
msgid "Autoplay options have moved to the <0>Content and Media settings0>."
msgstr "Indstillinger for automatisk afspilning er flyttet til <0>indholds- og medieindstillingerne0>."
-#: src/screens/Settings/ContentAndMediaSettings.tsx:106
-#: src/screens/Settings/ContentAndMediaSettings.tsx:112
+#: src/screens/Settings/ContentAndMediaSettings.tsx:107
+#: src/screens/Settings/ContentAndMediaSettings.tsx:113
msgid "Autoplay videos and GIFs"
msgstr "Afspil videoer og GIF'er automatisk"
@@ -941,7 +950,7 @@ msgstr "Før du opretter en liste, skal du bekræfte din e-mail."
msgid "Before creating a post, you must first verify your email."
msgstr "Før du opretter et opslag, skal du bekræfte din e-mail."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:340
+#: src/components/StarterPack/ProfileStarterPacks.tsx:339
msgid "Before creating a starter pack, you must first verify your email."
msgstr "Før du opretter en startpakke, skal du bekræfte din e-mail."
@@ -952,6 +961,7 @@ msgid "Before you may message another user, you must first verify your email."
msgstr "Før du kan sende beskeder til andre brugere, skal du bekræfte din e-mail."
#: src/screens/Search/components/ExploreTrendingTopics.tsx:74
+#: src/screens/Search/components/ExploreTrendingVideos.tsx:111
msgid "BETA"
msgstr "BETA"
@@ -987,6 +997,14 @@ msgstr "Bloker konto?"
msgid "Block accounts"
msgstr "Bloker konti"
+#: src/components/dms/ReportDialog.tsx:325
+msgid "Block and Delete"
+msgstr "Bloker og slet"
+
+#: src/components/dms/ReportDialog.tsx:343
+msgid "Block and/or delete this conversation"
+msgstr "Bloker og/eller slet denne samtale"
+
#: src/view/screens/ProfileList.tsx:760
msgid "Block list"
msgstr "Bloker liste"
@@ -995,6 +1013,15 @@ msgstr "Bloker liste"
msgid "Block these accounts?"
msgstr "Bloker disse konti?"
+#: src/components/dms/ReportDialog.tsx:347
+#: src/components/dms/ReportDialog.tsx:350
+msgid "Block user"
+msgstr "Bloker bruger"
+
+#: src/components/dms/ReportDialog.tsx:329
+msgid "Block User"
+msgstr "Bloker bruger"
+
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:83
msgid "Blocked"
msgstr "Blokeret"
@@ -1003,7 +1030,7 @@ msgstr "Blokeret"
msgid "Blocked accounts"
msgstr "Blokerede konti"
-#: src/Navigation.tsx:155
+#: src/Navigation.tsx:156
#: src/view/screens/ModerationBlockedAccounts.tsx:101
msgid "Blocked Accounts"
msgstr "Blokerede konti"
@@ -1059,7 +1086,11 @@ msgstr "Bluesky er et åbent netværk, hvor du kan vælge din egen udbyder. Hvis
msgid "Bluesky is better with friends!"
msgstr "Bluesky virker bedre med venner!"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:300
+#: src/screens/Takendown.tsx:217
+msgid "Bluesky Social Terms of Service"
+msgstr "Bluesky Socials tjenestevilkår"
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:299
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bluesky vil vælge et antal anbefalede konti fra personer i dit netværk."
@@ -1088,23 +1119,23 @@ msgstr "Slør billeder og filtrer fra feeds"
msgid "Books"
msgstr "Bøger"
-#: src/components/FeedInterstitials.tsx:348
+#: src/components/FeedInterstitials.tsx:349
msgid "Browse more accounts on the Explore page"
msgstr "Se flere konti under Udforsk"
-#: src/components/FeedInterstitials.tsx:481
+#: src/components/FeedInterstitials.tsx:486
msgid "Browse more feeds on the Explore page"
msgstr "Se flere feeds under Udforsk"
#: src/components/FeedInterstitials.tsx:330
#: src/components/FeedInterstitials.tsx:333
-#: src/components/FeedInterstitials.tsx:463
-#: src/components/FeedInterstitials.tsx:466
+#: src/components/FeedInterstitials.tsx:467
+#: src/components/FeedInterstitials.tsx:470
msgid "Browse more suggestions"
msgstr "Se flere forslag"
-#: src/components/FeedInterstitials.tsx:356
-#: src/components/FeedInterstitials.tsx:490
+#: src/components/FeedInterstitials.tsx:357
+#: src/components/FeedInterstitials.tsx:495
msgid "Browse more suggestions on the Explore page"
msgstr "Se flere forslag under Udforsk"
@@ -1153,10 +1184,9 @@ msgstr "Ved at oprette en konto accepterer du <0>tjenestevilkårene0>."
msgid "Camera"
msgstr "Kamera"
-#: src/components/Menu/index.tsx:297
+#: src/components/Menu/index.tsx:304
#: src/components/Prompt.tsx:129
#: src/components/Prompt.tsx:131
-#: src/components/TagMenu/index.tsx:283
#: src/screens/Deactivated.tsx:157
#: src/screens/Profile/Header/EditProfileDialog.tsx:220
#: src/screens/Profile/Header/EditProfileDialog.tsx:228
@@ -1165,6 +1195,8 @@ msgstr "Kamera"
#: src/screens/Settings/components/ChangeHandleDialog.tsx:76
#: src/screens/Settings/components/ChangeHandleDialog.tsx:83
#: src/screens/Settings/Settings.tsx:260
+#: src/screens/Takendown.tsx:99
+#: src/screens/Takendown.tsx:102
#: src/view/com/composer/Composer.tsx:923
#: src/view/com/modals/ChangeEmail.tsx:213
#: src/view/com/modals/ChangeEmail.tsx:215
@@ -1286,7 +1318,7 @@ msgstr "Skift din e-mail"
msgid "Change your email address"
msgstr "Skift din e-mailadresse"
-#: src/Navigation.tsx:388
+#: src/Navigation.tsx:389
#: src/view/shell/bottom-bar/BottomBar.tsx:204
#: src/view/shell/desktop/LeftNav.tsx:530
#: src/view/shell/Drawer.tsx:422
@@ -1299,8 +1331,8 @@ msgstr "Chat skjult"
#: src/components/dms/ConvoMenu.tsx:115
#: src/components/dms/MessageMenu.tsx:81
-#: src/Navigation.tsx:393
-#: src/screens/Messages/ChatList.tsx:246
+#: src/Navigation.tsx:394
+#: src/screens/Messages/ChatList.tsx:254
msgid "Chat settings"
msgstr "Chatindstillinger"
@@ -1333,7 +1365,7 @@ msgstr "Vælg metode til domæneverifikation"
msgid "Choose Feeds"
msgstr "Vælg feeds"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:308
+#: src/components/StarterPack/ProfileStarterPacks.tsx:307
msgid "Choose for me"
msgstr "Vælg for mig"
@@ -1345,7 +1377,7 @@ msgstr "Vælg konti"
msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences."
msgstr "Vælg mærkater, der gælder for de medier, du publicerer. Hvis ingen er valgt, er opslaget egnet for alle."
-#: src/screens/Onboarding/StepFinished.tsx:280
+#: src/screens/Onboarding/StepFinished.tsx:287
msgid "Choose the algorithms that power your custom feeds."
msgstr "Vælg de algoritmer, der styrer dine specialbyggede feeds."
@@ -1358,7 +1390,7 @@ msgid "Choose your account provider"
msgstr "Vælg din udbyder"
#: src/view/screens/Feeds.tsx:728
-#: src/view/screens/Search/Explore.tsx:412
+#: src/view/screens/Search/Explore.tsx:424
msgid "Choose your own timeline! Feeds built by the community help you find content you love."
msgstr "Vælg din egen tidslinje! Specialbyggede feeds skabt af andre brugere hjælper dig med at finde indhold, du vil synes om."
@@ -1386,10 +1418,6 @@ msgstr "Ryd søgefelt"
msgid "click here"
msgstr "klik her"
-#: src/components/TagMenu/index.web.tsx:152
-msgid "Click here to open tag menu for {tag}"
-msgstr "Klik her for at åbne menuen for {tag}"
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:307
msgid "Click to disable quote posts of this post."
msgstr "Klik for at spærre for citater af dette opslag."
@@ -1398,6 +1426,10 @@ msgstr "Klik for at spærre for citater af dette opslag."
msgid "Click to enable quote posts of this post."
msgstr "Klik for et tillade citater af dette opslag."
+#: src/components/RichTextTag.tsx:54
+msgid "Click to open tag menu for {tag}"
+msgstr "Klik for at åbne tagmenuen for {tag}"
+
#: src/components/dms/MessageItem.tsx:241
msgid "Click to retry failed message"
msgstr "Klik for at prøve at sende beskeden igen"
@@ -1413,6 +1445,8 @@ msgstr "Hyp 🐴 hyp 🐴"
#: src/components/dialogs/GifSelect.tsx:281
#: src/components/dialogs/VerifyEmailDialog.tsx:289
#: src/components/dms/dialogs/SearchablePeopleList.tsx:265
+#: src/components/dms/ReportDialog.tsx:372
+#: src/components/dms/ReportDialog.tsx:381
#: src/components/NewskieDialog.tsx:146
#: src/components/NewskieDialog.tsx:153
#: src/components/ProgressGuide/FollowDialog.tsx:429
@@ -1462,8 +1496,7 @@ msgstr "Luk billedviser"
msgid "Close navigation footer"
msgstr "Luk navigationspanel"
-#: src/components/Menu/index.tsx:291
-#: src/components/TagMenu/index.tsx:277
+#: src/components/Menu/index.tsx:298
msgid "Close this dialog"
msgstr "Luk dialog"
@@ -1501,12 +1534,12 @@ msgstr "Komik"
msgid "Comics"
msgstr "Tegneserier"
-#: src/Navigation.tsx:281
+#: src/Navigation.tsx:282
#: src/view/screens/CommunityGuidelines.tsx:34
msgid "Community Guidelines"
msgstr "Fælleskabsregler"
-#: src/screens/Onboarding/StepFinished.tsx:293
+#: src/screens/Onboarding/StepFinished.tsx:300
msgid "Complete onboarding and start using your account"
msgstr "Afslut velkomst og kom i gang med at bruge din konto"
@@ -1595,7 +1628,7 @@ msgstr "Forbinder..."
msgid "Contact support"
msgstr "Kontakt support"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:49
+#: src/screens/Settings/ContentAndMediaSettings.tsx:50
msgid "Content & Media"
msgstr "Indhold og medier"
@@ -1605,7 +1638,7 @@ msgstr "Indhold og medier"
msgid "Content and media"
msgstr "Indhold og medier"
-#: src/Navigation.tsx:355
+#: src/Navigation.tsx:356
msgid "Content and Media"
msgstr "Indhold og medier"
@@ -1750,16 +1783,17 @@ msgstr "Kopier QR-kode"
msgid "Copy TXT record value"
msgstr "Kopier TXT-record"
-#: src/Navigation.tsx:286
+#: src/Navigation.tsx:287
#: src/view/screens/CopyrightPolicy.tsx:31
msgid "Copyright Policy"
msgstr "Ophavsretspolitik"
-#: src/components/dms/LeaveConvoPrompt.tsx:38
+#: src/components/dms/LeaveConvoPrompt.tsx:33
+#: src/components/dms/ReportDialog.tsx:308
msgid "Could not leave chat"
msgstr "Kunne ikke forlade chat"
-#: src/screens/Profile/ProfileFeed/index.tsx:73
+#: src/screens/Profile/ProfileFeed/index.tsx:80
msgid "Could not load feed"
msgstr "Kunne ikke indlæse feed"
@@ -1775,7 +1809,7 @@ msgstr "Kunne ikke skjule chat"
msgid "Could not process your video"
msgstr "Kunne ikke behandle din video"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:290
+#: src/components/StarterPack/ProfileStarterPacks.tsx:289
msgid "Create"
msgstr "Opret"
@@ -1783,13 +1817,13 @@ msgstr "Opret"
msgid "Create a QR code for a starter pack"
msgstr "Opret en QR-kode til en startpakke"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:168
-#: src/components/StarterPack/ProfileStarterPacks.tsx:271
-#: src/Navigation.tsx:418
+#: src/components/StarterPack/ProfileStarterPacks.tsx:167
+#: src/components/StarterPack/ProfileStarterPacks.tsx:270
+#: src/Navigation.tsx:419
msgid "Create a starter pack"
msgstr "Opret en startpakke"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:252
+#: src/components/StarterPack/ProfileStarterPacks.tsx:251
msgid "Create a starter pack for me"
msgstr "Opret en startpakke for mig"
@@ -1817,7 +1851,7 @@ msgstr "Opret en konto"
msgid "Create an avatar instead"
msgstr "Opret en avatar i stedet"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:175
+#: src/components/StarterPack/ProfileStarterPacks.tsx:174
msgid "Create another"
msgstr "Opret endnu en"
@@ -1841,7 +1875,7 @@ msgstr "Skaber er blokeret"
#: src/screens/Onboarding/index.tsx:26
#: src/screens/Onboarding/state.ts:99
msgid "Culture"
-msgstr "Kutlur"
+msgstr "Kultur"
#: src/view/com/auth/server-input/index.tsx:100
#: src/view/com/auth/server-input/index.tsx:102
@@ -1891,7 +1925,7 @@ msgstr "Standard"
msgid "Default icons"
msgstr "Standardikoner"
-#: src/components/dms/MessageMenu.tsx:151
+#: src/components/dms/MessageMenu.tsx:152
#: src/screens/Settings/AppPasswords.tsx:212
#: src/screens/StarterPack/StarterPackScreen.tsx:586
#: src/screens/StarterPack/StarterPackScreen.tsx:665
@@ -1922,6 +1956,15 @@ msgstr "Slet appadgangskode?"
msgid "Delete chat declaration record"
msgstr "Slet chatdeklarationsregistrering"
+#: src/components/dms/ReportDialog.tsx:353
+#: src/components/dms/ReportDialog.tsx:356
+msgid "Delete conversation"
+msgstr "Slet samtale"
+
+#: src/components/dms/ReportDialog.tsx:327
+msgid "Delete Conversation"
+msgstr "Slet samtale"
+
#: src/components/dms/MessageMenu.tsx:124
msgid "Delete for me"
msgstr "Slet for mig"
@@ -1930,7 +1973,7 @@ msgstr "Slet for mig"
msgid "Delete List"
msgstr "Slet liste"
-#: src/components/dms/MessageMenu.tsx:147
+#: src/components/dms/MessageMenu.tsx:148
msgid "Delete message"
msgstr "Slet besked"
@@ -2071,7 +2114,7 @@ msgstr "Anmod apps om ikke at vise min konto til udloggede brugere"
msgid "Discover new custom feeds"
msgstr "Find nye specialbyggede feeds"
-#: src/view/screens/Search/Explore.tsx:410
+#: src/view/screens/Search/Explore.tsx:422
msgid "Discover new feeds"
msgstr "Find nye feeds"
@@ -2079,7 +2122,7 @@ msgstr "Find nye feeds"
msgid "Discover New Feeds"
msgstr "Find nye feeds"
-#: src/components/Dialog/index.tsx:311
+#: src/components/Dialog/index.tsx:313
msgid "Dismiss"
msgstr "Luk"
@@ -2091,6 +2134,10 @@ msgstr "Luk fejlbesked"
msgid "Dismiss getting started guide"
msgstr "Luk velkomstforløb"
+#: src/components/interstitials/TrendingVideos.tsx:92
+msgid "Dismiss this section"
+msgstr "Luk denne sektion"
+
#: src/screens/Settings/AccessibilitySettings.tsx:71
#: src/screens/Settings/AccessibilitySettings.tsx:76
msgid "Display larger alt text badges"
@@ -2138,6 +2185,7 @@ msgstr "Domæne godkendt!"
#: src/components/dialogs/BirthDateSettings.tsx:118
#: src/components/dialogs/BirthDateSettings.tsx:124
+#: src/components/dms/ReportDialog.tsx:323
#: src/components/forms/DateField/index.tsx:77
#: src/components/forms/DateField/index.tsx:83
#: src/screens/Onboarding/StepProfile/index.tsx:330
@@ -2168,10 +2216,14 @@ msgstr "Udført"
msgid "Done{extraText}"
msgstr "Udført{extraText}"
-#: src/components/Dialog/index.tsx:312
+#: src/components/Dialog/index.tsx:314
msgid "Double tap to close the dialog"
msgstr "Tryk dobbelt for at lukke dialogen"
+#: src/screens/VideoFeed/index.tsx:1037
+msgid "Double tap to like"
+msgstr "Tryk dobbelt for at like"
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317
msgid "Download Bluesky"
msgstr "Download Bluesky"
@@ -2273,7 +2325,7 @@ msgstr "Rediger listeegenskaber"
msgid "Edit Moderation List"
msgstr "Rediger modereringsliste"
-#: src/Navigation.tsx:296
+#: src/Navigation.tsx:297
#: src/view/screens/Feeds.tsx:515
msgid "Edit My Feeds"
msgstr "Rediger mine feeds"
@@ -2323,7 +2375,7 @@ msgstr "Rediger dit profilnavn"
msgid "Edit your profile description"
msgstr "Rediger din profils beskrivelse"
-#: src/Navigation.tsx:423
+#: src/Navigation.tsx:424
msgid "Edit your starter pack"
msgstr "Rediger din startpakke"
@@ -2432,18 +2484,26 @@ msgstr "Aktiver undertekster"
msgid "Enable this source only"
msgstr "Aktiver kun denne kilde"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:122
-#: src/screens/Settings/ContentAndMediaSettings.tsx:136
+#: src/screens/Settings/ContentAndMediaSettings.tsx:123
+#: src/screens/Settings/ContentAndMediaSettings.tsx:137
msgid "Enable trending topics"
msgstr "Aktiver populære emner"
+#: src/screens/Settings/ContentAndMediaSettings.tsx:158
+msgid "Enable trending videos in your Discover feed"
+msgstr "Aktiver populære videoer i dit Discover-feed"
+
+#: src/screens/Settings/ContentAndMediaSettings.tsx:144
+msgid "Enable trending videos in your Discover feed."
+msgstr "Aktiver populære videoer i dit Discover-feed."
+
#: src/screens/Messages/Settings.tsx:130
#: src/screens/Messages/Settings.tsx:133
#: src/screens/Moderation/index.tsx:327
msgid "Enabled"
msgstr "Aktiveret"
-#: src/screens/Profile/Sections/Feed.tsx:114
+#: src/screens/Profile/Sections/Feed.tsx:116
msgid "End of feed"
msgstr "Slut på feed"
@@ -2589,7 +2649,7 @@ msgstr "Udvid brugerliste"
msgid "Expand or collapse the full post you are replying to"
msgstr "Udvid eller sammenklap det fulde opslag, du besvarer"
-#: src/lib/api/index.ts:400
+#: src/lib/api/index.ts:405
msgid "Expected uri to resolve to a record"
msgstr "Forventede, at URI henviste til et dataelement"
@@ -2623,8 +2683,8 @@ msgstr "Eksporter mine data"
msgid "Export My Data"
msgstr "Eksport mine data"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:82
-#: src/screens/Settings/ContentAndMediaSettings.tsx:85
+#: src/screens/Settings/ContentAndMediaSettings.tsx:83
+#: src/screens/Settings/ContentAndMediaSettings.tsx:86
msgid "External media"
msgstr "Eksterne medier"
@@ -2638,7 +2698,7 @@ msgstr "Eksterne medier"
msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
msgstr "Afspilning af medier fra eksterne websites muliggør indsamling af oplysninger om dig og din enhed. Der udveksles ingen oplysninger, før du starter afspilningen."
-#: src/Navigation.tsx:315
+#: src/Navigation.tsx:316
#: src/screens/Settings/ExternalMediaPreferences.tsx:31
msgid "External Media Preferences"
msgstr "Indstillinger for eksterne medier"
@@ -2672,8 +2732,8 @@ msgstr "Sletning af opslag fejlede, prøv igen"
msgid "Failed to delete starter pack"
msgstr "Sletning af startpakke fejlede"
-#: src/view/screens/Search/Explore.tsx:448
-#: src/view/screens/Search/Explore.tsx:476
+#: src/view/screens/Search/Explore.tsx:460
+#: src/view/screens/Search/Explore.tsx:488
msgid "Failed to load feeds preferences"
msgstr "Indlæsning af indstillinger for feeds fejlede"
@@ -2685,12 +2745,12 @@ msgstr "Indlæsning af GIF'er fejlde"
msgid "Failed to load past messages"
msgstr "Indlæst af tidligere beskeder fejlede"
-#: src/view/screens/Search/Explore.tsx:441
-#: src/view/screens/Search/Explore.tsx:469
+#: src/view/screens/Search/Explore.tsx:453
+#: src/view/screens/Search/Explore.tsx:481
msgid "Failed to load suggested feeds"
msgstr "Indlæsning af foreslåede feeds fejlede"
-#: src/view/screens/Search/Explore.tsx:399
+#: src/view/screens/Search/Explore.tsx:411
msgid "Failed to load suggested follows"
msgstr "Indlæsning af foreslåede konti fejlede"
@@ -2738,7 +2798,7 @@ msgstr "Upload af video fejlede"
msgid "Failed to verify handle. Please try again."
msgstr "Kunne ikke verificere handle. Prøv igen."
-#: src/Navigation.tsx:231
+#: src/Navigation.tsx:232
msgid "Feed"
msgstr "Feed"
@@ -2766,10 +2826,10 @@ msgstr "Kontakt"
msgid "Feedback sent!"
msgstr "Feedback afsendt!"
-#: src/Navigation.tsx:403
+#: src/Navigation.tsx:404
#: src/screens/StarterPack/StarterPackScreen.tsx:183
#: src/view/screens/Feeds.tsx:508
-#: src/view/screens/Profile.tsx:236
+#: src/view/screens/Profile.tsx:238
#: src/view/screens/SavedFeeds.tsx:96
#: src/view/screens/Search/Search.tsx:522
#: src/view/shell/desktop/LeftNav.tsx:640
@@ -2798,7 +2858,7 @@ msgstr "Fil blev gemt!"
msgid "Filter from feeds"
msgstr "Filtre fra feeds"
-#: src/screens/Onboarding/StepFinished.tsx:296
+#: src/screens/Onboarding/StepFinished.tsx:303
msgid "Finalizing"
msgstr "Afslutter"
@@ -2826,7 +2886,7 @@ msgstr "Afslut"
msgid "Fitness"
msgstr "Motion"
-#: src/screens/Onboarding/StepFinished.tsx:276
+#: src/screens/Onboarding/StepFinished.tsx:283
msgid "Flexible"
msgstr "Fleksibel"
@@ -2835,6 +2895,7 @@ msgstr "Fleksibel"
#: src/components/ProfileHoverCard/index.web.tsx:449
#: src/components/ProfileHoverCard/index.web.tsx:460
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234
+#: src/screens/VideoFeed/index.tsx:819
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:132
msgid "Follow"
msgstr "Følg"
@@ -2849,6 +2910,10 @@ msgstr "Følg"
msgid "Follow {0}"
msgstr "Følg {0}"
+#: src/screens/VideoFeed/index.tsx:798
+msgid "Follow {handle}"
+msgstr "Følg {handle}"
+
#: src/view/com/posts/AviFollowButton.tsx:68
msgid "Follow {name}"
msgstr "Følg {name}"
@@ -2882,7 +2947,7 @@ msgctxt "action"
msgid "Follow Back"
msgstr "Følg tilbage"
-#: src/view/screens/Search/Explore.tsx:356
+#: src/view/screens/Search/Explore.tsx:368
msgid "Follow more accounts to get connected to your interests and build your network."
msgstr "Følg flere konti for at finde interessant indhold og skabe et netværk."
@@ -2906,7 +2971,7 @@ msgstr "Følges af <0>{0}0>, <1>{1}1> og {2, plural, one {# anden} other {#
msgid "Followed users"
msgstr "Brugere du følger"
-#: src/Navigation.tsx:192
+#: src/Navigation.tsx:193
msgid "Followers of @{0} that you know"
msgstr "Følgere af @{0}, som du måske kender"
@@ -2920,6 +2985,7 @@ msgstr "Følgere du kender"
#: src/components/ProfileHoverCard/index.web.tsx:448
#: src/components/ProfileHoverCard/index.web.tsx:459
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230
+#: src/screens/VideoFeed/index.tsx:817
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:135
#: src/view/screens/Feeds.tsx:599
#: src/view/screens/SavedFeeds.tsx:422
@@ -2931,16 +2997,20 @@ msgstr "Følger"
msgid "Following {0}"
msgstr "Følger {0}"
+#: src/screens/VideoFeed/index.tsx:797
+msgid "Following {handle}"
+msgstr "Følger {handle}"
+
#: src/view/com/posts/AviFollowButton.tsx:50
msgid "Following {name}"
msgstr "Følger {name}"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:74
-#: src/screens/Settings/ContentAndMediaSettings.tsx:77
+#: src/screens/Settings/ContentAndMediaSettings.tsx:75
+#: src/screens/Settings/ContentAndMediaSettings.tsx:78
msgid "Following feed preferences"
msgstr "Indstillinger for følgerfeed"
-#: src/Navigation.tsx:302
+#: src/Navigation.tsx:303
#: src/screens/Settings/FollowingFeedPreferences.tsx:53
msgid "Following Feed Preferences"
msgstr "Indstillinger for følgerfeed"
@@ -3012,7 +3082,7 @@ msgstr "Fra <0/>"
msgid "Gallery"
msgstr "Galleri"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:297
+#: src/components/StarterPack/ProfileStarterPacks.tsx:296
msgid "Generate a starter pack"
msgstr "Generer en startpakke"
@@ -3044,7 +3114,10 @@ msgstr "Åbenlys overtrædelse af lovgivning eller tjenestevilkår"
#: src/components/Layout/Header/index.tsx:118
#: src/components/moderation/ScreenHider.tsx:154
#: src/components/moderation/ScreenHider.tsx:163
-#: src/screens/Profile/ProfileFeed/index.tsx:82
+#: src/screens/Profile/ProfileFeed/index.tsx:89
+#: src/screens/VideoFeed/components/Header.tsx:163
+#: src/screens/VideoFeed/index.tsx:1098
+#: src/screens/VideoFeed/index.tsx:1102
#: src/view/com/auth/LoggedOut.tsx:72
#: src/view/screens/NotFound.tsx:57
#: src/view/screens/ProfileList.tsx:1009
@@ -3055,7 +3128,7 @@ msgstr "Gå tilbage"
#: src/screens/List/ListHiddenScreen.tsx:221
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:87
+#: src/screens/Profile/ProfileFeed/index.tsx:94
#: src/screens/StarterPack/StarterPackScreen.tsx:758
#: src/view/screens/NotFound.tsx:56
#: src/view/screens/ProfileList.tsx:1014
@@ -3066,9 +3139,9 @@ msgstr "Gå tilbage"
msgid "Go back to previous page"
msgstr "Gå tilbage til forrige side"
-#: src/components/dms/ReportDialog.tsx:149
+#: src/components/dms/ReportDialog.tsx:190
#: src/components/ReportDialog/SelectReportOptionView.tsx:78
-#: src/components/ReportDialog/SubmitView.tsx:109
+#: src/components/ReportDialog/SubmitView.tsx:110
#: src/screens/Onboarding/Layout.tsx:101
#: src/screens/Onboarding/Layout.tsx:190
#: src/screens/Signup/BackNextButtons.tsx:35
@@ -3135,19 +3208,19 @@ msgstr "Handle er for langt. Prøv med et kortere."
#: src/screens/Settings/AccessibilitySettings.tsx:87
msgid "Haptics"
-msgstr "Haptisk feedbadk"
+msgstr "Haptisk feedback"
#: src/lib/moderation/useReportOptions.ts:34
msgid "Harassment, trolling, or intolerance"
msgstr "Chikane, trolling og intolerance"
-#: src/Navigation.tsx:378
+#: src/Navigation.tsx:379
msgid "Hashtag"
msgstr "Hashtag"
-#: src/components/RichText.tsx:218
-msgid "Hashtag: #{tag}"
-msgstr "Hashtag: #{tag}"
+#: src/components/RichTextTag.tsx:51
+msgid "Hashtag {tag}"
+msgstr "Hashtag {tag}"
#: src/screens/Signup/index.tsx:173
msgid "Having trouble?"
@@ -3169,11 +3242,21 @@ msgstr "Lad andre vide, at du ikke er en robot, ved at uploade et billede eller
msgid "Here is your app password!"
msgstr "Her er din appadgangskode!"
+#: src/components/VideoPostCard.tsx:172
+#: src/components/VideoPostCard.tsx:448
+msgid "Hidden"
+msgstr "Skjult"
+
+#: src/screens/VideoFeed/index.tsx:606
+msgid "Hidden by your moderation settings."
+msgstr "Skjult af dine moderationsindstillinger."
+
#: src/components/ListCard.tsx:130
msgid "Hidden list"
msgstr "Skjult liste"
-#: src/components/interstitials/Trending.tsx:136
+#: src/components/interstitials/Trending.tsx:131
+#: src/components/interstitials/TrendingVideos.tsx:140
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:135
#: src/components/moderation/PostHider.tsx:122
@@ -3221,18 +3304,22 @@ msgstr "Skjul dette opslag?"
msgid "Hide this reply?"
msgstr "Skjul dette svar?"
-#: src/components/interstitials/Trending.tsx:118
+#: src/components/interstitials/Trending.tsx:113
#: src/screens/Search/components/ExploreTrendingTopics.tsx:83
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:62
msgid "Hide trending topics"
msgstr "Skjul populære emner"
-#: src/components/interstitials/Trending.tsx:134
+#: src/components/interstitials/Trending.tsx:129
#: src/screens/Search/components/ExploreTrendingTopics.tsx:135
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:108
msgid "Hide trending topics?"
msgstr "Skjul populære emner?"
+#: src/components/interstitials/TrendingVideos.tsx:138
+msgid "Hide trending videos?"
+msgstr "Skjul populære videoer?"
+
#: src/view/com/notifications/NotificationFeedItem.tsx:592
msgid "Hide user list"
msgstr "Skjul brugerliste"
@@ -3269,8 +3356,8 @@ msgstr "Hmm, vi kunne ikke indlæse moderationstjenesten."
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "Vent lidt! Vi udruller gradvist adgang til video, og du er stadig i kø. Prøv igen senere!"
-#: src/Navigation.tsx:594
-#: src/Navigation.tsx:614
+#: src/Navigation.tsx:603
+#: src/Navigation.tsx:623
#: src/view/shell/bottom-bar/BottomBar.tsx:162
#: src/view/shell/desktop/LeftNav.tsx:584
#: src/view/shell/Drawer.tsx:396
@@ -3509,7 +3596,7 @@ msgid "Labeled by the author."
msgstr "Mærkat tilføjet af forfatteren."
#: src/view/com/composer/labels/LabelsBtn.tsx:75
-#: src/view/screens/Profile.tsx:230
+#: src/view/screens/Profile.tsx:231
msgid "Labels"
msgstr "Mærkater"
@@ -3533,7 +3620,7 @@ msgstr "Mærkater på dit indhold"
msgid "Language selection"
msgstr "Sprogvalg"
-#: src/Navigation.tsx:165
+#: src/Navigation.tsx:166
msgid "Language Settings"
msgstr "Sprogindstillinger"
@@ -3589,7 +3676,7 @@ msgstr "Læs mere om, hvad der er offentligt på Bluesky."
msgid "Learn more."
msgstr "Læs mere."
-#: src/components/dms/LeaveConvoPrompt.tsx:49
+#: src/components/dms/LeaveConvoPrompt.tsx:44
msgid "Leave"
msgstr "Forlad"
@@ -3602,7 +3689,7 @@ msgstr "Forlad chat"
#: src/components/dms/ConvoMenu.tsx:144
#: src/components/dms/ConvoMenu.tsx:211
#: src/components/dms/ConvoMenu.tsx:214
-#: src/components/dms/LeaveConvoPrompt.tsx:45
+#: src/components/dms/LeaveConvoPrompt.tsx:40
msgid "Leave conversation"
msgstr "Forlad samtale"
@@ -3614,11 +3701,11 @@ msgstr "Fjern alle flueben for at se alle sprog."
msgid "Leaving Bluesky"
msgstr "Forlader Bluesky"
-#: src/screens/SignupQueued.tsx:140
+#: src/screens/SignupQueued.tsx:155
msgid "left to go."
msgstr "foran dig i køen."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:313
+#: src/components/StarterPack/ProfileStarterPacks.tsx:312
msgid "Let me choose"
msgstr "Lad mig vælge"
@@ -3627,7 +3714,7 @@ msgstr "Lad mig vælge"
msgid "Let's get your password reset!"
msgstr "Lad os få nulstillet din adgangskode!"
-#: src/screens/Onboarding/StepFinished.tsx:296
+#: src/screens/Onboarding/StepFinished.tsx:303
msgid "Let's go!"
msgstr "Lad os komme i gang!"
@@ -3661,8 +3748,8 @@ msgid "Like this feed"
msgstr "Like dette feed"
#: src/components/LikesDialog.tsx:85
-#: src/Navigation.tsx:236
-#: src/Navigation.tsx:241
+#: src/Navigation.tsx:237
+#: src/Navigation.tsx:242
msgid "Liked by"
msgstr "Liket af"
@@ -3684,7 +3771,7 @@ msgstr "Liket af {0, plural, one {# bruger} other {# brugere}}"
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "Liket af {likeCount, plural, one {# bruger} other {# brugere}}"
-#: src/view/screens/Profile.tsx:235
+#: src/view/screens/Profile.tsx:237
msgid "Likes"
msgstr "Likes"
@@ -3697,7 +3784,7 @@ msgstr "Likes af dette opslag"
msgid "Linear"
msgstr "Lineært"
-#: src/Navigation.tsx:198
+#: src/Navigation.tsx:199
msgid "List"
msgstr "Liste"
@@ -3750,10 +3837,10 @@ msgstr "Liste ikke længere blokeret"
msgid "List unmuted"
msgstr "Liste ikke længere skjult"
-#: src/Navigation.tsx:135
+#: src/Navigation.tsx:136
#: src/view/screens/Lists.tsx:62
-#: src/view/screens/Profile.tsx:231
-#: src/view/screens/Profile.tsx:238
+#: src/view/screens/Profile.tsx:232
+#: src/view/screens/Profile.tsx:240
#: src/view/shell/desktop/LeftNav.tsx:658
#: src/view/shell/Drawer.tsx:496
msgid "Lists"
@@ -3763,15 +3850,15 @@ msgstr "Lister"
msgid "Lists blocking this user:"
msgstr "Liste blokeret af denne bruger:"
-#: src/view/screens/Search/Explore.tsx:133
+#: src/view/screens/Search/Explore.tsx:134
msgid "Load more"
msgstr "Indlæs flere"
-#: src/view/screens/Search/Explore.tsx:222
+#: src/view/screens/Search/Explore.tsx:223
msgid "Load more suggested feeds"
msgstr "Indlæs flere foreslåede feeds"
-#: src/view/screens/Search/Explore.tsx:220
+#: src/view/screens/Search/Explore.tsx:221
msgid "Load more suggested follows"
msgstr "Indlæs flere foreslåede konti"
@@ -3779,9 +3866,9 @@ msgstr "Indlæs flere foreslåede konti"
msgid "Load new notifications"
msgstr "Indlæs nye notifikationer"
-#: src/screens/Profile/ProfileFeed/index.tsx:192
-#: src/screens/Profile/Sections/Feed.tsx:96
-#: src/view/com/feeds/FeedPage.tsx:143
+#: src/screens/Profile/ProfileFeed/index.tsx:221
+#: src/screens/Profile/Sections/Feed.tsx:98
+#: src/view/com/feeds/FeedPage.tsx:155
#: src/view/screens/ProfileList.tsx:849
msgid "Load new posts"
msgstr "Indlæs nye opslag"
@@ -3790,7 +3877,7 @@ msgstr "Indlæs nye opslag"
msgid "Loading..."
msgstr "Indlæser..."
-#: src/Navigation.tsx:261
+#: src/Navigation.tsx:262
msgid "Log"
msgstr "Log"
@@ -3799,13 +3886,16 @@ msgstr "Log"
msgid "Log in or sign up"
msgstr "Log ind eller opret konto"
-#: src/screens/SignupQueued.tsx:168
-#: src/screens/SignupQueued.tsx:171
-#: src/screens/SignupQueued.tsx:196
-#: src/screens/SignupQueued.tsx:199
+#: src/screens/SignupQueued.tsx:93
+#: src/screens/SignupQueued.tsx:96
+#: src/screens/Takendown.tsx:85
msgid "Log out"
msgstr "Log ud"
+#: src/screens/Takendown.tsx:88
+msgid "Log Out"
+msgstr "Log ud"
+
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:78
msgid "Logged-out visibility"
msgstr "Synlighed for udloggede brugere"
@@ -3823,7 +3913,7 @@ msgstr "Logo af @sawaratsuki.bsky.social"
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "Logo af <0>@sawaratsuki.bsky.social0>"
-#: src/components/RichText.tsx:219
+#: src/components/RichTextTag.tsx:53
msgid "Long press to open tag menu for #{tag}"
msgstr "Brug langt tryk for at åbne tagmenuen for #{tag}"
@@ -3843,7 +3933,7 @@ msgstr "Det ser ud til, at du har frigjort alle dine feeds. Men bare rolig, du k
msgid "Looks like you're missing a following feed. <0>Click here to add one.0>"
msgstr "Det ser ud til, at du mangler et følgerfeed <0>Klik her for at tilføje et.0>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:266
+#: src/components/StarterPack/ProfileStarterPacks.tsx:265
msgid "Make one for me"
msgstr "Opret en for mig"
@@ -3851,8 +3941,8 @@ msgstr "Opret en for mig"
msgid "Make sure this is where you intend to go!"
msgstr "Tjek, at det virkelig er dette website, du ønsker at besøge!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:58
-#: src/screens/Settings/ContentAndMediaSettings.tsx:61
+#: src/screens/Settings/ContentAndMediaSettings.tsx:59
+#: src/screens/Settings/ContentAndMediaSettings.tsx:62
msgid "Manage saved feeds"
msgstr "Adminstrer gemte feeds"
@@ -3865,7 +3955,7 @@ msgstr "Administrer dine skjulte ord og tags"
msgid "Mark as read"
msgstr "Marker som læst"
-#: src/view/screens/Profile.tsx:234
+#: src/view/screens/Profile.tsx:235
msgid "Media"
msgstr "Medier"
@@ -3885,7 +3975,7 @@ msgstr "Omtalte brugere"
msgid "Mentions"
msgstr "Omtaler"
-#: src/components/Menu/index.tsx:96
+#: src/components/Menu/index.tsx:103
#: src/view/screens/Search/Search.tsx:856
msgid "Menu"
msgstr "Menu"
@@ -3912,9 +4002,9 @@ msgstr "Beskedfelt"
msgid "Message is too long"
msgstr "Beskeden er for lang"
-#: src/Navigation.tsx:609
-#: src/screens/Messages/ChatList.tsx:262
-#: src/screens/Messages/ChatList.tsx:286
+#: src/Navigation.tsx:618
+#: src/screens/Messages/ChatList.tsx:270
+#: src/screens/Messages/ChatList.tsx:294
msgid "Messages"
msgstr "Beskeder"
@@ -3926,7 +4016,7 @@ msgstr "Vildledende konto"
msgid "Misleading Post"
msgstr "Vildledende opslag"
-#: src/Navigation.tsx:140
+#: src/Navigation.tsx:141
#: src/screens/Moderation/index.tsx:88
#: src/screens/Settings/Settings.tsx:167
#: src/screens/Settings/Settings.tsx:170
@@ -3963,7 +4053,7 @@ msgstr "Moderationsliste opdateret"
msgid "Moderation lists"
msgstr "Moderationslister"
-#: src/Navigation.tsx:145
+#: src/Navigation.tsx:146
#: src/view/screens/ModerationModlists.tsx:62
msgid "Moderation Lists"
msgstr "Moderationslister"
@@ -3972,7 +4062,7 @@ msgstr "Moderationslister"
msgid "moderation settings"
msgstr "moderationsindstillinger"
-#: src/Navigation.tsx:251
+#: src/Navigation.tsx:252
msgid "Moderation states"
msgstr "Moderationstilstande"
@@ -4017,19 +4107,16 @@ msgstr "Film"
msgid "Music"
msgstr "Musik"
-#: src/components/TagMenu/index.tsx:264
-msgid "Mute"
-msgstr "Skjul"
-
#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:95
msgctxt "video"
msgid "Mute"
msgstr "Lydløs"
-#: src/components/TagMenu/index.web.tsx:116
-msgid "Mute {truncatedTag}"
-msgstr "Skjul {truncatedTag}"
+#: src/components/RichTextTag.tsx:140
+#: src/components/RichTextTag.tsx:153
+msgid "Mute {tag}"
+msgstr "Skjul {tag}"
#: src/view/com/profile/ProfileMenu.tsx:259
#: src/view/com/profile/ProfileMenu.tsx:266
@@ -4040,10 +4127,6 @@ msgstr "Skjul konto"
msgid "Mute accounts"
msgstr "Skjul konti"
-#: src/components/TagMenu/index.tsx:224
-msgid "Mute all {displayTag} posts"
-msgstr "Skjul alle {displayTag}-opslag"
-
#: src/components/dms/ConvoMenu.tsx:175
#: src/components/dms/ConvoMenu.tsx:181
msgid "Mute conversation"
@@ -4099,7 +4182,7 @@ msgstr "Skjul ord og tags"
msgid "Muted accounts"
msgstr "Skjulte konti"
-#: src/Navigation.tsx:150
+#: src/Navigation.tsx:151
#: src/view/screens/ModerationMutedAccounts.tsx:100
msgid "Muted Accounts"
msgstr "Skjulte konti"
@@ -4142,7 +4225,7 @@ msgstr "Navn er obligatorisk"
#: src/lib/moderation/useReportOptions.ts:106
#: src/lib/moderation/useReportOptions.ts:114
msgid "Name or Description Violates Community Standards"
-msgstr "Navn eller beskrivelse overtræder retningslinjer"
+msgstr "Navn eller beskrivelse overtræder fælleskabsreglerne"
#: src/screens/Onboarding/index.tsx:22
#: src/screens/Onboarding/state.ts:107
@@ -4171,7 +4254,7 @@ msgstr "Har du brug for at rette den?"
msgid "Need to report a copyright violation?"
msgstr "Vil du anmelde en ophavsretskrænkelse?"
-#: src/screens/Onboarding/StepFinished.tsx:264
+#: src/screens/Onboarding/StepFinished.tsx:271
msgid "Never lose access to your followers or data."
msgstr "Mist aldrig adgang til dine følgere og din data."
@@ -4186,8 +4269,8 @@ msgid "New"
msgstr "Ny"
#: src/components/dms/dialogs/NewChatDialog.tsx:65
-#: src/screens/Messages/ChatList.tsx:269
-#: src/screens/Messages/ChatList.tsx:276
+#: src/screens/Messages/ChatList.tsx:277
+#: src/screens/Messages/ChatList.tsx:284
msgid "New chat"
msgstr "Ny chat"
@@ -4218,16 +4301,16 @@ msgstr "Ny adgangskode"
msgid "New Password"
msgstr "Ny adgangskode"
-#: src/screens/Profile/ProfileFeed/index.tsx:209
+#: src/screens/Profile/ProfileFeed/index.tsx:238
#: src/view/screens/Feeds.tsx:549
#: src/view/screens/Notifications.tsx:165
-#: src/view/screens/Profile.tsx:496
+#: src/view/screens/Profile.tsx:518
#: src/view/screens/ProfileList.tsx:250
#: src/view/screens/ProfileList.tsx:283
msgid "New post"
msgstr "Nyt opslag"
-#: src/view/com/feeds/FeedPage.tsx:154
+#: src/view/com/feeds/FeedPage.tsx:166
msgctxt "action"
msgid "New post"
msgstr "Nyt opslag"
@@ -4314,7 +4397,7 @@ msgstr "Højst {0} tegn"
msgid "No messages yet"
msgstr "Ingen beskeder endnu"
-#: src/screens/Messages/ChatList.tsx:225
+#: src/screens/Messages/ChatList.tsx:233
msgid "No more conversations to show"
msgstr "Ikke flere samtaler at vise."
@@ -4331,7 +4414,7 @@ msgstr "Ingen"
msgid "No one but the author can quote this post."
msgstr "Kun forfatteren selv kan citere dette opslag."
-#: src/screens/Profile/Sections/Feed.tsx:65
+#: src/screens/Profile/Sections/Feed.tsx:66
msgid "No posts yet."
msgstr "Ingen opslag endnu."
@@ -4353,7 +4436,7 @@ msgstr "Intet resultat"
msgid "No results"
msgstr "Ingen resultater"
-#: src/components/Lists.tsx:183
+#: src/components/Lists.tsx:189
msgid "No results found"
msgstr "Ingen resultater fundet"
@@ -4403,8 +4486,8 @@ msgstr "Ingen blev fundet. Prøv at søge efter en anden."
msgid "Non-sexual Nudity"
msgstr "Ikkeseksuel nøgenhed"
-#: src/Navigation.tsx:130
-#: src/view/screens/Profile.tsx:130
+#: src/Navigation.tsx:131
+#: src/view/screens/Profile.tsx:129
msgid "Not Found"
msgstr "Ikke fundet"
@@ -4423,7 +4506,7 @@ msgstr "Note vedr. deling"
msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites."
msgstr "OBS: Bluesky er et åbent og offentligt netværk. Denne indstilling begrænser kun synligheden af dit indhold her på Bluesky. Andre apps og websites respekterer ikke nødvendigvis denne indstilling. Dit indhold kan stadig blive vist i andre apps og på andre websites til udloggede brugere."
-#: src/screens/Messages/ChatList.tsx:180
+#: src/screens/Messages/ChatList.tsx:188
msgid "Nothing here"
msgstr "Ingenting her"
@@ -4431,7 +4514,7 @@ msgstr "Ingenting her"
msgid "Notification filters"
msgstr "Notifikationsfiltre"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:399
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "Notifikationindstillinger"
@@ -4448,7 +4531,7 @@ msgstr "Notifikationslyde"
msgid "Notification Sounds"
msgstr "Notifikationslyde"
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:613
#: src/view/screens/Notifications.tsx:128
#: src/view/shell/bottom-bar/BottomBar.tsx:230
#: src/view/shell/desktop/LeftNav.tsx:621
@@ -4544,21 +4627,21 @@ msgstr "Kun billedfiler er understøttet"
msgid "Only WebVTT (.vtt) files are supported"
msgstr "Kun WebVTT-filer (.vtt) er understøttet"
-#: src/components/Lists.tsx:88
+#: src/components/Lists.tsx:94
msgid "Oops, something went wrong!"
msgstr "Ups, noget gik galt!"
-#: src/components/Lists.tsx:167
-#: src/components/StarterPack/ProfileStarterPacks.tsx:322
-#: src/components/StarterPack/ProfileStarterPacks.tsx:331
+#: src/components/Lists.tsx:173
+#: src/components/StarterPack/ProfileStarterPacks.tsx:321
+#: src/components/StarterPack/ProfileStarterPacks.tsx:330
#: src/screens/Settings/AppPasswords.tsx:59
#: src/screens/Settings/components/ChangeHandleDialog.tsx:104
#: src/screens/Settings/NotificationSettings.tsx:54
-#: src/view/screens/Profile.tsx:130
+#: src/view/screens/Profile.tsx:129
msgid "Oops!"
msgstr "Ups!"
-#: src/screens/Onboarding/StepFinished.tsx:260
+#: src/screens/Onboarding/StepFinished.tsx:267
msgid "Open"
msgstr "Åbn"
@@ -4579,7 +4662,7 @@ msgstr "Åbn handleskiftdialog"
msgid "Open conversation options"
msgstr "Åbn samtaleindstillinger"
-#: src/components/Layout/Header/index.tsx:145
+#: src/components/Layout/Header/index.tsx:149
msgid "Open drawer menu"
msgstr "Åbn navigation"
@@ -4702,8 +4785,8 @@ msgstr "Åbner videovælger"
msgid "Option {0} of {numItems}"
msgstr "Valgmulighed {0} af {numItems}"
-#: src/components/dms/ReportDialog.tsx:178
-#: src/components/ReportDialog/SubmitView.tsx:167
+#: src/components/dms/ReportDialog.tsx:219
+#: src/components/ReportDialog/SubmitView.tsx:168
msgid "Optionally provide additional information below:"
msgstr "Tilføj evt. yderligere informationer herunder:"
@@ -4736,11 +4819,15 @@ msgstr "Anden konto"
msgid "Other..."
msgstr "Andet..."
+#: src/components/dms/ReportDialog.tsx:339
+msgid "Our moderation team has recieved your report."
+msgstr "Vores moderationsteam har modtaget din anmeldelse."
+
#: src/screens/Messages/components/ChatDisabled.tsx:28
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr "Vores moderatorer har gennemgået anmeldelser og besluttet at spærre din adgang til chats på Bluesky."
-#: src/components/Lists.tsx:184
+#: src/components/Lists.tsx:190
#: src/view/screens/NotFound.tsx:47
msgid "Page not found"
msgstr "Side ikke fundet"
@@ -4785,11 +4872,11 @@ msgstr "Stop afspilning"
msgid "People"
msgstr "Personer"
-#: src/Navigation.tsx:185
+#: src/Navigation.tsx:186
msgid "People followed by @{0}"
msgstr "Personer, som følges af @{0}"
-#: src/Navigation.tsx:178
+#: src/Navigation.tsx:179
msgid "People following @{0}"
msgstr "Personer, som @{0} følger"
@@ -4818,11 +4905,20 @@ msgstr "Fotografi"
msgid "Pictures meant for adults."
msgstr "Billeder for voksne."
+#: src/screens/Search/components/ExploreTrendingVideos.tsx:173
+#: src/screens/Search/components/ExploreTrendingVideos.tsx:178
+msgid "Pin"
+msgstr "Fastgør"
+
#: src/screens/Profile/components/ProfileFeedHeader.tsx:519
#: src/screens/Profile/components/ProfileFeedHeader.tsx:526
msgid "Pin feed"
msgstr "Fastgør feed"
+#: src/screens/Search/components/ExploreTrendingVideos.tsx:167
+msgid "Pin the trending videos feed to your home screen for easy access"
+msgstr "Fastgør feedet med populære videoer til din forside for let adgang"
+
#: src/view/screens/ProfileList.tsx:685
msgid "Pin to home"
msgstr "Fastgør til forside"
@@ -4867,7 +4963,7 @@ msgstr "Afspil {0}"
msgid "Play or pause the GIF"
msgstr "Afspil GIF eller sæt på pause"
-#: src/view/com/util/post-embeds/VideoEmbed.tsx:107
+#: src/view/com/util/post-embeds/VideoEmbed.tsx:134
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321
msgid "Play video"
msgstr "Afspil video"
@@ -4953,6 +5049,10 @@ msgstr "Bekræft din e-mail"
msgid "Politics"
msgstr "Politik"
+#: src/screens/Search/components/ExploreTrendingVideos.tsx:116
+msgid "Popular videos in your network."
+msgstr "Populære videoer i dit netværk."
+
#: src/view/com/composer/labels/LabelsBtn.tsx:157
msgid "Porn"
msgstr "Porno"
@@ -4976,10 +5076,10 @@ msgstr "Slå alle op"
msgid "Post by {0}"
msgstr "Opslag af {0}"
-#: src/Navigation.tsx:204
-#: src/Navigation.tsx:211
-#: src/Navigation.tsx:218
-#: src/Navigation.tsx:225
+#: src/Navigation.tsx:205
+#: src/Navigation.tsx:212
+#: src/Navigation.tsx:219
+#: src/Navigation.tsx:226
msgid "Post by @{0}"
msgstr "Opslag af @{0}"
@@ -4991,6 +5091,10 @@ msgstr "Opslag slettet"
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "Opslag kunne ikke publiceres. Tjek din internetforbindelse og prøv igen."
+#: src/screens/VideoFeed/index.tsx:511
+msgid "Post has been deleted"
+msgstr "Indlæg er blevet slettet"
+
#: src/view/com/post-thread/PostThread.tsx:266
msgid "Post hidden"
msgstr "Opslag skjult"
@@ -5030,12 +5134,8 @@ msgstr "Opslag blev fastgjort"
msgid "Post unpinned"
msgstr "Opslag blev frigjort"
-#: src/components/TagMenu/index.tsx:268
-msgid "posts"
-msgstr "opslag"
-
#: src/screens/StarterPack/StarterPackScreen.tsx:184
-#: src/view/screens/Profile.tsx:232
+#: src/view/screens/Profile.tsx:233
msgid "Posts"
msgstr "Opslag"
@@ -5065,7 +5165,7 @@ msgid "Press to change hosting provider"
msgstr "Tryk for at skifte udbyder"
#: src/components/Error.tsx:60
-#: src/components/Lists.tsx:93
+#: src/components/Lists.tsx:99
#: src/screens/Messages/components/MessageListError.tsx:24
#: src/screens/Signup/BackNextButtons.tsx:47
msgid "Press to retry"
@@ -5102,12 +5202,12 @@ msgstr "Privatliv"
msgid "Privacy and security"
msgstr "Privatliv og sikkerhed"
-#: src/Navigation.tsx:347
+#: src/Navigation.tsx:348
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36
msgid "Privacy and Security"
msgstr "Privatliv og sikkerhed"
-#: src/Navigation.tsx:271
+#: src/Navigation.tsx:272
#: src/screens/Settings/AboutSettings.tsx:45
#: src/screens/Settings/AboutSettings.tsx:48
#: src/view/screens/PrivacyPolicy.tsx:31
@@ -5126,7 +5226,7 @@ msgid "Processing..."
msgstr "Behandler..."
#: src/view/screens/DebugMod.tsx:919
-#: src/view/screens/Profile.tsx:363
+#: src/view/screens/Profile.tsx:372
msgid "profile"
msgstr "profil"
@@ -5142,7 +5242,7 @@ msgstr "Profil"
msgid "Profile updated"
msgstr "Profil opdateret"
-#: src/screens/Onboarding/StepFinished.tsx:246
+#: src/screens/Onboarding/StepFinished.tsx:253
msgid "Public"
msgstr "Offentlig"
@@ -5220,6 +5320,14 @@ msgstr "Gentilkobl citat"
msgid "Reactivate your account"
msgstr "Genaktiv din konto"
+#: src/screens/VideoFeed/index.tsx:932
+msgid "Read less"
+msgstr "Læs mindre"
+
+#: src/screens/VideoFeed/index.tsx:932
+msgid "Read more"
+msgstr "Læs mere"
+
#: src/view/com/auth/SplashScreen.web.tsx:171
msgid "Read the Bluesky blog"
msgstr "Læs Blueskys blog"
@@ -5234,9 +5342,14 @@ msgstr "Læs Blueskys privatlivspolitik"
msgid "Read the Bluesky Terms of Service"
msgstr "Læs Blueskys tjenestevilkår"
-#: src/components/dms/ReportDialog.tsx:169
+#: src/screens/Takendown.tsx:162
+#: src/screens/Takendown.tsx:170
+msgid "Reason for appeal"
+msgstr "Begrundelse for klage"
+
+#: src/components/dms/ReportDialog.tsx:210
msgid "Reason:"
-msgstr "Årsag:"
+msgstr "Begrundelse:"
#: src/view/screens/Search/Search.tsx:1034
msgid "Recent Searches"
@@ -5250,7 +5363,7 @@ msgstr "Anbefalet"
msgid "Reconnect"
msgstr "Forbind igen"
-#: src/screens/Messages/ChatList.tsx:163
+#: src/screens/Messages/ChatList.tsx:171
msgid "Reload conversations"
msgstr "Genindlæs samtaler"
@@ -5393,7 +5506,7 @@ msgstr "Fjerner citeret opslag"
msgid "Replace with Discover"
msgstr "Erstat med Discover"
-#: src/view/screens/Profile.tsx:233
+#: src/view/screens/Profile.tsx:234
msgid "Replies"
msgstr "Svar"
@@ -5510,6 +5623,10 @@ msgstr "Anmeld opslag"
msgid "Report starter pack"
msgstr "Anmeld startpakke"
+#: src/components/dms/ReportDialog.tsx:336
+msgid "Report submitted"
+msgstr "Anmeldelse afsendt"
+
#: src/components/ReportDialog/SelectReportOptionView.tsx:41
msgid "Report this content"
msgstr "Anmeld dette indhold"
@@ -5522,8 +5639,8 @@ msgstr "Anmeld dette feed"
msgid "Report this list"
msgstr "Anmeld denne liste"
-#: src/components/dms/ReportDialog.tsx:44
-#: src/components/dms/ReportDialog.tsx:137
+#: src/components/dms/ReportDialog.tsx:58
+#: src/components/dms/ReportDialog.tsx:178
#: src/components/ReportDialog/SelectReportOptionView.tsx:60
msgid "Report this message"
msgstr "Anmeld denne besked"
@@ -5653,11 +5770,11 @@ msgstr "Prøver at gentage den seneste handling, der fejlede"
#: src/components/dms/MessageItem.tsx:245
#: src/components/Error.tsx:65
-#: src/components/Lists.tsx:104
-#: src/components/StarterPack/ProfileStarterPacks.tsx:336
+#: src/components/Lists.tsx:110
+#: src/components/StarterPack/ProfileStarterPacks.tsx:335
#: src/screens/Login/LoginForm.tsx:313
#: src/screens/Login/LoginForm.tsx:320
-#: src/screens/Messages/ChatList.tsx:169
+#: src/screens/Messages/ChatList.tsx:177
#: src/screens/Messages/components/MessageListError.tsx:25
#: src/screens/Onboarding/StepInterests/index.tsx:217
#: src/screens/Onboarding/StepInterests/index.tsx:220
@@ -5680,7 +5797,8 @@ msgstr "Gå til forrige side"
msgid "Returns to home page"
msgstr "Går til forsiden"
-#: src/screens/Profile/ProfileFeed/index.tsx:83
+#: src/screens/Profile/ProfileFeed/index.tsx:90
+#: src/screens/VideoFeed/index.tsx:1099
#: src/view/screens/NotFound.tsx:60
msgid "Returns to previous page"
msgstr "Går til forrige side"
@@ -5785,7 +5903,7 @@ msgstr "Rul til toppen"
#: src/components/dms/dialogs/SearchablePeopleList.tsx:487
#: src/components/forms/SearchInput.tsx:34
#: src/components/forms/SearchInput.tsx:36
-#: src/Navigation.tsx:599
+#: src/Navigation.tsx:608
#: src/view/com/modals/ListAddRemoveUsers.tsx:76
#: src/view/screens/Search/Search.tsx:570
#: src/view/shell/bottom-bar/BottomBar.tsx:182
@@ -5841,21 +5959,21 @@ msgstr "Søg i Tenor"
msgid "Security Step Required"
msgstr "Obligatorisk sikkerhedstjek"
-#: src/components/TagMenu/index.web.tsx:77
-msgid "See {truncatedTag} posts"
-msgstr "Se {truncatedTag}-opslag"
+#: src/components/RichTextTag.tsx:111
+msgid "See {tag} posts"
+msgstr "Se {tag}-indlæg"
-#: src/components/TagMenu/index.web.tsx:94
-msgid "See {truncatedTag} posts by user"
-msgstr "Se {truncatedTag}-opslag af bruger"
+#: src/components/RichTextTag.tsx:124
+msgid "See {tag} posts by user"
+msgstr "Se {tag}-indlæg af bruger"
-#: src/components/TagMenu/index.tsx:155
-msgid "See <0>{displayTag}0> posts"
-msgstr "Se <0>{displayTag}0>-opslag"
+#: src/components/RichTextTag.tsx:118
+msgid "See #{tag} posts"
+msgstr "Se #{tag}-indlæg"
-#: src/components/TagMenu/index.tsx:203
-msgid "See <0>{displayTag}0> posts by this user"
-msgstr "Se <0>{displayTag}0>-opslag af denne bruger"
+#: src/components/RichTextTag.tsx:132
+msgid "See #{tag} posts by user"
+msgstr "Se #{tag}-indlæg af bruger"
#: src/view/com/auth/SplashScreen.web.tsx:176
msgid "See jobs at Bluesky"
@@ -5925,7 +6043,7 @@ msgstr "Vælg undertekstfil (.vtt)"
msgid "Select the {emojiName} emoji as your avatar"
msgstr "Vælg emojien {emojiName} som din avatar"
-#: src/components/ReportDialog/SubmitView.tsx:140
+#: src/components/ReportDialog/SubmitView.tsx:141
msgid "Select the moderation service(s) to report to"
msgstr "Vælg moderationstjeneste(r), du vil anmelde til"
@@ -5996,10 +6114,10 @@ msgstr "Send besked"
msgid "Send post to..."
msgstr "Send opslag til..."
-#: src/components/dms/ReportDialog.tsx:229
-#: src/components/dms/ReportDialog.tsx:232
-#: src/components/ReportDialog/SubmitView.tsx:220
-#: src/components/ReportDialog/SubmitView.tsx:224
+#: src/components/dms/ReportDialog.tsx:269
+#: src/components/dms/ReportDialog.tsx:272
+#: src/components/ReportDialog/SubmitView.tsx:221
+#: src/components/ReportDialog/SubmitView.tsx:225
msgid "Send report"
msgstr "Send anmeldelse"
@@ -6045,7 +6163,7 @@ msgstr "Konfigurer din konto"
msgid "Sets email for password reset"
msgstr "Angiver e-mail til nulstilling af adgangskode"
-#: src/Navigation.tsx:160
+#: src/Navigation.tsx:161
#: src/screens/Settings/Settings.tsx:80
#: src/view/shell/desktop/LeftNav.tsx:694
#: src/view/shell/Drawer.tsx:534
@@ -6129,7 +6247,7 @@ msgstr "Del denne startpakke og hjælp andre med at blive en del af fællesskabe
msgid "Share your favorite feed!"
msgstr "Del dit yndlingsfeed!"
-#: src/Navigation.tsx:256
+#: src/Navigation.tsx:257
msgid "Shared Preferences Tester"
msgstr "Test af delte indstillinger"
@@ -6150,6 +6268,8 @@ msgstr "Vis alt-tekst"
#: src/components/moderation/ScreenHider.tsx:172
#: src/components/moderation/ScreenHider.tsx:175
#: src/screens/List/ListHiddenScreen.tsx:187
+#: src/screens/VideoFeed/index.tsx:609
+#: src/screens/VideoFeed/index.tsx:615
msgid "Show anyway"
msgstr "Vis alligevel"
@@ -6333,7 +6453,7 @@ msgstr "Mindre"
msgid "Software Dev"
msgstr "Softwareudvikling"
-#: src/components/FeedInterstitials.tsx:445
+#: src/components/FeedInterstitials.tsx:449
msgid "Some other feeds you might like"
msgstr "Nogle andre feeds, du måske kan lide"
@@ -6356,7 +6476,7 @@ msgstr "Noget gik galt, prøv igen"
msgid "Something went wrong, please try again."
msgstr "Noget gik galt, prøv igen"
-#: src/components/Lists.tsx:168
+#: src/components/Lists.tsx:174
#: src/screens/Settings/NotificationSettings.tsx:55
msgid "Something went wrong!"
msgstr "Noget gik galt!"
@@ -6418,8 +6538,8 @@ msgstr "Kom i gang med at tilføje personer!"
msgid "Start chat with {displayName}"
msgstr "Start chat med {displayName}"
-#: src/Navigation.tsx:408
-#: src/Navigation.tsx:413
+#: src/Navigation.tsx:409
+#: src/Navigation.tsx:414
#: src/screens/StarterPack/Wizard/index.tsx:186
msgid "Starter Pack"
msgstr "Startpakke"
@@ -6441,11 +6561,11 @@ msgstr "Startpakke af dig"
msgid "Starter pack is invalid"
msgstr "Startpakke er ugyldig"
-#: src/view/screens/Profile.tsx:237
+#: src/view/screens/Profile.tsx:239
msgid "Starter Packs"
msgstr "Startpakker"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:244
+#: src/components/StarterPack/ProfileStarterPacks.tsx:243
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "Startpakker lader dig let dele dine foretrukne feeds og personer med dine venner."
@@ -6462,7 +6582,7 @@ msgstr "Trin {0} af {1}"
msgid "Storage cleared, you need to restart the app now."
msgstr "Lager tømt. Genstart appen nu."
-#: src/Navigation.tsx:246
+#: src/Navigation.tsx:247
#: src/screens/Settings/Settings.tsx:325
msgid "Storybook"
msgstr "Storybook"
@@ -6474,6 +6594,14 @@ msgstr "Storybook"
msgid "Submit"
msgstr "Gem"
+#: src/screens/Takendown.tsx:70
+msgid "Submit appeal"
+msgstr "Afsend klage"
+
+#: src/screens/Takendown.tsx:76
+msgid "Submit Appeal"
+msgstr "Afsend klage"
+
#: src/view/screens/ProfileList.tsx:712
msgid "Subscribe"
msgstr "Abonner"
@@ -6498,7 +6626,7 @@ msgstr "Abonner på denne liste"
msgid "Success!"
msgstr "Bekræftet!"
-#: src/view/screens/Search/Explore.tsx:354
+#: src/view/screens/Search/Explore.tsx:366
msgid "Suggested accounts"
msgstr "Foreslåede konti"
@@ -6511,7 +6639,7 @@ msgstr "Foreslået til dig"
msgid "Suggestive"
msgstr "Seksuelle undertoner"
-#: src/Navigation.tsx:266
+#: src/Navigation.tsx:267
#: src/view/screens/Support.tsx:31
#: src/view/screens/Support.tsx:34
msgid "Support"
@@ -6548,10 +6676,6 @@ msgstr "System"
msgid "System log"
msgstr "Systemlog"
-#: src/components/TagMenu/index.tsx:110
-msgid "Tag menu: {displayTag}"
-msgstr "Tagmenu: {displayTag}"
-
#: src/components/dialogs/MutedWords.tsx:282
msgid "Tags only"
msgstr "Kun tags"
@@ -6573,6 +6697,10 @@ msgstr "Tryk for lukke"
msgid "Tap to enter full screen"
msgstr "Tryk for at åbne i fuld skærm"
+#: src/screens/VideoFeed/index.tsx:931
+msgid "Tap to expand or collapse post text."
+msgstr "Tryk for at udvide eller sammenklappe indlæggets tekst."
+
#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141
msgid "Tap to play or pause"
msgstr "Tryk for at starte/stoppe afspilning"
@@ -6586,6 +6714,10 @@ msgstr "Tryk for at slå lyd til/fra"
msgid "Tap to view full image"
msgstr "Tryk for at se billede i fuld størrelse"
+#: src/components/VideoPostCard.tsx:115
+msgid "Tap to view video in immersive mode."
+msgstr "Tryk for at se video i fuldskærmstilstand"
+
#: src/state/shell/progress-guide.tsx:233
msgid "Task complete - 10 follows!"
msgstr "Opgave fuldført – 10 følger!"
@@ -6620,7 +6752,7 @@ msgstr "Fortæl os lidt mere"
msgid "Terms"
msgstr "Vilkår"
-#: src/Navigation.tsx:276
+#: src/Navigation.tsx:277
#: src/screens/Settings/AboutSettings.tsx:37
#: src/screens/Settings/AboutSettings.tsx:40
#: src/view/screens/TermsOfService.tsx:31
@@ -6634,12 +6766,16 @@ msgstr "Vilkår"
#: src/lib/moderation/useReportOptions.ts:107
#: src/lib/moderation/useReportOptions.ts:115
msgid "Terms used violate community standards"
-msgstr "Sprogbrug overtræder retningslinjer"
+msgstr "Sprogbrug overtræder fælleskabsreglerne"
#: src/components/dialogs/MutedWords.tsx:266
msgid "Text & tags"
msgstr "Tekst og tags"
+#: src/components/dms/ReportDialog.tsx:227
+msgid "Text field"
+msgstr "Tekstfelt"
+
#: src/components/moderation/LabelsOnMeDialog.tsx:263
#: src/screens/Messages/components/ChatDisabled.tsx:108
msgid "Text input field"
@@ -6649,8 +6785,7 @@ msgstr "Tekstfelt"
msgid "Thank you! Your email has been successfully verified."
msgstr "Tak! Din e-mailadresse er nu bekræftet."
-#: src/components/dms/ReportDialog.tsx:129
-#: src/components/ReportDialog/SubmitView.tsx:82
+#: src/components/ReportDialog/SubmitView.tsx:83
msgid "Thank you. Your report has been sent."
msgstr "Tak. Din anmeldelse blev sendt."
@@ -6679,6 +6814,10 @@ msgstr "Startpakke ikke fundet."
msgid "That's all, folks!"
msgstr "Det var alt, folkens!"
+#: src/screens/VideoFeed/index.tsx:1071
+msgid "That's everything!"
+msgstr "Det var alt"
+
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:279
#: src/view/com/profile/ProfileMenu.tsx:329
msgid "The account will be able to interact with you after unblocking."
@@ -6700,7 +6839,7 @@ msgstr "Bluesky-webapplikationen"
#: src/view/screens/CommunityGuidelines.tsx:38
msgid "The Community Guidelines have been moved to <0/>"
-msgstr "Retningslinjerne er flyttet til <0/>"
+msgstr "Fælleskabsreglerne er flyttet til <0/>"
#: src/view/screens/CopyrightPolicy.tsx:35
msgid "The Copyright Policy has been moved to <0/>"
@@ -6800,7 +6939,7 @@ msgstr "Der kunne ikke skabes forbindelse til serveren"
msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "Notifikationer kunne ikke indlæses. Tryk her for at prøve igen."
-#: src/view/com/posts/PostFeed.tsx:486
+#: src/view/com/posts/PostFeed.tsx:592
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "Opslag kunne ikke indlæses. Tryk her for at prøve igen."
@@ -6825,8 +6964,8 @@ msgstr "Dine tjenesteindstillinger kunne ikke indlæses"
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr "Feed kunne ikke fjernes. Tjek din internetforbindelse og prøv igen."
-#: src/components/dms/ReportDialog.tsx:217
-#: src/components/ReportDialog/SubmitView.tsx:87
+#: src/components/dms/ReportDialog.tsx:257
+#: src/components/ReportDialog/SubmitView.tsx:88
msgid "There was an issue sending your report. Please check your internet connection."
msgstr "Anmeldelse kunne ikke afsendes. Tjek din internetforbindelse."
@@ -6867,7 +7006,7 @@ msgstr "Der opstod en fejl. Tjek din internetforbindelse og prøv igen."
msgid "There was an unexpected issue in the application. Please let us know if this happened to you!"
msgstr "Der opstod en uventet fejl i appen. Giv os besked om, at det er sket for dig!"
-#: src/screens/SignupQueued.tsx:115
+#: src/screens/SignupQueued.tsx:130
msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can."
msgstr "Der kommer mange nye brugere til Bluesky for tiden! Vi aktiverer din konto, så snart vi kan."
@@ -6941,7 +7080,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "Dette feed er tomt! Prøv at følge flere bruger eller juster dine sprogindstillinger."
#: src/components/StarterPack/Main/PostsList.tsx:36
-#: src/screens/Profile/ProfileFeed/index.tsx:170
+#: src/screens/Profile/ProfileFeed/index.tsx:189
#: src/view/screens/ProfileList.tsx:814
msgid "This feed is empty."
msgstr "Dette feed er tomt."
@@ -6984,7 +7123,7 @@ msgstr "Dette link fører dig til følgende website:"
#: src/screens/List/ListHiddenScreen.tsx:146
msgid "This list - created by <0>{0}0> - contains possible violations of Bluesky's community guidelines in its name or description."
-msgstr "Denne list - oprettet af <0>{0}0> - overtræder muligvis Blueskys retningslinjer med sit navn eller sin beskrivelse"
+msgstr "Denne list - oprettet af <0>{0}0> - overtræder muligvis Blueskys fælleskabsregler med sit navn eller sin beskrivelse"
#: src/view/screens/ProfileList.tsx:933
msgid "This list is empty."
@@ -7081,8 +7220,8 @@ msgstr "Dette vil fjerne dit opslag fra dette citatopslag for alle brugere og er
msgid "Thread options"
msgstr "Trådindstillinger"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:66
-#: src/screens/Settings/ContentAndMediaSettings.tsx:69
+#: src/screens/Settings/ContentAndMediaSettings.tsx:67
+#: src/screens/Settings/ContentAndMediaSettings.tsx:70
msgid "Thread preferences"
msgstr "Indstillinger for tråde"
@@ -7099,7 +7238,7 @@ msgstr "Trådet"
msgid "Threaded mode"
msgstr "Trådvisning"
-#: src/Navigation.tsx:309
+#: src/Navigation.tsx:310
msgid "Threads Preferences"
msgstr "Trådindstillinger"
@@ -7141,7 +7280,7 @@ msgstr "Tryk for at aktivere eller deaktivere voksenindhold"
msgid "Top"
msgstr "Top"
-#: src/Navigation.tsx:383
+#: src/Navigation.tsx:384
msgid "Topic"
msgstr "Emne"
@@ -7159,6 +7298,11 @@ msgstr "Oversæt"
msgid "Trending"
msgstr "Trends"
+#: src/components/interstitials/TrendingVideos.tsx:88
+#: src/screens/Search/components/ExploreTrendingVideos.tsx:106
+msgid "Trending Videos"
+msgstr "Populære videoer"
+
#: src/view/com/util/error/ErrorScreen.tsx:103
msgctxt "action"
msgid "Try again"
@@ -7263,6 +7407,10 @@ msgstr "Følg ikke længer {0}"
msgid "Unfollow Account"
msgstr "Følg ikke længere konto"
+#: src/screens/VideoFeed/index.tsx:801
+msgid "Unfollow user"
+msgstr "Fælg ikke længere bruger"
+
#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
msgid "Unlike"
msgstr "Fjern like"
@@ -7271,30 +7419,26 @@ msgstr "Fjern like"
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Fjern ({0, plural, one {# like} other {# likes}})"
-#: src/components/TagMenu/index.tsx:264
-#: src/view/screens/ProfileList.tsx:701
-msgid "Unmute"
-msgstr "Skjul ikke længere"
-
#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:155
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94
msgctxt "video"
msgid "Unmute"
msgstr "Skjul ikke længere"
-#: src/components/TagMenu/index.web.tsx:115
-msgid "Unmute {truncatedTag}"
-msgstr "Skjul ikke længere {truncatedTag}"
+#: src/view/screens/ProfileList.tsx:701
+msgid "Unmute"
+msgstr "Skjul ikke længere"
+
+#: src/components/RichTextTag.tsx:140
+#: src/components/RichTextTag.tsx:153
+msgid "Unmute {tag}"
+msgstr "Skjul ikke længere {tag}"
#: src/view/com/profile/ProfileMenu.tsx:258
#: src/view/com/profile/ProfileMenu.tsx:264
msgid "Unmute Account"
msgstr "Skjul ikke længere konto"
-#: src/components/TagMenu/index.tsx:223
-msgid "Unmute all {displayTag} posts"
-msgstr "Skjul ikke længere alle {displayTag}-opslag"
-
#: src/components/dms/ConvoMenu.tsx:179
msgid "Unmute conversation"
msgstr "Skjul ikke længere samtale"
@@ -7417,12 +7561,12 @@ msgstr "Upload fra filer"
msgid "Upload from Library"
msgstr "Upload fra bibliotek"
-#: src/lib/api/index.ts:296
+#: src/lib/api/index.ts:301
msgid "Uploading images..."
msgstr "Uploader billeder..."
-#: src/lib/api/index.ts:350
-#: src/lib/api/index.ts:374
+#: src/lib/api/index.ts:355
+#: src/lib/api/index.ts:379
msgid "Uploading link thumbnail..."
msgstr "Uploader forhåndsvisning af link..."
@@ -7443,8 +7587,8 @@ msgstr "Brug standardudbyder"
msgid "Use in-app browser"
msgstr "Brug browser i app"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:92
-#: src/screens/Settings/ContentAndMediaSettings.tsx:98
+#: src/screens/Settings/ContentAndMediaSettings.tsx:93
+#: src/screens/Settings/ContentAndMediaSettings.tsx:99
msgid "Use in-app browser to open links"
msgstr "Brug appens indbyggede browser til at åbne links"
@@ -7583,12 +7727,28 @@ msgstr "Video"
msgid "Video failed to process"
msgstr "Videobehandling fejlede"
+#: src/Navigation.tsx:430
+msgid "Video Feed"
+msgstr "Videofeed"
+
+#: src/components/VideoPostCard.tsx:116
+msgid "Video from {0}: {text}"
+msgstr "Videofeed fra {0}: {text}"
+
#: src/screens/Onboarding/index.tsx:39
#: src/screens/Onboarding/state.ts:103
msgid "Video Games"
msgstr "Computerspil"
-#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:169
+#: src/screens/VideoFeed/index.tsx:1029
+msgid "Video is paused"
+msgstr "Video er sat på pause"
+
+#: src/screens/VideoFeed/index.tsx:1029
+msgid "Video is playing"
+msgstr "Video afspiller"
+
+#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:191
msgid "Video not found."
msgstr "Video ikke fundet."
@@ -7604,6 +7764,10 @@ msgstr "Video uploadet"
msgid "Video: {0}"
msgstr "Video: {0}"
+#: src/view/screens/Profile.tsx:236
+msgid "Videos"
+msgstr "Videoer"
+
#: src/view/com/composer/videos/SelectVideoBtn.tsx:58
#: src/view/com/composer/videos/SelectVideoBtn.tsx:73
msgid "Videos must be less than 60 seconds long"
@@ -7615,6 +7779,7 @@ msgstr "{0}s avatar"
#: src/components/ProfileCard.tsx:110
#: src/screens/Profile/components/ProfileFeedHeader.tsx:450
+#: src/screens/VideoFeed/index.tsx:762
#: src/view/com/notifications/NotificationFeedItem.tsx:409
msgid "View {0}'s profile"
msgstr "Se {0}s profil"
@@ -7623,14 +7788,6 @@ msgstr "Se {0}s profil"
msgid "View {displayName}'s profile"
msgstr "Se {displayName}s profil"
-#: src/components/TagMenu/index.tsx:172
-msgid "View all posts by @{authorHandle} with tag {displayTag}"
-msgstr "Vis alle opslag af @{authorHandle} med tagget {displayTag}"
-
-#: src/components/TagMenu/index.tsx:126
-msgid "View all posts with tag {displayTag}"
-msgstr "Vis alle opslag med tagget {displayTag}"
-
#: src/components/ProfileHoverCard/index.web.tsx:433
msgid "View blocked user's profile"
msgstr "Vis blokeret brugers profil"
@@ -7644,6 +7801,8 @@ msgid "View debug entry"
msgstr "Se loghændelse"
#: src/components/ReportDialog/SelectReportOptionView.tsx:137
+#: src/screens/VideoFeed/index.tsx:637
+#: src/screens/VideoFeed/index.tsx:655
msgid "View details"
msgstr "Læs mere"
@@ -7659,6 +7818,13 @@ msgstr "Vis hele tråden"
msgid "View information about these labels"
msgstr "Vis information om disse mærkater"
+#: src/components/interstitials/TrendingVideos.tsx:191
+#: src/components/interstitials/TrendingVideos.tsx:210
+#: src/screens/Search/components/ExploreTrendingVideos.tsx:231
+#: src/screens/Search/components/ExploreTrendingVideos.tsx:250
+msgid "View more"
+msgstr "Se flere"
+
#: src/components/ProfileHoverCard/index.web.tsx:419
#: src/components/ProfileHoverCard/index.web.tsx:439
#: src/components/ProfileHoverCard/index.web.tsx:466
@@ -7681,6 +7847,10 @@ msgstr "Vis mærkningstjenesten drevet af @{0}"
msgid "View users who like this feed"
msgstr "Vis brugere, der likede dette feed"
+#: src/components/VideoPostCard.tsx:392
+msgid "View video"
+msgstr "Se video"
+
#: src/screens/Moderation/index.tsx:248
msgid "View your blocked accounts"
msgstr "Vis blokerede konti"
@@ -7733,7 +7903,7 @@ msgstr "Vi kunne ikke finde nogen resultater for dette emne."
msgid "We couldn't load this conversation"
msgstr "Vi kunne ikke indlæse denne samtale"
-#: src/screens/SignupQueued.tsx:145
+#: src/screens/SignupQueued.tsx:160
msgid "We estimate {estimatedTime} until your account is ready."
msgstr "Vi forventer, at din konto vil være klar om {estimatedTime}."
@@ -7741,7 +7911,7 @@ msgstr "Vi forventer, at din konto vil være klar om {estimatedTime}."
msgid "We have sent another verification email to <0>{0}0>."
msgstr "Vi har sendt endnu en bekræftelses-e-mail til <0>{0}0>."
-#: src/screens/Onboarding/StepFinished.tsx:238
+#: src/screens/Onboarding/StepFinished.tsx:245
msgid "We hope you have a wonderful time. Remember, Bluesky is:"
msgstr "God fornøjelse. Husk, at Bluesky er:"
@@ -7765,7 +7935,7 @@ msgstr "Vi kunne ikke indlæse dine konfigurede mærkningstjenester."
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 "Vi kunne ikke få forbindelse. Prøv igen for at fortsætte opsætningen af din konto. Hvis det fortsat ikke virker, kan du springe dette trin over."
-#: src/screens/SignupQueued.tsx:149
+#: src/screens/SignupQueued.tsx:164
msgid "We will let you know when your account is ready."
msgstr "Vi giver dig besked, når din konto er klar."
@@ -7798,7 +7968,7 @@ msgstr "Beklager, men din søgning kunne ikke gennemføres. Prøv igen om lidt."
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Beklager! Det opslag, du svarer på, er blevet slettet."
-#: src/components/Lists.tsx:188
+#: src/components/Lists.tsx:194
#: src/view/screens/NotFound.tsx:50
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Beklager! Vi kan ikke finde den side, du leder efter."
@@ -7850,10 +8020,19 @@ msgid "Who can reply"
msgstr "Hvem kan svare"
#: src/screens/Home/NoFeedsPinned.tsx:79
-#: src/screens/Messages/ChatList.tsx:148
+#: src/screens/Messages/ChatList.tsx:156
msgid "Whoops!"
msgstr "Ups!"
+#: src/components/interstitials/TrendingVideos.tsx:127
+#: src/screens/Search/components/ExploreTrendingVideos.tsx:147
+msgid "Whoops! Trending videos failed to load."
+msgstr "Ups! Populære videoer kunne ikke indlæses."
+
+#: src/screens/Takendown.tsx:173
+msgid "Why are you appealing?"
+msgstr "Hvorfor ønsker du at klage?"
+
#: src/components/ReportDialog/SelectReportOptionView.tsx:42
msgid "Why should this content be reviewed?"
msgstr "Hvorfor skal dette indhold gennemgås?"
@@ -7892,7 +8071,7 @@ msgid "Write post"
msgstr "Skriv dit opslag"
#: src/view/com/composer/Composer.tsx:734
-#: src/view/com/post-thread/PostThreadComposePrompt.tsx:70
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69
msgid "Write your reply"
msgstr "Skriv dit svar"
@@ -7942,7 +8121,7 @@ msgstr "dig"
msgid "You"
msgstr "Dig"
-#: src/screens/SignupQueued.tsx:142
+#: src/screens/SignupQueued.tsx:157
msgid "You are in line."
msgstr "Du er i kø."
@@ -7976,7 +8155,8 @@ msgstr "Du kan nu logge ind med din nye adgangskode."
msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users."
msgstr "Du kan genaktivere din konto ved at logge ind. Andre brugere vil igen kunne se din profil og dine opslag."
-#: src/components/interstitials/Trending.tsx:135
+#: src/components/interstitials/Trending.tsx:130
+#: src/components/interstitials/TrendingVideos.tsx:139
#: src/screens/Search/components/ExploreTrendingTopics.tsx:136
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:109
msgid "You can update this later from your settings."
@@ -8040,7 +8220,7 @@ msgstr "Du har skjult denne konto."
msgid "You have muted this user"
msgstr "Du har skjult denne bruger"
-#: src/screens/Messages/ChatList.tsx:190
+#: src/screens/Messages/ChatList.tsx:198
msgid "You have no conversations yet. Start one!"
msgstr "Du har endnu ingen samtaler. Start en!"
@@ -8061,7 +8241,7 @@ msgstr "Du har endnu ikke blokeret nogen konti. Du kan blokere en konto ved at g
msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account."
msgstr "Du har endnu ikke skjult nogen konti. Du kan skjule en konto ved at gå til profilen og vælge \"Skjul konto\" i menuen."
-#: src/components/Lists.tsx:52
+#: src/components/Lists.tsx:57
msgid "You have reached the end"
msgstr "Du er nået til slutningen"
@@ -8069,7 +8249,7 @@ msgstr "Du er nået til slutningen"
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "Du har midlertidigt nået grænsen for videouploads. Prøv igen senere."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:241
+#: src/components/StarterPack/ProfileStarterPacks.tsx:240
msgid "You haven't created a starter pack yet!"
msgstr "Du har endnu ikke oprettet en startpakke!"
@@ -8106,7 +8286,7 @@ msgstr "Du må vælge højst 4 billeder"
msgid "You must be 13 years of age or older to sign up."
msgstr "Du skal være mindst 13 år gammel for at oprette dig"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:324
+#: src/components/StarterPack/ProfileStarterPacks.tsx:323
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "Du skal følge mindst syv andre konti for at oprette en startpakke."
@@ -8118,7 +8298,7 @@ msgstr "Du skal give adgang til dit fotobibliotek for at gemme en QR-kode"
msgid "You must grant access to your photo library to save the image."
msgstr "Du skal give adgang til dit fotobibliotek for at gemme billedet."
-#: src/components/ReportDialog/SubmitView.tsx:210
+#: src/components/ReportDialog/SubmitView.tsx:211
msgid "You must select at least one labeler for a report"
msgstr "Du skal vælge mindst én mærkningstjeneste for at anmelde"
@@ -8179,7 +8359,7 @@ msgstr "Du vil modtage en e-mail på <0>{0}0> for at bekræfte, at det er dig.
msgid "You'll stay updated with these feeds"
msgstr "Du vil holde dig ajour med disse feeds"
-#: src/screens/SignupQueued.tsx:112
+#: src/screens/SignupQueued.tsx:127
msgid "You're in line"
msgstr "Du er i kø"
@@ -8188,7 +8368,7 @@ msgstr "Du er i kø"
msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account."
msgstr "Du er logget ind med en appadgangskode. Log ind med din primære adgangskode for at deaktivere din konto."
-#: src/screens/Onboarding/StepFinished.tsx:235
+#: src/screens/Onboarding/StepFinished.tsx:242
msgid "You're ready to go!"
msgstr "Så er du klar til at gå i gang!"
@@ -8213,6 +8393,10 @@ msgstr "Du har nået din daglige grænse for videouploads (for mange bytes)"
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Du har nået din daglige grænse for videouploads (for mange videoer)"
+#: src/screens/VideoFeed/index.tsx:1080
+msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
+msgstr "Du er løbet tør for videoer at se. Måske er det på tide at holde en pause?"
+
#: src/screens/Signup/index.tsx:140
msgid "Your account"
msgstr "Din konto"
@@ -8221,6 +8405,10 @@ msgstr "Din konto"
msgid "Your account has been deleted"
msgstr "Din konto blev slettet"
+#: src/screens/Takendown.tsx:146
+msgid "Your account has been suspended"
+msgstr "Din konto er suspenderet"
+
#: src/view/com/composer/state/video.ts:429
msgid "Your account is not yet old enough to upload videos. Please try again later."
msgstr "Din konto er ikke gammel nok til videoupload. Prøv igen senere."
@@ -8229,11 +8417,19 @@ msgstr "Din konto er ikke gammel nok til videoupload. Prøv igen senere."
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 "Dit kontoarkiv, som indeholder al din offentlige data, kan downloades som en CAR-fil. Denne fil indeholder ikke vedhæftede medier, fx billeder, eller dine private oplysninger, som skal downloades separat."
+#: src/screens/Takendown.tsx:214
+msgid "Your account was found to be in violation of the <0>Bluesky Social Terms of Service0>. You have been sent an email outlining the specific violation and suspension period, if applicable. You can appeal this decision if you believe it was made in error."
+msgstr "Din konto overtræder <0>Bluesky Socials tjenestevilkår0>. Du har fået en e-mail, der beskriver, hvad du har gjort forkert, og hvor længe du vil være suspenderet. Du kan klage over denne beslutning, hvis du mener, der er sket en fejl."
+
+#: src/screens/Takendown.tsx:154
+msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email."
+msgstr "Din klage er blevet afsendt. Hvis du får medhold i din klage, vil du få besked via e-mail."
+
#: src/screens/Signup/StepInfo/index.tsx:205
msgid "Your birth date"
msgstr "Din fødselsdato"
-#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:173
+#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:195
msgid "Your browser does not support the video format. Please try a different browser."
msgstr "Din browser understøtter ikke dette videoformat. Prøv med en anden browser."
@@ -8296,7 +8492,7 @@ msgstr "Dit opslag blev publiceret"
msgid "Your posts have been published"
msgstr "Dine opslag blev publiceret"
-#: src/screens/Onboarding/StepFinished.tsx:250
+#: src/screens/Onboarding/StepFinished.tsx:257
msgid "Your posts, likes, and blocks are public. Mutes are private."
msgstr "Dine opslag, likes og blokeringer er offentlige. Dine skjulte ord, tags og konti er private."
@@ -8308,6 +8504,6 @@ msgstr "Din profil, dine opslag, feeds og lister vil ikke længere kunne ses af
msgid "Your reply has been published"
msgstr "Dit svar blev publiceret"
-#: src/components/dms/ReportDialog.tsx:157
+#: src/components/dms/ReportDialog.tsx:198
msgid "Your report will be sent to the Bluesky Moderation Service"
msgstr "Din anmeldelse vil blive sendt til Bluesky Moderationstjeneste"
diff --git a/src/locale/locales/en/messages.po b/src/locale/locales/en/messages.po
index 53f31113a6..ed17746d0a 100644
--- a/src/locale/locales/en/messages.po
+++ b/src/locale/locales/en/messages.po
@@ -17,7 +17,7 @@ msgstr ""
msgid "(active)"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:130
+#: src/screens/Messages/components/ChatListItem.tsx:145
msgid "(contains embedded content)"
msgstr ""
@@ -26,11 +26,6 @@ msgstr ""
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 ""
@@ -47,14 +42,6 @@ msgstr ""
msgid "{0, plural, one {# hour} other {# hours}}"
msgstr ""
-#: src/components/moderation/LabelsOnMe.tsx:53
-#~ 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:59
-#~ msgid "{0, plural, one {# label has been placed on this content} other {# labels have been placed on this content}}"
-#~ msgstr ""
-
#: src/components/moderation/LabelsOnMe.tsx:53
msgid "{0, plural, one {# label has} other {# labels have}} been placed on this account"
msgstr ""
@@ -97,43 +84,22 @@ msgstr ""
msgid "{0, plural, one {following} other {following}}"
msgstr ""
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:305
-#~ msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}"
-#~ msgstr ""
-
-#: src/view/com/post-thread/PostThreadItem.tsx:447
+#: src/view/com/post-thread/PostThreadItem.tsx:452
msgid "{0, plural, one {like} other {likes}}"
msgstr ""
-#: src/components/FeedCard.tsx:213
-#: src/view/com/feeds/FeedSourceCard.tsx:303
-#~ msgid "{0, plural, one {Liked by # user} other {Liked by # users}}"
-#~ msgstr ""
-
#: src/screens/Profile/Header/Metrics.tsx:58
msgid "{0, plural, one {post} other {posts}}"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:431
+#: src/view/com/post-thread/PostThreadItem.tsx:436
msgid "{0, plural, one {quote} other {quotes}}"
msgstr ""
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:261
-#~ msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}"
-#~ msgstr ""
-
-#: src/view/com/post-thread/PostThreadItem.tsx:413
+#: src/view/com/post-thread/PostThreadItem.tsx:418
msgid "{0, plural, one {repost} other {reposts}}"
msgstr ""
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:301
-#~ msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}"
-#~ msgstr ""
-
-#: src/screens/Settings/Settings.tsx:422
-msgid "{0}"
-msgstr ""
-
#. Pattern: {wordValue} in tags
#: src/components/dialogs/MutedWords.tsx:475
msgid "{0} <0>in <1>tags1>0>"
@@ -156,11 +122,11 @@ msgstr ""
msgid "{0} people have used this starter pack!"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBar.tsx:208
+#: src/view/shell/bottom-bar/BottomBar.tsx:207
msgid "{0} unread items"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:435
+#: src/view/com/util/UserAvatar.tsx:436
msgid "{0}'s avatar"
msgstr ""
@@ -197,15 +163,7 @@ msgstr ""
msgid "{0}s"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:252
-#~ msgid "{badge} unread items"
-#~ msgstr ""
-
-#: src/components/LabelingServiceCard/index.tsx:96
-#~ msgid "{count, plural, one {Liked by # user} other {Liked by # users}}"
-#~ msgstr ""
-
-#: src/view/shell/desktop/LeftNav.tsx:189
+#: src/view/shell/desktop/LeftNav.tsx:387
msgid "{count} unread items"
msgstr ""
@@ -214,11 +172,11 @@ msgstr ""
msgid "{displayName}'s Starter Pack"
msgstr ""
-#: src/screens/SignupQueued.tsx:219
+#: src/screens/SignupQueued.tsx:216
msgid "{estimatedTimeHrs, plural, one {hour} other {hours}}"
msgstr ""
-#: src/screens/SignupQueued.tsx:225
+#: src/screens/SignupQueued.tsx:222
msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}"
msgstr ""
@@ -319,21 +277,15 @@ msgstr ""
msgid "{handle} can't be messaged"
msgstr ""
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:294
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:307
-#: src/view/screens/ProfileFeed.tsx:591
-#~ msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}"
-#~ msgstr ""
-
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:260
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:262
msgid "{notificationCount} unread items"
msgstr ""
-#: src/view/shell/Drawer.tsx:448
+#: src/view/shell/Drawer.tsx:453
msgid "{numUnreadNotifications} unread"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBar.tsx:235
+#: src/view/shell/bottom-bar/BottomBar.tsx:234
msgid "{numUnreadNotifications} unread items"
msgstr ""
@@ -371,7 +323,7 @@ msgstr ""
msgid "<0>{0}0> is included in your starter pack"
msgstr ""
-#: src/components/WhoCanReply.tsx:274
+#: src/components/WhoCanReply.tsx:292
msgid "<0>{0}0> members"
msgstr ""
@@ -395,7 +347,7 @@ msgstr ""
msgid "24 hours"
msgstr ""
-#: src/screens/Login/LoginForm.tsx:252
+#: src/screens/Login/LoginForm.tsx:260
msgid "2FA Confirmation"
msgstr ""
@@ -407,53 +359,41 @@ msgstr ""
msgid "7 days"
msgstr ""
-#: src/Navigation.tsx:363
-#: src/screens/Settings/AboutSettings.tsx:28
+#: src/Navigation.tsx:373
+#: src/screens/Settings/AboutSettings.tsx:30
#: src/screens/Settings/Settings.tsx:215
#: src/screens/Settings/Settings.tsx:218
msgid "About"
msgstr ""
-#: src/view/screens/Search/Search.tsx:865
-msgid "Access navigation links and settings"
-msgstr ""
-
-#: src/view/com/home/HomeHeaderLayoutMobile.tsx:56
-#~ msgid "Access profile and other navigation links"
-#~ msgstr ""
-
#: src/screens/Settings/AccessibilitySettings.tsx:46
#: src/screens/Settings/Settings.tsx:191
#: src/screens/Settings/Settings.tsx:194
msgid "Accessibility"
msgstr ""
-#: src/view/screens/Settings/index.tsx:455
-#~ msgid "Accessibility settings"
-#~ msgstr ""
-
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:333
msgid "Accessibility Settings"
msgstr ""
-#: src/Navigation.tsx:339
-#: src/screens/Login/LoginForm.tsx:178
+#: src/Navigation.tsx:349
+#: src/screens/Login/LoginForm.tsx:186
#: src/screens/Settings/AccountSettings.tsx:45
#: src/screens/Settings/Settings.tsx:153
#: src/screens/Settings/Settings.tsx:156
msgid "Account"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:132
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:360
+#: src/view/com/profile/ProfileMenu.tsx:134
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:362
msgid "Account blocked"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:145
+#: src/view/com/profile/ProfileMenu.tsx:147
msgid "Account followed"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:108
+#: src/view/com/profile/ProfileMenu.tsx:110
msgid "Account muted"
msgstr ""
@@ -466,24 +406,24 @@ msgstr ""
msgid "Account Muted by List"
msgstr ""
-#: src/screens/Settings/Settings.tsx:428
+#: src/screens/Settings/Settings.tsx:430
msgid "Account options"
msgstr ""
-#: src/screens/Settings/Settings.tsx:464
+#: src/screens/Settings/Settings.tsx:466
msgid "Account removed from quick access"
msgstr ""
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:137
-#: src/view/com/profile/ProfileMenu.tsx:122
+#: src/view/com/profile/ProfileMenu.tsx:124
msgid "Account unblocked"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:157
+#: src/view/com/profile/ProfileMenu.tsx:159
msgid "Account unfollowed"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:98
+#: src/view/com/profile/ProfileMenu.tsx:100
msgid "Account unmuted"
msgstr ""
@@ -530,12 +470,14 @@ msgstr ""
msgid "Add alt text (optional)"
msgstr ""
-#: src/screens/Settings/Settings.tsx:372
-#: src/screens/Settings/Settings.tsx:375
+#: src/screens/Settings/Settings.tsx:373
+#: src/screens/Settings/Settings.tsx:376
+#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/view/shell/desktop/LeftNav.tsx:288
msgid "Add another account"
msgstr ""
-#: src/view/com/composer/Composer.tsx:728
+#: src/view/com/composer/Composer.tsx:743
msgid "Add another post"
msgstr ""
@@ -557,7 +499,7 @@ msgstr ""
msgid "Add muted words and tags"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1242
+#: src/view/com/composer/Composer.tsx:1257
msgid "Add new post"
msgstr ""
@@ -578,7 +520,7 @@ msgstr ""
msgid "Add the default feed of only people you follow"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:389
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:387
msgid "Add the following DNS record to your domain:"
msgstr ""
@@ -586,8 +528,8 @@ msgstr ""
msgid "Add this feed to your feeds"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:243
-#: src/view/com/profile/ProfileMenu.tsx:246
+#: src/view/com/profile/ProfileMenu.tsx:253
+#: src/view/com/profile/ProfileMenu.tsx:256
msgid "Add to Lists"
msgstr ""
@@ -615,7 +557,7 @@ msgstr ""
msgid "Adult Content"
msgstr ""
-#: src/screens/Moderation/index.tsx:339
+#: src/screens/Moderation/index.tsx:355
msgid "Adult content can only be enabled via the Web at <0>bsky.app0>."
msgstr ""
@@ -628,14 +570,10 @@ msgstr ""
msgid "Adult Content labels"
msgstr ""
-#: src/screens/Moderation/index.tsx:383
+#: src/screens/Moderation/index.tsx:399
msgid "Advanced"
msgstr ""
-#: src/state/shell/progress-guide.tsx:171
-#~ msgid "Algorithm training complete!"
-#~ msgstr ""
-
#: src/view/screens/Notifications.tsx:86
msgid "All"
msgstr ""
@@ -644,6 +582,12 @@ msgstr ""
msgid "All accounts have been followed!"
msgstr ""
+#: src/view/screens/Search/Search.tsx:361
+#: src/view/screens/Search/Search.tsx:399
+#: src/view/screens/Search/Search.tsx:401
+msgid "All languages"
+msgstr ""
+
#: src/view/screens/Feeds.tsx:702
msgid "All the feeds you've saved, right in one place."
msgstr ""
@@ -658,11 +602,11 @@ msgstr ""
msgid "Allow new messages from"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:314
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:343
msgid "Allow quote posts"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:359
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:388
msgid "Allow replies from:"
msgstr ""
@@ -732,15 +676,15 @@ msgstr ""
msgid "An error occurred while compressing the video."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:333
+#: src/components/StarterPack/ProfileStarterPacks.tsx:332
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr ""
-#: src/view/com/util/post-embeds/VideoEmbed.tsx:133
+#: src/view/com/util/post-embeds/VideoEmbed.tsx:160
msgid "An error occurred while loading the video. Please try again later."
msgstr ""
-#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:176
+#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:198
msgid "An error occurred while loading the video. Please try again."
msgstr ""
@@ -776,10 +720,10 @@ msgstr ""
#: src/components/hooks/useFollowMethods.ts:35
#: src/components/hooks/useFollowMethods.ts:50
-#: src/components/ProfileCard.tsx:330
-#: src/components/ProfileCard.tsx:351
-#: src/view/com/profile/FollowButton.tsx:35
-#: src/view/com/profile/FollowButton.tsx:45
+#: src/components/ProfileCard.tsx:333
+#: src/components/ProfileCard.tsx:354
+#: src/view/com/profile/FollowButton.tsx:38
+#: src/view/com/profile/FollowButton.tsx:48
msgid "An issue occurred, please try again."
msgstr ""
@@ -792,7 +736,7 @@ msgstr ""
msgid "an unknown labeler"
msgstr ""
-#: src/components/WhoCanReply.tsx:295
+#: src/components/WhoCanReply.tsx:313
msgid "and"
msgstr ""
@@ -809,16 +753,11 @@ msgstr ""
msgid "Anti-Social Behavior"
msgstr ""
-#: src/view/screens/Search/Search.tsx:336
-#: src/view/screens/Search/Search.tsx:337
-msgid "Any language"
-msgstr ""
-
#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:48
msgid "Anybody can interact"
msgstr ""
-#: src/Navigation.tsx:371
+#: src/Navigation.tsx:381
#: src/screens/Settings/AppIconSettings/index.tsx:67
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23
@@ -845,28 +784,16 @@ msgstr ""
msgid "App password names can only contain letters, numbers, spaces, dashes, and underscores"
msgstr ""
-#: src/view/com/modals/AddAppPasswords.tsx:138
-#~ msgid "App Password names can only contain letters, numbers, spaces, dashes, and underscores."
-#~ msgstr ""
-
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:80
msgid "App password names must be at least 4 characters long"
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/screens/Settings/PrivacyAndSecuritySettings.tsx:63
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:66
msgid "App passwords"
msgstr ""
-#: src/Navigation.tsx:291
+#: src/Navigation.tsx:301
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr ""
@@ -885,6 +812,15 @@ msgstr ""
msgid "Appeal submitted"
msgstr ""
+#: src/screens/Takendown.tsx:111
+#: src/screens/Takendown.tsx:144
+msgid "Appeal suspension"
+msgstr ""
+
+#: src/screens/Takendown.tsx:114
+msgid "Appeal Suspension"
+msgstr ""
+
#: src/screens/Messages/components/ChatDisabled.tsx:51
#: src/screens/Messages/components/ChatDisabled.tsx:53
#: src/screens/Messages/components/ChatDisabled.tsx:99
@@ -892,32 +828,24 @@ msgstr ""
msgid "Appeal this decision"
msgstr ""
-#: src/Navigation.tsx:331
+#: src/Navigation.tsx:341
#: src/screens/Settings/AppearanceSettings.tsx:85
#: src/screens/Settings/Settings.tsx:183
#: src/screens/Settings/Settings.tsx:186
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/com/post-thread/PostThreadItem.tsx:834
+#: src/view/com/post-thread/PostThreadItem.tsx:839
msgid "Archived from {0}"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:803
-#: src/view/com/post-thread/PostThreadItem.tsx:842
+#: src/view/com/post-thread/PostThreadItem.tsx:808
+#: src/view/com/post-thread/PostThreadItem.tsx:847
msgid "Archived post"
msgstr ""
@@ -925,11 +853,7 @@ msgstr ""
msgid "Are you sure you want to delete the app password \"{0}\"?"
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
+#: src/components/dms/MessageMenu.tsx:150
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant."
msgstr ""
@@ -941,7 +865,7 @@ msgstr ""
msgid "Are you sure you want to discard your changes?"
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:47
+#: src/components/dms/LeaveConvoPrompt.tsx:42
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr ""
@@ -953,11 +877,11 @@ msgstr ""
msgid "Are you sure you want to remove this from your feeds?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:679
+#: src/view/com/composer/Composer.tsx:694
msgid "Are you sure you'd like to discard this draft?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:853
+#: src/view/com/composer/Composer.tsx:868
msgid "Are you sure you'd like to discard this post?"
msgstr ""
@@ -965,8 +889,8 @@ msgstr ""
msgid "Are you sure?"
msgstr ""
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:61
-msgid "Are you writing in <0>{0}0>?"
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:69
+msgid "Are you writing in <0>{suggestedLanguageName}0>?"
msgstr ""
#: src/screens/Onboarding/index.tsx:23
@@ -978,7 +902,7 @@ msgstr ""
msgid "Artistic or non-erotic nudity."
msgstr ""
-#: src/screens/Signup/StepHandle.tsx:173
+#: src/screens/Signup/StepHandle.tsx:180
msgid "At least 3 characters"
msgstr ""
@@ -986,22 +910,22 @@ msgstr ""
msgid "Autoplay options have moved to the <0>Content and Media settings0>."
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:106
-#: src/screens/Settings/ContentAndMediaSettings.tsx:112
+#: src/screens/Settings/ContentAndMediaSettings.tsx:107
+#: src/screens/Settings/ContentAndMediaSettings.tsx:113
msgid "Autoplay videos and GIFs"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:74
+#: src/components/dms/MessagesListHeader.tsx:81
#: 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:292
-#: src/screens/Login/LoginForm.tsx:298
-#: src/screens/Login/SetNewPasswordForm.tsx:154
+#: src/screens/Login/LoginForm.tsx:300
+#: src/screens/Login/LoginForm.tsx:306
#: src/screens/Login/SetNewPasswordForm.tsx:160
+#: src/screens/Login/SetNewPasswordForm.tsx:166
#: src/screens/Messages/components/ChatDisabled.tsx:133
#: src/screens/Messages/components/ChatDisabled.tsx:134
#: src/screens/Profile/Header/Shell.tsx:115
@@ -1010,62 +934,55 @@ msgstr ""
msgid "Back"
msgstr ""
-#: src/view/screens/Settings/index.tsx:442
-#~ msgid "Basics"
-#~ msgstr ""
-
#: src/view/screens/Lists.tsx:81
#: src/view/screens/ModerationModlists.tsx:81
msgid "Before creating a list, you must first verify your email."
msgstr ""
-#: src/view/com/composer/Composer.tsx:606
+#: src/view/com/composer/Composer.tsx:621
msgid "Before creating a post, you must first verify your email."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:340
+#: src/components/StarterPack/ProfileStarterPacks.tsx:339
msgid "Before creating a starter pack, you must first verify your email."
msgstr ""
#: src/components/dms/dialogs/NewChatDialog.tsx:79
#: src/components/dms/MessageProfileButton.tsx:89
-#: src/screens/Messages/Conversation.tsx:209
+#: src/screens/Messages/Conversation.tsx:204
msgid "Before you may message another user, you must first verify your email."
msgstr ""
#: src/screens/Search/components/ExploreTrendingTopics.tsx:74
+#: src/screens/Search/components/ExploreTrendingVideos.tsx:111
msgid "BETA"
msgstr ""
-#: src/components/dialogs/BirthDateSettings.tsx:106
+#: src/components/dialogs/BirthDateSettings.tsx:102
#: src/screens/Settings/AccountSettings.tsx:109
msgid "Birthday"
msgstr ""
-#: src/view/screens/Settings/index.tsx:348
-#~ msgid "Birthday:"
-#~ msgstr ""
-
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:341
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:744
+#: src/view/com/profile/ProfileMenu.tsx:376
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:776
msgid "Block"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:188
-#: src/components/dms/ConvoMenu.tsx:192
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:603
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:605
+#: src/components/dms/ConvoMenu.tsx:250
+#: src/components/dms/ConvoMenu.tsx:253
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:613
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:615
msgid "Block account"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:280
-#: src/view/com/profile/ProfileMenu.tsx:287
+#: src/view/com/profile/ProfileMenu.tsx:290
+#: src/view/com/profile/ProfileMenu.tsx:297
msgid "Block Account"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:324
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:739
+#: src/view/com/profile/ProfileMenu.tsx:359
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:771
msgid "Block Account?"
msgstr ""
@@ -1073,6 +990,14 @@ msgstr ""
msgid "Block accounts"
msgstr ""
+#: src/components/dms/ReportDialog.tsx:325
+msgid "Block and Delete"
+msgstr ""
+
+#: src/components/dms/ReportDialog.tsx:343
+msgid "Block and/or delete this conversation"
+msgstr ""
+
#: src/view/screens/ProfileList.tsx:760
msgid "Block list"
msgstr ""
@@ -1081,21 +1006,30 @@ msgstr ""
msgid "Block these accounts?"
msgstr ""
+#: src/components/dms/ReportDialog.tsx:347
+#: src/components/dms/ReportDialog.tsx:350
+msgid "Block user"
+msgstr ""
+
+#: src/components/dms/ReportDialog.tsx:329
+msgid "Block User"
+msgstr ""
+
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:83
msgid "Blocked"
msgstr ""
-#: src/screens/Moderation/index.tsx:253
+#: src/screens/Moderation/index.tsx:269
msgid "Blocked accounts"
msgstr ""
-#: src/Navigation.tsx:155
+#: src/Navigation.tsx:157
#: src/view/screens/ModerationBlockedAccounts.tsx:101
msgid "Blocked Accounts"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:336
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:741
+#: src/view/com/profile/ProfileMenu.tsx:371
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:773
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr ""
@@ -1115,7 +1049,7 @@ msgstr ""
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
+#: src/view/com/profile/ProfileMenu.tsx:368
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 ""
@@ -1123,25 +1057,33 @@ msgstr ""
msgid "Blog"
msgstr ""
-#: src/view/com/auth/server-input/index.tsx:86
-#: src/view/com/auth/server-input/index.tsx:88
+#: src/view/com/auth/server-input/index.tsx:132
+#: src/view/com/auth/server-input/index.tsx:133
msgid "Bluesky"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:859
+#: src/view/com/post-thread/PostThreadItem.tsx:864
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr ""
-#: src/view/com/auth/server-input/index.tsx:151
+#: src/view/com/auth/server-input/index.tsx:208
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/view/com/auth/server-input/index.tsx:145
+msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option."
+msgstr ""
+
#: src/components/ProgressGuide/List.tsx:53
#: src/components/ProgressGuide/List.tsx:70
msgid "Bluesky is better with friends!"
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:300
+#: src/screens/Takendown.tsx:217
+msgid "Bluesky Social Terms of Service"
+msgstr ""
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:299
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr ""
@@ -1170,23 +1112,23 @@ msgstr ""
msgid "Books"
msgstr ""
-#: src/components/FeedInterstitials.tsx:348
+#: src/components/FeedInterstitials.tsx:370
msgid "Browse more accounts on the Explore page"
msgstr ""
-#: src/components/FeedInterstitials.tsx:481
+#: src/components/FeedInterstitials.tsx:507
msgid "Browse more feeds on the Explore page"
msgstr ""
-#: src/components/FeedInterstitials.tsx:330
-#: src/components/FeedInterstitials.tsx:333
-#: src/components/FeedInterstitials.tsx:463
-#: src/components/FeedInterstitials.tsx:466
+#: src/components/FeedInterstitials.tsx:351
+#: src/components/FeedInterstitials.tsx:354
+#: src/components/FeedInterstitials.tsx:488
+#: src/components/FeedInterstitials.tsx:491
msgid "Browse more suggestions"
msgstr ""
-#: src/components/FeedInterstitials.tsx:356
-#: src/components/FeedInterstitials.tsx:490
+#: src/components/FeedInterstitials.tsx:378
+#: src/components/FeedInterstitials.tsx:516
msgid "Browse more suggestions on the Explore page"
msgstr ""
@@ -1195,15 +1137,19 @@ msgstr ""
msgid "Browse other feeds"
msgstr ""
-#: src/components/TrendingTopics.tsx:176
+#: src/components/TrendingTopics.tsx:178
msgid "Browse posts about {displayName}"
msgstr ""
-#: src/components/TrendingTopics.tsx:184
+#: src/components/TrendingTopics.tsx:186
msgid "Browse posts tagged with {displayName}"
msgstr ""
-#: src/components/TrendingTopics.tsx:222
+#: src/components/TrendingTopics.tsx:195
+msgid "Browse starter pack {displayName}"
+msgstr ""
+
+#: src/components/TrendingTopics.tsx:232
msgid "Browse topic {displayName}"
msgstr ""
@@ -1211,18 +1157,10 @@ msgstr ""
msgid "Business"
msgstr ""
-#: src/view/com/profile/ProfileSubpageHeader.tsx:193
-#~ msgid "by —"
-#~ msgstr ""
-
#: src/components/LabelingServiceCard/index.tsx:62
msgid "By {0}"
msgstr ""
-#: src/view/com/profile/ProfileSubpageHeader.tsx:197
-#~ msgid "by <0/>"
-#~ msgstr ""
-
#: src/screens/Profile/components/ProfileFeedHeader.tsx:447
msgid "By <0>{0}0>"
msgstr ""
@@ -1239,22 +1177,13 @@ msgstr ""
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr ""
-#: src/view/com/profile/ProfileSubpageHeader.tsx:195
-#~ 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:297
+#: src/components/Menu/index.tsx:304
#: src/components/Prompt.tsx:129
#: src/components/Prompt.tsx:131
-#: src/components/TagMenu/index.tsx:283
#: src/screens/Deactivated.tsx:157
#: src/screens/Profile/Header/EditProfileDialog.tsx:220
#: src/screens/Profile/Header/EditProfileDialog.tsx:228
@@ -1263,7 +1192,9 @@ msgstr ""
#: src/screens/Settings/components/ChangeHandleDialog.tsx:76
#: src/screens/Settings/components/ChangeHandleDialog.tsx:83
#: src/screens/Settings/Settings.tsx:260
-#: src/view/com/composer/Composer.tsx:916
+#: src/screens/Takendown.tsx:99
+#: src/screens/Takendown.tsx:102
+#: src/view/com/composer/Composer.tsx:931
#: src/view/com/modals/ChangeEmail.tsx:213
#: src/view/com/modals/ChangeEmail.tsx:215
#: src/view/com/modals/ChangePassword.tsx:268
@@ -1278,7 +1209,8 @@ msgstr ""
#: src/view/com/modals/VerifyEmail.tsx:255
#: src/view/com/modals/VerifyEmail.tsx:261
#: src/view/com/util/post-ctrls/RepostButton.tsx:213
-#: src/view/screens/Search/Search.tsx:894
+#: src/view/screens/Search/Search.tsx:846
+#: src/view/shell/desktop/LeftNav.tsx:209
msgid "Cancel"
msgstr ""
@@ -1294,10 +1226,6 @@ msgstr ""
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 ""
@@ -1315,7 +1243,7 @@ msgid "Cancel reactivation and log out"
msgstr ""
#: src/view/com/modals/ListAddRemoveUsers.tsx:88
-#: src/view/screens/Search/Search.tsx:886
+#: src/view/screens/Search/Search.tsx:838
msgid "Cancel search"
msgstr ""
@@ -1324,9 +1252,9 @@ msgid "Cancels opening the linked website"
msgstr ""
#: src/state/shell/composer/index.tsx:83
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:117
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:158
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:194
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:127
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:168
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:204
msgid "Cannot interact with a blocked user"
msgstr ""
@@ -1343,11 +1271,6 @@ msgstr ""
msgid "Change"
msgstr ""
-#: src/view/screens/Settings/index.tsx:342
-#~ msgctxt "action"
-#~ msgid "Change"
-#~ msgstr ""
-
#: src/screens/Settings/AppIconSettings/index.tsx:39
msgid "Change app icon"
msgstr ""
@@ -1367,10 +1290,6 @@ msgstr ""
msgid "Change email address"
msgstr ""
-#: src/view/screens/Settings/index.tsx:685
-#~ msgid "Change handle"
-#~ msgstr ""
-
#: src/screens/Settings/components/ChangeHandleDialog.tsx:92
#: src/screens/Settings/components/ChangeHandleDialog.tsx:96
msgid "Change Handle"
@@ -1380,16 +1299,12 @@ msgstr ""
msgid "Change my email"
msgstr ""
-#: src/view/screens/Settings/index.tsx:730
-#~ msgid "Change password"
-#~ msgstr ""
-
#: src/view/com/modals/ChangePassword.tsx:142
msgid "Change Password"
msgstr ""
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:74
-msgid "Change post language to {0}"
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:82
+msgid "Change post language to {suggestedLanguageName}"
msgstr ""
#: src/view/com/modals/ChangeEmail.tsx:104
@@ -1400,21 +1315,30 @@ msgstr ""
msgid "Change your email address"
msgstr ""
-#: src/Navigation.tsx:388
-#: src/view/shell/bottom-bar/BottomBar.tsx:205
-#: src/view/shell/desktop/LeftNav.tsx:335
-#: src/view/shell/Drawer.tsx:417
+#: src/screens/Settings/AppIconSettings/index.tsx:216
+msgid "Changes app icon"
+msgstr ""
+
+#: src/components/forms/HostingProvider.tsx:50
+#: src/components/forms/HostingProvider.tsx:66
+msgid "Changes hosting provider"
+msgstr ""
+
+#: src/Navigation.tsx:398
+#: src/view/shell/bottom-bar/BottomBar.tsx:204
+#: src/view/shell/desktop/LeftNav.tsx:533
+#: src/view/shell/Drawer.tsx:422
msgid "Chat"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:82
+#: src/components/dms/ConvoMenu.tsx:179
msgid "Chat muted"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:112
+#: src/components/dms/ConvoMenu.tsx:78
#: src/components/dms/MessageMenu.tsx:81
-#: src/Navigation.tsx:393
-#: src/screens/Messages/ChatList.tsx:246
+#: src/Navigation.tsx:403
+#: src/screens/Messages/ChatList.tsx:253
msgid "Chat settings"
msgstr ""
@@ -1422,7 +1346,7 @@ msgstr ""
msgid "Chat Settings"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:84
+#: src/components/dms/ConvoMenu.tsx:181
msgid "Chat unmuted"
msgstr ""
@@ -1431,7 +1355,7 @@ msgstr ""
msgid "Check my status"
msgstr ""
-#: src/screens/Login/LoginForm.tsx:285
+#: src/screens/Login/LoginForm.tsx:293
msgid "Check your email for a login code and enter it here."
msgstr ""
@@ -1439,7 +1363,7 @@ msgstr ""
msgid "Check your inbox for an email with the confirmation code to enter below:"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:372
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
msgid "Choose domain verification method"
msgstr ""
@@ -1447,7 +1371,7 @@ msgstr ""
msgid "Choose Feeds"
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:308
+#: src/components/StarterPack/ProfileStarterPacks.tsx:307
msgid "Choose for me"
msgstr ""
@@ -1459,11 +1383,7 @@ msgstr ""
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:287
msgid "Choose the algorithms that power your custom feeds."
msgstr ""
@@ -1471,12 +1391,16 @@ msgstr ""
msgid "Choose this color as your avatar"
msgstr ""
+#: src/view/com/auth/server-input/index.tsx:126
+msgid "Choose your account provider"
+msgstr ""
+
#: src/view/screens/Feeds.tsx:728
-#: src/view/screens/Search/Explore.tsx:411
+#: src/view/screens/Search/Explore.tsx:427
msgid "Choose your own timeline! Feeds built by the community help you find content you love."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:201
+#: src/screens/Signup/StepInfo/index.tsx:195
msgid "Choose your password"
msgstr ""
@@ -1484,11 +1408,11 @@ msgstr ""
msgid "Choose your username"
msgstr ""
-#: src/screens/Settings/Settings.tsx:350
+#: src/screens/Settings/Settings.tsx:351
msgid "Clear all storage data"
msgstr ""
-#: src/screens/Settings/Settings.tsx:352
+#: src/screens/Settings/Settings.tsx:353
msgid "Clear all storage data (restart after this)"
msgstr ""
@@ -1496,34 +1420,22 @@ msgstr ""
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:217
-#~ 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:307
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:336
msgid "Click to disable quote posts of this post."
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:308
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337
msgid "Click to enable quote posts of this post."
msgstr ""
+#: src/components/RichTextTag.tsx:54
+msgid "Click to open tag menu for {tag}"
+msgstr ""
+
#: src/components/dms/MessageItem.tsx:241
msgid "Click to retry failed message"
msgstr ""
@@ -1539,6 +1451,8 @@ msgstr ""
#: src/components/dialogs/GifSelect.tsx:281
#: src/components/dialogs/VerifyEmailDialog.tsx:289
#: src/components/dms/dialogs/SearchablePeopleList.tsx:265
+#: src/components/dms/ReportDialog.tsx:372
+#: src/components/dms/ReportDialog.tsx:381
#: src/components/NewskieDialog.tsx:146
#: src/components/NewskieDialog.tsx:153
#: src/components/ProgressGuide/FollowDialog.tsx:429
@@ -1550,8 +1464,8 @@ msgstr ""
msgid "Close"
msgstr ""
-#: src/components/Dialog/index.web.tsx:110
-#: src/components/Dialog/index.web.tsx:252
+#: src/components/Dialog/index.web.tsx:111
+#: src/components/Dialog/index.web.tsx:253
msgid "Close active dialog"
msgstr ""
@@ -1567,6 +1481,10 @@ msgstr ""
msgid "Close dialog"
msgstr ""
+#: src/view/shell/index.web.tsx:83
+msgid "Close drawer menu"
+msgstr ""
+
#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
msgid "Close emoji picker"
@@ -1584,26 +1502,18 @@ msgstr ""
msgid "Close image viewer"
msgstr ""
-#: src/view/shell/index.web.tsx:69
-msgid "Close navigation footer"
-msgstr ""
-
-#: src/components/Menu/index.tsx:291
-#: src/components/TagMenu/index.tsx:277
+#: src/components/Menu/index.tsx:298
msgid "Close this dialog"
msgstr ""
-#: src/view/shell/index.web.tsx:70
-msgid "Closes bottom navigation bar"
-msgstr ""
-
#: src/screens/Login/PasswordUpdatedForm.tsx:32
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/composer/text-input/web/EmojiPicker.web.tsx:138
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:174
+msgid "Closes the emoji picker"
+msgstr ""
#: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:32
msgid "Closes viewer for header image"
@@ -1631,12 +1541,12 @@ msgstr ""
msgid "Comics"
msgstr ""
-#: src/Navigation.tsx:281
+#: src/Navigation.tsx:291
#: src/view/screens/CommunityGuidelines.tsx:34
msgid "Community Guidelines"
msgstr ""
-#: src/screens/Onboarding/StepFinished.tsx:293
+#: src/screens/Onboarding/StepFinished.tsx:300
msgid "Complete onboarding and start using your account"
msgstr ""
@@ -1644,11 +1554,11 @@ msgstr ""
msgid "Complete the challenge"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:301
+#: src/view/shell/desktop/LeftNav.tsx:499
msgid "Compose new post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:819
+#: src/view/com/composer/Composer.tsx:834
msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length"
msgstr ""
@@ -1656,7 +1566,7 @@ msgstr ""
msgid "Compose reply"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1635
+#: src/view/com/composer/Composer.tsx:1651
msgid "Compressing video..."
msgstr ""
@@ -1693,16 +1603,16 @@ msgstr ""
msgid "Confirm delete account"
msgstr ""
-#: src/screens/Moderation/index.tsx:287
+#: src/screens/Moderation/index.tsx:303
msgid "Confirm your age:"
msgstr ""
-#: src/screens/Moderation/index.tsx:278
+#: src/screens/Moderation/index.tsx:294
msgid "Confirm your birthdate"
msgstr ""
#: src/components/dialogs/VerifyEmailDialog.tsx:214
-#: src/screens/Login/LoginForm.tsx:258
+#: src/screens/Login/LoginForm.tsx:266
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:144
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:150
#: src/view/com/modals/ChangeEmail.tsx:152
@@ -1716,7 +1626,7 @@ msgstr ""
msgid "Confirmation Code"
msgstr ""
-#: src/screens/Login/LoginForm.tsx:319
+#: src/screens/Login/LoginForm.tsx:327
msgid "Connecting..."
msgstr ""
@@ -1725,7 +1635,7 @@ msgstr ""
msgid "Contact support"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:49
+#: src/screens/Settings/ContentAndMediaSettings.tsx:50
msgid "Content & Media"
msgstr ""
@@ -1735,7 +1645,7 @@ msgstr ""
msgid "Content and media"
msgstr ""
-#: src/Navigation.tsx:355
+#: src/Navigation.tsx:365
msgid "Content and Media"
msgstr ""
@@ -1743,12 +1653,16 @@ msgstr ""
msgid "Content Blocked"
msgstr ""
-#: src/screens/Moderation/index.tsx:271
+#: src/screens/Moderation/index.tsx:287
msgid "Content filters"
msgstr ""
+#: src/screens/Search/components/ExploreRecommendations.tsx:57
+msgid "Content from across the network we think you might like."
+msgstr ""
+
#: src/screens/Settings/LanguageSettings.tsx:251
-#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:75
+#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:76
msgid "Content Languages"
msgstr ""
@@ -1768,7 +1682,7 @@ msgstr ""
msgid "Content warnings"
msgstr ""
-#: src/components/Menu/index.web.tsx:82
+#: src/components/Menu/index.web.tsx:83
msgid "Context menu backdrop, click to close the menu."
msgstr ""
@@ -1781,7 +1695,7 @@ msgstr ""
msgid "Continue as {0} (currently signed in)"
msgstr ""
-#: src/view/com/post-thread/PostThreadLoadMore.tsx:52
+#: src/view/com/post-thread/PostThreadLoadMore.tsx:60
msgid "Continue thread..."
msgstr ""
@@ -1791,7 +1705,7 @@ msgstr ""
msgid "Continue to next step"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:164
+#: src/screens/Messages/components/ChatListItem.tsx:179
msgid "Conversation deleted"
msgstr ""
@@ -1803,15 +1717,16 @@ msgstr ""
msgid "Copied"
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:73
+#: src/screens/Settings/AboutSettings.tsx:84
msgid "Copied build version to clipboard"
msgstr ""
#: src/components/dms/MessageMenu.tsx:57
#: src/lib/sharing.ts:25
+#: src/lib/sharing.ts:41
#: src/view/com/modals/InviteCodes.tsx:153
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:235
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:393
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:237
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:403
msgid "Copied to clipboard"
msgstr ""
@@ -1820,24 +1735,26 @@ msgstr ""
msgid "Copied!"
msgstr ""
-#: src/view/com/modals/AddAppPasswords.tsx:215
-#~ msgid "Copies app password"
-#~ msgstr ""
+#: src/screens/Settings/AboutSettings.tsx:70
+msgid "Copies build version to clipboard"
+msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:175
msgid "Copy"
msgstr ""
-#: src/view/com/modals/ChangeHandle.tsx:467
-#~ msgid "Copy {0}"
-#~ msgstr ""
-
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:196
msgid "Copy App Password"
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:68
-msgid "Copy build version to clipboard"
+#: src/view/com/profile/ProfileMenu.tsx:327
+#: src/view/com/profile/ProfileMenu.tsx:330
+msgid "Copy at:// URI"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:674
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:676
+msgid "Copy author DID"
msgstr ""
#: src/components/dialogs/Embed.tsx:122
@@ -1845,11 +1762,13 @@ msgstr ""
msgid "Copy code"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:474
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
+#: src/view/com/profile/ProfileMenu.tsx:336
+#: src/view/com/profile/ProfileMenu.tsx:339
msgid "Copy DID"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:407
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:405
msgid "Copy host"
msgstr ""
@@ -1865,8 +1784,8 @@ msgstr ""
msgid "Copy link to list"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:434
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:443
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:444
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:453
msgid "Copy link to post"
msgstr ""
@@ -1875,8 +1794,13 @@ msgstr ""
msgid "Copy message text"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:412
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:414
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:667
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:669
+msgid "Copy post at:// URI"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:422
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:424
msgid "Copy post text"
msgstr ""
@@ -1884,20 +1808,21 @@ msgstr ""
msgid "Copy QR code"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:428
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:426
msgid "Copy TXT record value"
msgstr ""
-#: src/Navigation.tsx:286
+#: src/Navigation.tsx:296
#: src/view/screens/CopyrightPolicy.tsx:31
msgid "Copyright Policy"
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:38
+#: src/components/dms/LeaveConvoPrompt.tsx:33
+#: src/components/dms/ReportDialog.tsx:308
msgid "Could not leave chat"
msgstr ""
-#: src/screens/Profile/ProfileFeed/index.tsx:73
+#: src/screens/Profile/ProfileFeed/index.tsx:80
msgid "Could not load feed"
msgstr ""
@@ -1905,7 +1830,7 @@ msgstr ""
msgid "Could not load list"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:88
+#: src/components/dms/ConvoMenu.tsx:185
msgid "Could not mute chat"
msgstr ""
@@ -1913,30 +1838,32 @@ msgstr ""
msgid "Could not process your video"
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:290
+#: src/components/StarterPack/ProfileStarterPacks.tsx:289
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:168
-#: src/components/StarterPack/ProfileStarterPacks.tsx:271
-#: src/Navigation.tsx:418
+#: src/components/StarterPack/ProfileStarterPacks.tsx:167
+#: src/components/StarterPack/ProfileStarterPacks.tsx:270
+#: src/Navigation.tsx:428
msgid "Create a starter pack"
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:252
+#: src/components/StarterPack/ProfileStarterPacks.tsx:251
msgid "Create a starter pack for me"
msgstr ""
#: src/view/com/auth/SplashScreen.tsx:55
#: src/view/com/auth/SplashScreen.web.tsx:117
+#: src/view/shell/bottom-bar/BottomBar.tsx:304
+#: src/view/shell/bottom-bar/BottomBar.tsx:309
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:202
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:207
+#: src/view/shell/NavSignupCard.tsx:47
+#: src/view/shell/NavSignupCard.tsx:52
msgid "Create account"
msgstr ""
@@ -1953,20 +1880,16 @@ msgstr ""
msgid "Create an avatar instead"
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:175
+#: src/components/StarterPack/ProfileStarterPacks.tsx:174
msgid "Create another"
msgstr ""
-#: src/view/com/modals/AddAppPasswords.tsx:243
-#~ msgid "Create App Password"
-#~ msgstr ""
-
#: src/view/com/auth/SplashScreen.tsx:47
#: src/view/com/auth/SplashScreen.web.tsx:109
msgid "Create new account"
msgstr ""
-#: src/components/ReportDialog/SelectReportOptionView.tsx:101
+#: src/components/ReportDialog/SelectReportOptionView.tsx:99
msgid "Create report for {0}"
msgstr ""
@@ -1983,34 +1906,25 @@ msgstr ""
msgid "Culture"
msgstr ""
-#: src/view/com/auth/server-input/index.tsx:94
-#: src/view/com/auth/server-input/index.tsx:96
+#: src/view/com/auth/server-input/index.tsx:138
+#: src/view/com/auth/server-input/index.tsx:139
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:292
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:102
msgid "Customize who can interact with this post."
msgstr ""
+#: src/screens/Onboarding/Layout.tsx:56
+msgid "Customizes your Bluesky experience"
+msgstr ""
+
#: src/screens/Settings/AppearanceSettings.tsx:105
#: src/screens/Settings/AppearanceSettings.tsx:126
msgid "Dark"
msgstr ""
-#: src/view/screens/Debug.tsx:70
+#: src/view/screens/Debug.tsx:69
msgid "Dark mode"
msgstr ""
@@ -2018,7 +1932,7 @@ msgstr ""
msgid "Dark theme"
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:222
+#: src/screens/Signup/StepInfo/index.tsx:216
msgid "Date of birth"
msgstr ""
@@ -2028,15 +1942,11 @@ msgstr ""
msgid "Deactivate account"
msgstr ""
-#: src/view/screens/Settings/index.tsx:785
-#~ msgid "Deactivate my account"
-#~ msgstr ""
-
-#: src/screens/Settings/Settings.tsx:331
+#: src/screens/Settings/Settings.tsx:332
msgid "Debug Moderation"
msgstr ""
-#: src/view/screens/Debug.tsx:90
+#: src/view/screens/Debug.tsx:89
msgid "Debug panel"
msgstr ""
@@ -2048,12 +1958,12 @@ msgstr ""
msgid "Default icons"
msgstr ""
-#: src/components/dms/MessageMenu.tsx:151
+#: src/components/dms/MessageMenu.tsx:152
#: src/screens/Settings/AppPasswords.tsx:212
#: src/screens/StarterPack/StarterPackScreen.tsx:586
#: src/screens/StarterPack/StarterPackScreen.tsx:665
#: src/screens/StarterPack/StarterPackScreen.tsx:745
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:661
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:693
#: src/view/screens/ProfileList.tsx:739
msgid "Delete"
msgstr ""
@@ -2075,10 +1985,19 @@ msgstr ""
msgid "Delete app password?"
msgstr ""
-#: src/screens/Settings/Settings.tsx:338
+#: src/screens/Settings/Settings.tsx:339
msgid "Delete chat declaration record"
msgstr ""
+#: src/components/dms/ReportDialog.tsx:353
+#: src/components/dms/ReportDialog.tsx:356
+msgid "Delete conversation"
+msgstr ""
+
+#: src/components/dms/ReportDialog.tsx:327
+msgid "Delete Conversation"
+msgstr ""
+
#: src/components/dms/MessageMenu.tsx:124
msgid "Delete for me"
msgstr ""
@@ -2087,7 +2006,7 @@ msgstr ""
msgid "Delete List"
msgstr ""
-#: src/components/dms/MessageMenu.tsx:147
+#: src/components/dms/MessageMenu.tsx:148
msgid "Delete message"
msgstr ""
@@ -2099,13 +2018,9 @@ msgstr ""
msgid "Delete my account"
msgstr ""
-#: src/view/screens/Settings/index.tsx:807
-#~ msgid "Delete My Account…"
-#~ msgstr ""
-
-#: src/view/com/composer/Composer.tsx:827
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:642
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:644
+#: src/view/com/composer/Composer.tsx:842
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:652
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:654
msgid "Delete post"
msgstr ""
@@ -2122,7 +2037,7 @@ msgstr ""
msgid "Delete this list?"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:656
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:688
msgid "Delete this post?"
msgstr ""
@@ -2130,8 +2045,8 @@ msgstr ""
msgid "Deleted"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:148
-#: src/screens/Messages/components/ChatListItem.tsx:107
+#: src/components/dms/MessagesListHeader.tsx:154
+#: src/screens/Messages/components/ChatListItem.tsx:113
msgid "Deleted Account"
msgstr ""
@@ -2139,10 +2054,6 @@ msgstr ""
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
@@ -2164,15 +2075,23 @@ msgstr ""
msgid "Descriptive alt text"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:566
#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:576
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:586
msgid "Detach quote"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:719
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:751
msgid "Detach quote post?"
msgstr ""
+#: src/screens/Settings/AboutSettings.tsx:77
+msgid "Developer mode disabled"
+msgstr ""
+
+#: src/screens/Settings/AboutSettings.tsx:76
+msgid "Developer mode enabled"
+msgstr ""
+
#: src/screens/Settings/Settings.tsx:242
#: src/screens/Settings/Settings.tsx:245
msgid "Developer options"
@@ -2182,18 +2101,10 @@ msgstr ""
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:122
msgid "Dim"
msgstr ""
-#: src/view/screens/AccessibilitySettings.tsx:109
-#~ msgid "Disable autoplay for videos and GIFs"
-#~ msgstr ""
-
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:89
msgid "Disable Email 2FA"
msgstr ""
@@ -2212,13 +2123,13 @@ msgstr ""
#: src/lib/moderation/useLabelBehaviorDescription.ts:68
#: src/screens/Messages/Settings.tsx:139
#: src/screens/Messages/Settings.tsx:142
-#: src/screens/Moderation/index.tsx:329
+#: src/screens/Moderation/index.tsx:345
msgid "Disabled"
msgstr ""
#: src/screens/Profile/Header/EditProfileDialog.tsx:84
-#: src/view/com/composer/Composer.tsx:681
-#: src/view/com/composer/Composer.tsx:860
+#: src/view/com/composer/Composer.tsx:696
+#: src/view/com/composer/Composer.tsx:875
msgid "Discard"
msgstr ""
@@ -2226,11 +2137,11 @@ msgstr ""
msgid "Discard changes?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:678
+#: src/view/com/composer/Composer.tsx:693
msgid "Discard draft?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:852
+#: src/view/com/composer/Composer.tsx:867
msgid "Discard post?"
msgstr ""
@@ -2244,7 +2155,7 @@ msgstr ""
msgid "Discover new custom feeds"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:409
+#: src/view/screens/Search/Explore.tsx:425
msgid "Discover new feeds"
msgstr ""
@@ -2252,11 +2163,11 @@ msgstr ""
msgid "Discover New Feeds"
msgstr ""
-#: src/components/Dialog/index.tsx:311
+#: src/components/Dialog/index.tsx:313
msgid "Dismiss"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1559
+#: src/view/com/composer/Composer.tsx:1575
msgid "Dismiss error"
msgstr ""
@@ -2264,6 +2175,10 @@ msgstr ""
msgid "Dismiss getting started guide"
msgstr ""
+#: src/components/interstitials/TrendingVideos.tsx:92
+msgid "Dismiss this section"
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:71
#: src/screens/Settings/AccessibilitySettings.tsx:76
msgid "Display larger alt text badges"
@@ -2288,8 +2203,8 @@ msgstr ""
msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}."
msgstr ""
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:373
#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:377
msgid "DNS Panel"
msgstr ""
@@ -2297,40 +2212,29 @@ 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 ""
-#: src/screens/Signup/StepHandle.tsx:159
+#: src/screens/Signup/StepHandle.tsx:163
msgid "Doesn't begin or end with a hyphen"
msgstr ""
-#: src/view/com/modals/ChangeHandle.tsx:468
-#~ msgid "Domain Value"
-#~ msgstr ""
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:490
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:488
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/components/dialogs/BirthDateSettings.tsx:114
+#: src/components/dialogs/BirthDateSettings.tsx:120
+#: src/components/dms/ReportDialog.tsx:323
+#: src/components/forms/DateField/index.tsx:87
+#: src/components/forms/DateField/index.tsx:93
#: src/screens/Onboarding/StepProfile/index.tsx:330
#: src/screens/Onboarding/StepProfile/index.tsx:333
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:215
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:222
-#: src/view/com/auth/server-input/index.tsx:170
-#: src/view/com/auth/server-input/index.tsx:171
+#: src/view/com/auth/server-input/index.tsx:228
+#: src/view/com/auth/server-input/index.tsx:229
#: src/view/com/composer/labels/LabelsBtn.tsx:224
#: src/view/com/composer/labels/LabelsBtn.tsx:231
#: src/view/com/composer/videos/SubtitleDialog.tsx:169
@@ -2353,10 +2257,14 @@ msgstr ""
msgid "Done{extraText}"
msgstr ""
-#: src/components/Dialog/index.tsx:312
+#: src/components/Dialog/index.tsx:314
msgid "Double tap to close the dialog"
msgstr ""
+#: src/screens/VideoFeed/index.tsx:1041
+msgid "Double tap to like"
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317
msgid "Download Bluesky"
msgstr ""
@@ -2374,7 +2282,7 @@ msgstr ""
msgid "Duration:"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:213
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:211
msgid "e.g. alice"
msgstr ""
@@ -2386,7 +2294,7 @@ msgstr ""
msgid "e.g. Alice Roberts"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:357
msgid "e.g. alice.com"
msgstr ""
@@ -2430,7 +2338,7 @@ msgctxt "action"
msgid "Edit"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:347
+#: src/view/com/util/UserAvatar.tsx:348
#: src/view/com/util/UserBanner.tsx:95
msgid "Edit avatar"
msgstr ""
@@ -2445,8 +2353,8 @@ msgstr ""
msgid "Edit image"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:623
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:636
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:633
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:646
msgid "Edit interaction settings"
msgstr ""
@@ -2458,7 +2366,7 @@ msgstr ""
msgid "Edit Moderation List"
msgstr ""
-#: src/Navigation.tsx:296
+#: src/Navigation.tsx:306
#: src/view/screens/Feeds.tsx:515
msgid "Edit My Feeds"
msgstr ""
@@ -2471,8 +2379,8 @@ msgstr ""
msgid "Edit People"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:66
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:204
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:69
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:238
msgid "Edit post interaction settings"
msgstr ""
@@ -2508,7 +2416,7 @@ msgstr ""
msgid "Edit your profile description"
msgstr ""
-#: src/Navigation.tsx:423
+#: src/Navigation.tsx:433
msgid "Edit your starter pack"
msgstr ""
@@ -2522,7 +2430,7 @@ msgid "Either the creator of this list has blocked you or you have blocked the c
msgstr ""
#: src/screens/Settings/AccountSettings.tsx:60
-#: src/screens/Signup/StepInfo/index.tsx:170
+#: src/screens/Signup/StepInfo/index.tsx:164
#: src/view/com/modals/ChangeEmail.tsx:136
msgid "Email"
msgstr ""
@@ -2560,17 +2468,13 @@ msgstr ""
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/PostDropdownBtnMenuItems.tsx:451
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:453
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:461
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:463
msgid "Embed post"
msgstr ""
@@ -2591,7 +2495,7 @@ msgstr ""
msgid "Enable {0} only"
msgstr ""
-#: src/screens/Moderation/index.tsx:316
+#: src/screens/Moderation/index.tsx:332
msgid "Enable adult content"
msgstr ""
@@ -2621,18 +2525,26 @@ msgstr ""
msgid "Enable this source only"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:122
-#: src/screens/Settings/ContentAndMediaSettings.tsx:136
+#: src/screens/Settings/ContentAndMediaSettings.tsx:123
+#: src/screens/Settings/ContentAndMediaSettings.tsx:137
msgid "Enable trending topics"
msgstr ""
+#: src/screens/Settings/ContentAndMediaSettings.tsx:158
+msgid "Enable trending videos in your Discover feed"
+msgstr ""
+
+#: src/screens/Settings/ContentAndMediaSettings.tsx:144
+msgid "Enable trending videos in your Discover feed."
+msgstr ""
+
#: src/screens/Messages/Settings.tsx:130
#: src/screens/Messages/Settings.tsx:133
-#: src/screens/Moderation/index.tsx:327
+#: src/screens/Moderation/index.tsx:343
msgid "Enabled"
msgstr ""
-#: src/screens/Profile/Sections/Feed.tsx:114
+#: src/screens/Profile/Sections/Feed.tsx:116
msgid "End of feed"
msgstr ""
@@ -2640,11 +2552,7 @@ msgstr ""
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
+#: src/screens/Login/SetNewPasswordForm.tsx:139
msgid "Enter a password"
msgstr ""
@@ -2669,7 +2577,7 @@ msgstr ""
msgid "Enter the code you received to change your password."
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:353
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:351
msgid "Enter the domain you want to use"
msgstr ""
@@ -2677,12 +2585,12 @@ msgstr ""
msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password."
msgstr ""
-#: src/components/dialogs/BirthDateSettings.tsx:107
+#: src/components/dialogs/BirthDateSettings.tsx:103
msgid "Enter your birth date"
msgstr ""
#: src/screens/Login/ForgotPasswordForm.tsx:99
-#: src/screens/Signup/StepInfo/index.tsx:182
+#: src/screens/Signup/StepInfo/index.tsx:176
msgid "Enter your email address"
msgstr ""
@@ -2694,11 +2602,19 @@ msgstr ""
msgid "Enter your new email address below."
msgstr ""
+#: src/screens/Login/LoginForm.tsx:235
+msgid "Enter your password"
+msgstr ""
+
#: src/screens/Login/index.tsx:98
msgid "Enter your username and password"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1644
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135
+msgid "Enters full screen"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1660
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr ""
@@ -2712,11 +2628,11 @@ msgid "Error receiving captcha response."
msgstr ""
#: src/screens/Onboarding/StepInterests/index.tsx:183
-#: src/view/screens/Search/Search.tsx:110
+#: src/view/screens/Search/Search.tsx:114
msgid "Error:"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:364
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393
msgid "Everybody"
msgstr ""
@@ -2724,7 +2640,7 @@ msgstr ""
msgid "Everybody can reply"
msgstr ""
-#: src/components/WhoCanReply.tsx:213
+#: src/components/WhoCanReply.tsx:218
msgid "Everybody can reply to this post."
msgstr ""
@@ -2757,10 +2673,6 @@ msgstr ""
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 ""
@@ -2782,11 +2694,18 @@ 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:400
+#: src/screens/VideoFeed/index.tsx:935
+msgid "Expands or collapses post text"
+msgstr ""
+
+#: src/view/com/composer/ComposerReplyTo.tsx:73
+msgid "Expands or collapses the full post you are replying to"
+msgstr ""
+
+#: src/lib/api/index.ts:405
msgid "Expected uri to resolve to a record"
msgstr ""
@@ -2795,10 +2714,6 @@ msgstr ""
msgid "Experimental"
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 ""
@@ -2824,8 +2739,8 @@ msgstr ""
msgid "Export My Data"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:82
-#: src/screens/Settings/ContentAndMediaSettings.tsx:85
+#: src/screens/Settings/ContentAndMediaSettings.tsx:83
+#: src/screens/Settings/ContentAndMediaSettings.tsx:86
msgid "External media"
msgstr ""
@@ -2839,24 +2754,15 @@ msgstr ""
msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
msgstr ""
-#: src/Navigation.tsx:315
+#: src/Navigation.tsx:325
#: src/screens/Settings/ExternalMediaPreferences.tsx:31
msgid "External Media Preferences"
msgstr ""
-#: src/view/screens/Settings/index.tsx:637
-#~ msgid "External media settings"
-#~ msgstr ""
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:570
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:568
msgid "Failed to change handle. Please try again."
msgstr ""
-#: src/view/com/modals/AddAppPasswords.tsx:119
-#: src/view/com/modals/AddAppPasswords.tsx:123
-#~ msgid "Failed to create app password."
-#~ msgstr ""
-
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:173
msgid "Failed to create app password. Please try again."
msgstr ""
@@ -2874,7 +2780,7 @@ msgstr ""
msgid "Failed to delete message"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:195
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:197
msgid "Failed to delete post, please try again"
msgstr ""
@@ -2882,8 +2788,8 @@ msgstr ""
msgid "Failed to delete starter pack"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:447
-#: src/view/screens/Search/Explore.tsx:475
+#: src/view/screens/Search/Explore.tsx:463
+#: src/view/screens/Search/Explore.tsx:491
msgid "Failed to load feeds preferences"
msgstr ""
@@ -2895,12 +2801,12 @@ msgstr ""
msgid "Failed to load past messages"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:440
-#: src/view/screens/Search/Explore.tsx:468
+#: src/view/screens/Search/Explore.tsx:456
+#: src/view/screens/Search/Explore.tsx:484
msgid "Failed to load suggested feeds"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:398
+#: src/view/screens/Search/Explore.tsx:414
msgid "Failed to load suggested follows"
msgstr ""
@@ -2916,10 +2822,9 @@ msgstr ""
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/screens/ModerationInteractionSettings/index.tsx:108
+msgid "Failed to save settings. Please try again."
+msgstr ""
#: src/components/dms/MessageItem.tsx:234
msgid "Failed to send"
@@ -2930,7 +2835,7 @@ msgstr ""
msgid "Failed to submit appeal, please try again."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:224
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:226
msgid "Failed to toggle thread mute, please try again"
msgstr ""
@@ -2949,11 +2854,11 @@ msgstr ""
msgid "Failed to upload video"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:343
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:341
msgid "Failed to verify handle. Please try again."
msgstr ""
-#: src/Navigation.tsx:231
+#: src/Navigation.tsx:241
msgid "Feed"
msgstr ""
@@ -2972,23 +2877,23 @@ msgstr ""
#: src/view/shell/desktop/RightNav.tsx:93
#: src/view/shell/desktop/RightNav.tsx:94
-#: src/view/shell/Drawer.tsx:319
+#: src/view/shell/Drawer.tsx:324
msgid "Feedback"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:266
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:275
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:268
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:277
msgid "Feedback sent!"
msgstr ""
-#: src/Navigation.tsx:403
+#: src/Navigation.tsx:413
#: src/screens/StarterPack/StarterPackScreen.tsx:183
#: src/view/screens/Feeds.tsx:508
-#: src/view/screens/Profile.tsx:235
+#: src/view/screens/Profile.tsx:238
#: src/view/screens/SavedFeeds.tsx:96
-#: src/view/screens/Search/Search.tsx:525
-#: src/view/shell/desktop/LeftNav.tsx:445
-#: src/view/shell/Drawer.tsx:476
+#: src/view/screens/Search/Search.tsx:518
+#: src/view/shell/desktop/LeftNav.tsx:643
+#: src/view/shell/Drawer.tsx:481
msgid "Feeds"
msgstr ""
@@ -3001,14 +2906,10 @@ msgstr ""
msgid "Feeds updated!"
msgstr ""
-#: src/screens/Search/components/ExploreRecommendations.tsx:54
+#: src/screens/Search/components/ExploreRecommendations.tsx:63
msgid "Feeds we think you might like."
msgstr ""
-#: src/view/com/modals/ChangeHandle.tsx:468
-#~ msgid "File Contents"
-#~ msgstr ""
-
#: src/screens/Settings/components/ExportCarDialog.tsx:43
msgid "File saved successfully!"
msgstr ""
@@ -3017,7 +2918,15 @@ msgstr ""
msgid "Filter from feeds"
msgstr ""
-#: src/screens/Onboarding/StepFinished.tsx:296
+#: src/view/screens/Search/Search.tsx:397
+msgid "Filter search by language"
+msgstr ""
+
+#: src/view/screens/Search/Search.tsx:367
+msgid "Filter search by language (currently: {currentLanguageLabel})"
+msgstr ""
+
+#: src/screens/Onboarding/StepFinished.tsx:303
msgid "Finalizing"
msgstr ""
@@ -3033,18 +2942,10 @@ msgstr ""
msgid "Find people to follow"
msgstr ""
-#: src/view/screens/Search/Search.tsx:595
+#: src/view/screens/Search/Search.tsx:579
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:195
msgid "Finish"
msgstr ""
@@ -3053,20 +2954,21 @@ msgstr ""
msgid "Fitness"
msgstr ""
-#: src/screens/Onboarding/StepFinished.tsx:276
+#: src/screens/Onboarding/StepFinished.tsx:283
msgid "Flexible"
msgstr ""
#. User is not following this account, click to follow
-#: src/components/ProfileCard.tsx:363
+#: src/components/ProfileCard.tsx:366
#: src/components/ProfileHoverCard/index.web.tsx:449
#: src/components/ProfileHoverCard/index.web.tsx:460
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234
+#: src/screens/VideoFeed/index.tsx:823
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:132
msgid "Follow"
msgstr ""
-#: src/view/com/profile/FollowButton.tsx:69
+#: src/view/com/profile/FollowButton.tsx:72
msgctxt "action"
msgid "Follow"
msgstr ""
@@ -3076,6 +2978,10 @@ msgstr ""
msgid "Follow {0}"
msgstr ""
+#: src/screens/VideoFeed/index.tsx:800
+msgid "Follow {handle}"
+msgstr ""
+
#: src/view/com/posts/AviFollowButton.tsx:68
msgid "Follow {name}"
msgstr ""
@@ -3089,8 +2995,8 @@ msgstr ""
msgid "Follow 7 accounts"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:222
-#: src/view/com/profile/ProfileMenu.tsx:233
+#: src/view/com/profile/ProfileMenu.tsx:232
+#: src/view/com/profile/ProfileMenu.tsx:243
msgid "Follow Account"
msgstr ""
@@ -3104,49 +3010,32 @@ msgstr ""
msgid "Follow Back"
msgstr ""
-#: src/view/com/profile/FollowButton.tsx:78
+#: src/view/com/profile/FollowButton.tsx:81
msgctxt "action"
msgid "Follow Back"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:355
+#: src/view/screens/Search/Explore.tsx:370
msgid "Follow more accounts to get connected to your interests and build your network."
msgstr ""
-#: src/components/KnownFollowers.tsx:231
+#: src/components/KnownFollowers.tsx:232
msgid "Followed by <0>{0}0>"
msgstr ""
-#: src/components/KnownFollowers.tsx:217
+#: src/components/KnownFollowers.tsx:218
msgid "Followed by <0>{0}0> and {1, plural, one {# other} other {# others}}"
msgstr ""
-#: src/components/KnownFollowers.tsx:204
+#: src/components/KnownFollowers.tsx:205
msgid "Followed by <0>{0}0> and <1>{1}1>"
msgstr ""
-#: src/components/KnownFollowers.tsx:186
+#: src/components/KnownFollowers.tsx:187
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:403
-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:192
+#: src/Navigation.tsx:202
msgid "Followers of @{0} that you know"
msgstr ""
@@ -3156,31 +3045,36 @@ msgid "Followers you know"
msgstr ""
#. User is following this account, click to unfollow
-#: src/components/ProfileCard.tsx:357
+#: src/components/ProfileCard.tsx:360
#: src/components/ProfileHoverCard/index.web.tsx:448
#: src/components/ProfileHoverCard/index.web.tsx:459
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230
+#: src/screens/VideoFeed/index.tsx:821
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:135
#: src/view/screens/Feeds.tsx:599
#: src/view/screens/SavedFeeds.tsx:422
msgid "Following"
msgstr ""
-#: src/components/ProfileCard.tsx:321
+#: src/components/ProfileCard.tsx:323
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
msgid "Following {0}"
msgstr ""
+#: src/screens/VideoFeed/index.tsx:799
+msgid "Following {handle}"
+msgstr ""
+
#: src/view/com/posts/AviFollowButton.tsx:50
msgid "Following {name}"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:74
-#: src/screens/Settings/ContentAndMediaSettings.tsx:77
+#: src/screens/Settings/ContentAndMediaSettings.tsx:75
+#: src/screens/Settings/ContentAndMediaSettings.tsx:78
msgid "Following feed preferences"
msgstr ""
-#: src/Navigation.tsx:302
+#: src/Navigation.tsx:312
#: src/screens/Settings/FollowingFeedPreferences.tsx:53
msgid "Following Feed Preferences"
msgstr ""
@@ -3214,10 +3108,6 @@ msgstr ""
msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one."
msgstr ""
-#: 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/screens/Settings/AppearanceSettings.tsx:142
msgid "For the best experience, we recommend using the theme font."
msgstr ""
@@ -3231,11 +3121,11 @@ msgstr ""
msgid "Forgot Password"
msgstr ""
-#: src/screens/Login/LoginForm.tsx:232
+#: src/screens/Login/LoginForm.tsx:240
msgid "Forgot password?"
msgstr ""
-#: src/screens/Login/LoginForm.tsx:243
+#: src/screens/Login/LoginForm.tsx:251
msgid "Forgot?"
msgstr ""
@@ -3252,19 +3142,15 @@ msgctxt "from-feed"
msgid "From <0/>"
msgstr ""
-#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:404
-#~ msgid "Fullscreen"
-#~ msgstr ""
-
#: src/view/com/composer/photos/SelectPhotoBtn.tsx:50
msgid "Gallery"
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:297
+#: src/components/StarterPack/ProfileStarterPacks.tsx:296
msgid "Generate a starter pack"
msgstr ""
-#: src/view/shell/Drawer.tsx:323
+#: src/view/shell/Drawer.tsx:328
msgid "Get help"
msgstr ""
@@ -3292,7 +3178,10 @@ msgstr ""
#: src/components/Layout/Header/index.tsx:118
#: src/components/moderation/ScreenHider.tsx:154
#: src/components/moderation/ScreenHider.tsx:163
-#: src/screens/Profile/ProfileFeed/index.tsx:82
+#: src/screens/Profile/ProfileFeed/index.tsx:89
+#: src/screens/VideoFeed/components/Header.tsx:163
+#: src/screens/VideoFeed/index.tsx:1102
+#: src/screens/VideoFeed/index.tsx:1106
#: src/view/com/auth/LoggedOut.tsx:72
#: src/view/screens/NotFound.tsx:57
#: src/view/screens/ProfileList.tsx:1009
@@ -3303,30 +3192,22 @@ msgstr ""
#: src/screens/List/ListHiddenScreen.tsx:221
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:87
+#: src/screens/Profile/ProfileFeed/index.tsx:94
#: src/screens/StarterPack/StarterPackScreen.tsx:758
#: src/view/screens/NotFound.tsx:56
#: src/view/screens/ProfileList.tsx:1014
msgid "Go Back"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:542
-msgid "Go back to previous page"
-msgstr ""
-
-#: src/components/dms/ReportDialog.tsx:149
-#: src/components/ReportDialog/SelectReportOptionView.tsx:80
-#: src/components/ReportDialog/SubmitView.tsx:109
-#: src/screens/Onboarding/Layout.tsx:101
-#: src/screens/Onboarding/Layout.tsx:190
+#: src/components/dms/ReportDialog.tsx:190
+#: src/components/ReportDialog/SelectReportOptionView.tsx:78
+#: src/components/ReportDialog/SubmitView.tsx:110
+#: src/screens/Onboarding/Layout.tsx:99
+#: src/screens/Onboarding/Layout.tsx:188
#: src/screens/Signup/BackNextButtons.tsx:35
msgid "Go back to previous step"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:287
-msgid "Go back to the previous step"
-msgstr ""
-
#: src/view/screens/NotFound.tsx:57
msgid "Go home"
msgstr ""
@@ -3335,7 +3216,7 @@ msgstr ""
msgid "Go Home"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:264
+#: src/screens/Messages/components/ChatListItem.tsx:282
msgid "Go to conversation with {0}"
msgstr ""
@@ -3344,11 +3225,11 @@ msgstr ""
msgid "Go to next"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:167
+#: src/components/dms/ConvoMenu.tsx:230
msgid "Go to profile"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:164
+#: src/components/dms/ConvoMenu.tsx:227
msgid "Go to user's profile"
msgstr ""
@@ -3368,16 +3249,16 @@ msgstr ""
msgid "Handle"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:574
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:572
msgid "Handle already taken. Please try a different one."
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:191
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:327
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:189
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:325
msgid "Handle changed!"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:578
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:576
msgid "Handle too long. Please try a shorter one."
msgstr ""
@@ -3389,12 +3270,12 @@ msgstr ""
msgid "Harassment, trolling, or intolerance"
msgstr ""
-#: src/Navigation.tsx:378
+#: src/Navigation.tsx:388
msgid "Hashtag"
msgstr ""
-#: src/components/RichText.tsx:218
-msgid "Hashtag: #{tag}"
+#: src/components/RichTextTag.tsx:51
+msgid "Hashtag {tag}"
msgstr ""
#: src/screens/Signup/index.tsx:173
@@ -3405,7 +3286,7 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:211
#: src/view/shell/desktop/RightNav.tsx:111
#: src/view/shell/desktop/RightNav.tsx:112
-#: src/view/shell/Drawer.tsx:332
+#: src/view/shell/Drawer.tsx:337
msgid "Help"
msgstr ""
@@ -3413,23 +3294,25 @@ msgstr ""
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:127
-#~ msgid "Helps external sites estimate traffic from Bluesky."
-#~ msgstr ""
-
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:187
msgid "Here is your app password!"
msgstr ""
-#: src/view/com/modals/AddAppPasswords.tsx:204
-#~ msgid "Here is your app password."
-#~ msgstr ""
+#: src/components/VideoPostCard.tsx:172
+#: src/components/VideoPostCard.tsx:448
+msgid "Hidden"
+msgstr ""
-#: src/components/ListCard.tsx:130
+#: src/screens/VideoFeed/index.tsx:606
+msgid "Hidden by your moderation settings."
+msgstr ""
+
+#: src/components/ListCard.tsx:131
msgid "Hidden list"
msgstr ""
-#: src/components/interstitials/Trending.tsx:101
+#: src/components/interstitials/Trending.tsx:131
+#: src/components/interstitials/TrendingVideos.tsx:140
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:135
#: src/components/moderation/PostHider.tsx:122
@@ -3438,7 +3321,7 @@ msgstr ""
#: src/lib/moderation/useLabelBehaviorDescription.ts:25
#: src/lib/moderation/useLabelBehaviorDescription.ts:30
#: src/screens/Search/components/ExploreTrendingTopics.tsx:137
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:672
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:704
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:110
msgid "Hide"
msgstr ""
@@ -3448,51 +3331,55 @@ msgctxt "action"
msgid "Hide"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:523
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:529
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:533
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:539
msgid "Hide post for me"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:550
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:560
msgid "Hide reply for everyone"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:522
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:528
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:532
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:538
msgid "Hide reply for me"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:151
-#: src/components/moderation/PostHider.tsx:79
-msgid "Hide the content"
-msgstr ""
-
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:667
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:699
msgid "Hide this post?"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:667
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:729
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:699
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:761
msgid "Hide this reply?"
msgstr ""
-#: src/components/interstitials/Trending.tsx:84
+#: src/components/interstitials/Trending.tsx:113
#: src/screens/Search/components/ExploreTrendingTopics.tsx:83
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:62
msgid "Hide trending topics"
msgstr ""
-#: src/components/interstitials/Trending.tsx:99
+#: src/components/interstitials/Trending.tsx:129
#: src/screens/Search/components/ExploreTrendingTopics.tsx:135
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:108
msgid "Hide trending topics?"
msgstr ""
+#: src/components/interstitials/TrendingVideos.tsx:138
+msgid "Hide trending videos?"
+msgstr ""
+
#: src/view/com/notifications/NotificationFeedItem.tsx:592
msgid "Hide user list"
msgstr ""
+#: src/components/moderation/ContentHider.tsx:151
+#: src/components/moderation/PostHider.tsx:79
+msgid "Hides the content"
+msgstr ""
+
#: src/view/com/posts/PostFeedErrorMessage.tsx:117
msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue."
msgstr ""
@@ -3513,7 +3400,7 @@ msgstr ""
msgid "Hmm, we're having trouble finding this feed. It may have been deleted."
msgstr ""
-#: src/screens/Moderation/index.tsx:53
+#: src/screens/Moderation/index.tsx:54
msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us."
msgstr ""
@@ -3525,21 +3412,20 @@ msgstr ""
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr ""
-#: src/Navigation.tsx:594
-#: src/Navigation.tsx:614
-#: src/view/shell/bottom-bar/BottomBar.tsx:163
-#: src/view/shell/desktop/LeftNav.tsx:389
-#: src/view/shell/Drawer.tsx:391
+#: src/Navigation.tsx:612
+#: src/Navigation.tsx:632
+#: src/view/shell/bottom-bar/BottomBar.tsx:162
+#: src/view/shell/desktop/LeftNav.tsx:587
+#: src/view/shell/Drawer.tsx:396
msgid "Home"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:400
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:398
msgid "Host:"
msgstr ""
#: src/screens/Login/ForgotPasswordForm.tsx:83
-#: src/screens/Login/LoginForm.tsx:168
-#: src/screens/Signup/StepInfo/index.tsx:133
+#: src/screens/Login/LoginForm.tsx:176
msgid "Hosting provider"
msgstr ""
@@ -3569,8 +3455,8 @@ msgstr ""
msgid "I have a confirmation code"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:263
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:269
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:261
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
msgid "I have my own domain"
msgstr ""
@@ -3591,15 +3477,11 @@ msgstr ""
msgid "If you delete this list, you won't be able to recover it."
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:246
-#~ msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity – <0>learn more0>."
-#~ msgstr ""
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:250
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:248
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:658
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:690
msgid "If you remove this post, you won't be able to recover it."
msgstr ""
@@ -3607,6 +3489,10 @@ msgstr ""
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr ""
+#: src/view/com/auth/server-input/index.tsx:204
+msgid "If you're a developer, you can host your own server."
+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 ""
@@ -3635,7 +3521,11 @@ msgstr ""
msgid "Inappropriate messages or explicit links"
msgstr ""
-#: src/screens/Login/SetNewPasswordForm.tsx:121
+#: src/screens/Login/LoginForm.tsx:157
+msgid "Incorrect username or password"
+msgstr ""
+
+#: src/screens/Login/SetNewPasswordForm.tsx:127
msgid "Input code sent to your email for password reset"
msgstr ""
@@ -3643,11 +3533,7 @@ msgstr ""
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
+#: src/screens/Login/SetNewPasswordForm.tsx:151
msgid "Input new password"
msgstr ""
@@ -3655,48 +3541,35 @@ msgstr ""
msgid "Input password for account deletion"
msgstr ""
-#: src/screens/Login/LoginForm.tsx:273
+#: src/screens/Login/LoginForm.tsx:281
msgid "Input the code which has been emailed to you"
msgstr ""
-#: src/screens/Login/LoginForm.tsx:202
+#: src/screens/Login/LoginForm.tsx:210
msgid "Input the username or email address you used at signup"
msgstr ""
-#: src/screens/Login/LoginForm.tsx:227
-msgid "Input your password"
-msgstr ""
-
-#: src/view/com/modals/ChangeHandle.tsx:376
-#~ msgid "Input your preferred hosting provider"
-#~ msgstr ""
-
#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49
msgid "Interaction limited"
msgstr ""
-#: src/components/dialogs/nuxs/NeueTypography.tsx:47
-#~ msgid "Introducing new font settings"
-#~ msgstr ""
+#: src/screens/Moderation/index.tsx:209
+msgid "Interaction settings"
+msgstr ""
-#: src/screens/Login/LoginForm.tsx:144
+#: src/screens/Login/LoginForm.tsx:149
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:70
msgid "Invalid 2FA confirmation code."
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:580
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:578
msgid "Invalid handle. Please try a different one."
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:277
+#: src/view/com/post-thread/PostThreadItem.tsx:282
msgid "Invalid or unsupported post record"
msgstr ""
-#: src/screens/Login/LoginForm.tsx:90
-#: src/screens/Login/LoginForm.tsx:149
-msgid "Incorrect username or password"
-msgstr ""
-
#: src/components/intents/VerifyEmailIntentDialog.tsx:91
msgid "Invalid Verification Code"
msgstr ""
@@ -3705,7 +3578,7 @@ msgstr ""
msgid "Invite a Friend"
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:151
+#: src/screens/Signup/StepInfo/index.tsx:145
msgid "Invite code"
msgstr ""
@@ -3737,7 +3610,7 @@ msgstr ""
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
+#: src/screens/Signup/StepInfo/index.tsx:236
msgid "It's correct"
msgstr ""
@@ -3745,7 +3618,7 @@ msgstr ""
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1578
+#: src/view/com/composer/Composer.tsx:1594
msgid "Job ID: {0}"
msgstr ""
@@ -3779,7 +3652,7 @@ msgid "Labeled by the author."
msgstr ""
#: src/view/com/composer/labels/LabelsBtn.tsx:75
-#: src/view/screens/Profile.tsx:229
+#: src/view/screens/Profile.tsx:231
msgid "Labels"
msgstr ""
@@ -3803,11 +3676,7 @@ msgstr ""
msgid "Language selection"
msgstr ""
-#: src/view/screens/Settings/index.tsx:497
-#~ msgid "Language settings"
-#~ msgstr ""
-
-#: src/Navigation.tsx:165
+#: src/Navigation.tsx:175
msgid "Language Settings"
msgstr ""
@@ -3823,11 +3692,11 @@ msgstr ""
#: src/screens/Hashtag.tsx:95
#: src/screens/Topic.tsx:77
-#: src/view/screens/Search/Search.tsx:509
+#: src/view/screens/Search/Search.tsx:502
msgid "Latest"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:254
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:252
msgid "learn more"
msgstr ""
@@ -3839,11 +3708,14 @@ msgstr ""
msgid "Learn more about Bluesky"
msgstr ""
-#: src/view/com/auth/server-input/index.tsx:156
+#: src/view/com/auth/server-input/index.tsx:214
msgid "Learn more about self hosting your PDS."
msgstr ""
#: src/components/moderation/ContentHider.tsx:149
+msgid "Learn more about the moderation applied to this content"
+msgstr ""
+
#: src/components/moderation/ContentHider.tsx:215
msgid "Learn more about the moderation applied to this content."
msgstr ""
@@ -3859,28 +3731,28 @@ msgid "Learn more about what is public on Bluesky."
msgstr ""
#: src/components/moderation/ContentHider.tsx:239
-#: src/view/com/auth/server-input/index.tsx:158
+#: src/view/com/auth/server-input/index.tsx:216
msgid "Learn more."
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:49
+#: src/components/dms/LeaveConvoPrompt.tsx:44
msgid "Leave"
msgstr ""
-#: src/components/dms/MessagesListBlockedFooter.tsx:66
#: src/components/dms/MessagesListBlockedFooter.tsx:73
+#: src/components/dms/MessagesListBlockedFooter.tsx:80
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:45
+#: src/components/dms/ConvoMenu.tsx:206
+#: src/components/dms/ConvoMenu.tsx:209
+#: src/components/dms/ConvoMenu.tsx:269
+#: src/components/dms/ConvoMenu.tsx:272
+#: src/components/dms/LeaveConvoPrompt.tsx:40
msgid "Leave conversation"
msgstr ""
-#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:83
+#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84
msgid "Leave them all unchecked to see any language."
msgstr ""
@@ -3888,11 +3760,11 @@ msgstr ""
msgid "Leaving Bluesky"
msgstr ""
-#: src/screens/SignupQueued.tsx:140
+#: src/screens/SignupQueued.tsx:155
msgid "left to go."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:313
+#: src/components/StarterPack/ProfileStarterPacks.tsx:312
msgid "Let me choose"
msgstr ""
@@ -3901,7 +3773,7 @@ msgstr ""
msgid "Let's get your password reset!"
msgstr ""
-#: src/screens/Onboarding/StepFinished.tsx:296
+#: src/screens/Onboarding/StepFinished.tsx:303
msgid "Let's go!"
msgstr ""
@@ -3913,7 +3785,7 @@ msgstr ""
msgid "Like"
msgstr ""
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:311
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:321
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -3935,8 +3807,8 @@ msgid "Like this feed"
msgstr ""
#: src/components/LikesDialog.tsx:85
-#: src/Navigation.tsx:236
-#: src/Navigation.tsx:241
+#: src/Navigation.tsx:246
+#: src/Navigation.tsx:251
msgid "Liked by"
msgstr ""
@@ -3958,15 +3830,7 @@ msgstr ""
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
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:234
+#: src/view/screens/Profile.tsx:237
msgid "Likes"
msgstr ""
@@ -3979,7 +3843,7 @@ msgstr ""
msgid "Linear"
msgstr ""
-#: src/Navigation.tsx:198
+#: src/Navigation.tsx:208
msgid "List"
msgstr ""
@@ -3991,7 +3855,7 @@ msgstr ""
msgid "List blocked"
msgstr ""
-#: src/components/ListCard.tsx:150
+#: src/components/ListCard.tsx:151
#: src/view/com/feeds/FeedSourceCard.tsx:255
msgid "List by {0}"
msgstr ""
@@ -4032,12 +3896,12 @@ msgstr ""
msgid "List unmuted"
msgstr ""
-#: src/Navigation.tsx:135
+#: src/Navigation.tsx:137
#: src/view/screens/Lists.tsx:62
-#: src/view/screens/Profile.tsx:230
-#: src/view/screens/Profile.tsx:237
-#: src/view/shell/desktop/LeftNav.tsx:463
-#: src/view/shell/Drawer.tsx:491
+#: src/view/screens/Profile.tsx:232
+#: src/view/screens/Profile.tsx:240
+#: src/view/shell/desktop/LeftNav.tsx:661
+#: src/view/shell/Drawer.tsx:496
msgid "Lists"
msgstr ""
@@ -4045,15 +3909,15 @@ msgstr ""
msgid "Lists blocking this user:"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:133
+#: src/view/screens/Search/Explore.tsx:135
msgid "Load more"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:221
+#: src/view/screens/Search/Explore.tsx:224
msgid "Load more suggested feeds"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:219
+#: src/view/screens/Search/Explore.tsx:222
msgid "Load more suggested follows"
msgstr ""
@@ -4061,9 +3925,9 @@ msgstr ""
msgid "Load new notifications"
msgstr ""
-#: src/screens/Profile/ProfileFeed/index.tsx:192
-#: src/screens/Profile/Sections/Feed.tsx:96
-#: src/view/com/feeds/FeedPage.tsx:143
+#: src/screens/Profile/ProfileFeed/index.tsx:221
+#: src/screens/Profile/Sections/Feed.tsx:98
+#: src/view/com/feeds/FeedPage.tsx:155
#: src/view/screens/ProfileList.tsx:849
msgid "Load new posts"
msgstr ""
@@ -4072,7 +3936,7 @@ msgstr ""
msgid "Loading..."
msgstr ""
-#: src/Navigation.tsx:261
+#: src/Navigation.tsx:271
msgid "Log"
msgstr ""
@@ -4081,13 +3945,16 @@ msgstr ""
msgid "Log in or sign up"
msgstr ""
-#: src/screens/SignupQueued.tsx:168
-#: src/screens/SignupQueued.tsx:171
-#: src/screens/SignupQueued.tsx:196
-#: src/screens/SignupQueued.tsx:199
+#: src/screens/SignupQueued.tsx:93
+#: src/screens/SignupQueued.tsx:96
+#: src/screens/Takendown.tsx:85
msgid "Log out"
msgstr ""
+#: src/screens/Takendown.tsx:88
+msgid "Log Out"
+msgstr ""
+
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:78
msgid "Logged-out visibility"
msgstr ""
@@ -4100,20 +3967,16 @@ msgstr ""
msgid "Logo by @sawaratsuki.bsky.social"
msgstr ""
-#: src/view/shell/desktop/RightNav.tsx:103
-#~ msgid "Logo by <0/>"
-#~ msgstr ""
-
#: src/view/shell/desktop/RightNav.tsx:118
-#: src/view/shell/Drawer.tsx:629
+#: src/view/shell/Drawer.tsx:634
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr ""
-#: src/components/RichText.tsx:219
+#: src/components/RichTextTag.tsx:53
msgid "Long press to open tag menu for #{tag}"
msgstr ""
-#: src/screens/Login/SetNewPasswordForm.tsx:110
+#: src/screens/Login/SetNewPasswordForm.tsx:116
msgid "Looks like XXXXX-XXXXX"
msgstr ""
@@ -4129,7 +3992,7 @@ msgstr ""
msgid "Looks like you're missing a following feed. <0>Click here to add one.0>"
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:266
+#: src/components/StarterPack/ProfileStarterPacks.tsx:265
msgid "Make one for me"
msgstr ""
@@ -4137,8 +4000,8 @@ msgstr ""
msgid "Make sure this is where you intend to go!"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:58
-#: src/screens/Settings/ContentAndMediaSettings.tsx:61
+#: src/screens/Settings/ContentAndMediaSettings.tsx:59
+#: src/screens/Settings/ContentAndMediaSettings.tsx:62
msgid "Manage saved feeds"
msgstr ""
@@ -4146,12 +4009,12 @@ msgstr ""
msgid "Manage your muted words and tags"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:151
-#: src/components/dms/ConvoMenu.tsx:158
+#: src/components/dms/ConvoMenu.tsx:218
+#: src/components/dms/ConvoMenu.tsx:221
msgid "Mark as read"
msgstr ""
-#: src/view/screens/Profile.tsx:233
+#: src/view/screens/Profile.tsx:235
msgid "Media"
msgstr ""
@@ -4159,11 +4022,11 @@ msgstr ""
msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr ""
-#: src/components/WhoCanReply.tsx:254
+#: src/components/WhoCanReply.tsx:259
msgid "mentioned users"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:422
msgid "Mentioned users"
msgstr ""
@@ -4171,8 +4034,7 @@ msgstr ""
msgid "Mentions"
msgstr ""
-#: src/components/Menu/index.tsx:96
-#: src/view/screens/Search/Search.tsx:863
+#: src/components/Menu/index.tsx:103
msgid "Menu"
msgstr ""
@@ -4181,7 +4043,7 @@ msgid "Message {0}"
msgstr ""
#: src/components/dms/MessageMenu.tsx:72
-#: src/screens/Messages/components/ChatListItem.tsx:165
+#: src/screens/Messages/components/ChatListItem.tsx:180
msgid "Message deleted"
msgstr ""
@@ -4198,13 +4060,9 @@ msgstr ""
msgid "Message is too long"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:318
-#~ msgid "Message settings"
-#~ msgstr ""
-
-#: src/Navigation.tsx:609
-#: src/screens/Messages/ChatList.tsx:262
-#: src/screens/Messages/ChatList.tsx:286
+#: src/Navigation.tsx:627
+#: src/screens/Messages/ChatList.tsx:269
+#: src/screens/Messages/ChatList.tsx:293
msgid "Messages"
msgstr ""
@@ -4216,8 +4074,8 @@ msgstr ""
msgid "Misleading Post"
msgstr ""
-#: src/Navigation.tsx:140
-#: src/screens/Moderation/index.tsx:88
+#: src/Navigation.tsx:142
+#: src/screens/Moderation/index.tsx:89
#: src/screens/Settings/Settings.tsx:167
#: src/screens/Settings/Settings.tsx:170
msgid "Moderation"
@@ -4227,7 +4085,7 @@ msgstr ""
msgid "Moderation details"
msgstr ""
-#: src/components/ListCard.tsx:149
+#: src/components/ListCard.tsx:150
#: src/view/com/modals/UserAddRemoveLists.tsx:222
msgid "Moderation list by {0}"
msgstr ""
@@ -4249,11 +4107,11 @@ msgstr ""
msgid "Moderation list updated"
msgstr ""
-#: src/screens/Moderation/index.tsx:223
+#: src/screens/Moderation/index.tsx:239
msgid "Moderation lists"
msgstr ""
-#: src/Navigation.tsx:145
+#: src/Navigation.tsx:147
#: src/view/screens/ModerationModlists.tsx:62
msgid "Moderation Lists"
msgstr ""
@@ -4262,15 +4120,11 @@ msgstr ""
msgid "moderation settings"
msgstr ""
-#: src/view/screens/Settings/index.tsx:522
-#~ msgid "Moderation settings"
-#~ msgstr ""
-
-#: src/Navigation.tsx:251
+#: src/Navigation.tsx:261
msgid "Moderation states"
msgstr ""
-#: src/screens/Moderation/index.tsx:192
+#: src/screens/Moderation/index.tsx:193
msgid "Moderation tools"
msgstr ""
@@ -4279,7 +4133,7 @@ msgstr ""
msgid "Moderator has chosen to set a general warning on the content."
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:632
+#: src/view/com/post-thread/PostThreadItem.tsx:637
msgid "More"
msgstr ""
@@ -4288,7 +4142,7 @@ msgstr ""
msgid "More feeds"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:179
+#: src/view/com/profile/ProfileMenu.tsx:189
#: src/view/screens/ProfileList.tsx:721
msgid "More options"
msgstr ""
@@ -4311,22 +4165,19 @@ msgstr ""
msgid "Music"
msgstr ""
-#: src/components/TagMenu/index.tsx:264
-msgid "Mute"
-msgstr ""
-
#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:95
msgctxt "video"
msgid "Mute"
msgstr ""
-#: src/components/TagMenu/index.web.tsx:116
-msgid "Mute {truncatedTag}"
+#: src/components/RichTextTag.tsx:140
+#: src/components/RichTextTag.tsx:153
+msgid "Mute {tag}"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:259
-#: src/view/com/profile/ProfileMenu.tsx:266
+#: src/view/com/profile/ProfileMenu.tsx:269
+#: src/view/com/profile/ProfileMenu.tsx:276
msgid "Mute Account"
msgstr ""
@@ -4334,12 +4185,8 @@ msgstr ""
msgid "Mute accounts"
msgstr ""
-#: src/components/TagMenu/index.tsx:224
-msgid "Mute all {displayTag} posts"
-msgstr ""
-
-#: src/components/dms/ConvoMenu.tsx:172
-#: src/components/dms/ConvoMenu.tsx:178
+#: src/components/dms/ConvoMenu.tsx:235
+#: src/components/dms/ConvoMenu.tsx:241
msgid "Mute conversation"
msgstr ""
@@ -4379,21 +4226,21 @@ msgstr ""
msgid "Mute this word until you unmute it"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:489
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:493
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:499
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:503
msgid "Mute thread"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:503
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:505
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:513
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:515
msgid "Mute words & tags"
msgstr ""
-#: src/screens/Moderation/index.tsx:238
+#: src/screens/Moderation/index.tsx:254
msgid "Muted accounts"
msgstr ""
-#: src/Navigation.tsx:150
+#: src/Navigation.tsx:152
#: src/view/screens/ModerationMutedAccounts.tsx:100
msgid "Muted Accounts"
msgstr ""
@@ -4406,7 +4253,7 @@ msgstr ""
msgid "Muted by \"{0}\""
msgstr ""
-#: src/screens/Moderation/index.tsx:208
+#: src/screens/Moderation/index.tsx:224
msgid "Muted words & tags"
msgstr ""
@@ -4423,18 +4270,6 @@ msgstr ""
msgid "My Feeds"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:84
-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/CreateOrEditList.tsx:270
msgid "Name"
msgstr ""
@@ -4460,7 +4295,7 @@ msgid "Navigate to {0}"
msgstr ""
#: src/screens/Login/ForgotPasswordForm.tsx:166
-#: src/screens/Login/LoginForm.tsx:326
+#: src/screens/Login/LoginForm.tsx:334
#: src/view/com/modals/ChangePassword.tsx:169
msgid "Navigates to the next screen"
msgstr ""
@@ -4473,15 +4308,15 @@ msgstr ""
msgid "Need to change it?"
msgstr ""
-#: src/components/ReportDialog/SelectReportOptionView.tsx:130
+#: src/components/ReportDialog/SelectReportOptionView.tsx:128
msgid "Need to report a copyright violation?"
msgstr ""
-#: src/screens/Onboarding/StepFinished.tsx:264
+#: src/screens/Onboarding/StepFinished.tsx:271
msgid "Never lose access to your followers or data."
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:550
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:548
msgid "Nevermind, create a handle for me"
msgstr ""
@@ -4491,23 +4326,15 @@ msgctxt "action"
msgid "New"
msgstr ""
-#: src/view/screens/ModerationModlists.tsx:92
-#~ msgid "New"
-#~ msgstr ""
-
#: src/components/dms/dialogs/NewChatDialog.tsx:65
-#: src/screens/Messages/ChatList.tsx:269
#: src/screens/Messages/ChatList.tsx:276
+#: src/screens/Messages/ChatList.tsx:283
msgid "New chat"
msgstr ""
-#: src/components/dialogs/nuxs/NeueTypography.tsx:51
-#~ msgid "New font settings ✨"
-#~ msgstr ""
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:204
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:212
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:358
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:202
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:210
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
msgid "New handle"
msgstr ""
@@ -4532,21 +4359,21 @@ msgstr ""
msgid "New Password"
msgstr ""
-#: src/screens/Profile/ProfileFeed/index.tsx:209
+#: src/screens/Profile/ProfileFeed/index.tsx:238
#: src/view/screens/Feeds.tsx:549
#: src/view/screens/Notifications.tsx:165
-#: src/view/screens/Profile.tsx:495
+#: src/view/screens/Profile.tsx:518
#: src/view/screens/ProfileList.tsx:250
#: src/view/screens/ProfileList.tsx:283
msgid "New post"
msgstr ""
-#: src/view/com/feeds/FeedPage.tsx:154
+#: src/view/com/feeds/FeedPage.tsx:166
msgctxt "action"
msgid "New post"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:309
+#: src/view/shell/desktop/LeftNav.tsx:507
msgctxt "action"
msgid "New Post"
msgstr ""
@@ -4573,10 +4400,10 @@ msgstr ""
#: src/screens/Login/ForgotPasswordForm.tsx:137
#: src/screens/Login/ForgotPasswordForm.tsx:143
-#: src/screens/Login/LoginForm.tsx:325
-#: src/screens/Login/LoginForm.tsx:332
-#: src/screens/Login/SetNewPasswordForm.tsx:168
+#: src/screens/Login/LoginForm.tsx:333
+#: src/screens/Login/LoginForm.tsx:340
#: src/screens/Login/SetNewPasswordForm.tsx:174
+#: src/screens/Login/SetNewPasswordForm.tsx:180
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:157
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:165
#: src/screens/Signup/BackNextButtons.tsx:67
@@ -4593,26 +4420,12 @@ msgstr ""
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/screens/Settings/AppPasswords.tsx:108
msgid "No app passwords yet"
msgstr ""
-#: src/view/screens/ProfileFeed.tsx:565
-#: src/view/screens/ProfileList.tsx:882
-#~ msgid "No description"
-#~ msgstr ""
-
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:378
#: src/screens/Settings/components/ChangeHandleDialog.tsx:380
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:382
msgid "No DNS Panel"
msgstr ""
@@ -4629,20 +4442,20 @@ msgstr ""
msgid "No likes yet"
msgstr ""
-#: src/components/ProfileCard.tsx:342
+#: src/components/ProfileCard.tsx:345
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
msgid "No longer following {0}"
msgstr ""
-#: src/screens/Signup/StepHandle.tsx:169
-msgid "No longer than 253 characters"
+#: src/screens/Signup/StepHandle.tsx:173
+msgid "No longer than {0} characters"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:116
+#: src/screens/Messages/components/ChatListItem.tsx:124
msgid "No messages yet"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:225
+#: src/screens/Messages/ChatList.tsx:233
msgid "No more conversations to show"
msgstr ""
@@ -4655,11 +4468,11 @@ msgstr ""
msgid "No one"
msgstr ""
-#: src/components/WhoCanReply.tsx:237
+#: src/components/WhoCanReply.tsx:242
msgid "No one but the author can quote this post."
msgstr ""
-#: src/screens/Profile/Sections/Feed.tsx:65
+#: src/screens/Profile/Sections/Feed.tsx:66
msgid "No posts yet."
msgstr ""
@@ -4681,7 +4494,7 @@ msgstr ""
msgid "No results"
msgstr ""
-#: src/components/Lists.tsx:183
+#: src/components/Lists.tsx:189
msgid "No results found"
msgstr ""
@@ -4690,9 +4503,9 @@ msgid "No results found for \"{query}\""
msgstr ""
#: src/view/com/modals/ListAddRemoveUsers.tsx:128
-#: src/view/screens/Search/Search.tsx:228
-#: src/view/screens/Search/Search.tsx:267
-#: src/view/screens/Search/Search.tsx:313
+#: src/view/screens/Search/Search.tsx:231
+#: src/view/screens/Search/Search.tsx:269
+#: src/view/screens/Search/Search.tsx:314
msgid "No results found for {query}"
msgstr ""
@@ -4700,16 +4513,12 @@ msgstr ""
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:375
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:404
msgid "Nobody"
msgstr ""
@@ -4735,7 +4544,7 @@ msgstr ""
msgid "Non-sexual Nudity"
msgstr ""
-#: src/Navigation.tsx:130
+#: src/Navigation.tsx:132
#: src/view/screens/Profile.tsx:129
msgid "Not Found"
msgstr ""
@@ -4745,9 +4554,9 @@ msgstr ""
msgid "Not right now"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:348
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:686
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:357
+#: src/view/com/profile/ProfileMenu.tsx:383
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:718
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:367
msgid "Note about sharing"
msgstr ""
@@ -4755,7 +4564,7 @@ msgstr ""
msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites."
msgstr ""
-#: src/screens/Messages/ChatList.tsx:180
+#: src/screens/Messages/ChatList.tsx:188
msgid "Nothing here"
msgstr ""
@@ -4763,7 +4572,7 @@ msgstr ""
msgid "Notification filters"
msgstr ""
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:408
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr ""
@@ -4780,11 +4589,11 @@ msgstr ""
msgid "Notification Sounds"
msgstr ""
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:622
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:231
-#: src/view/shell/desktop/LeftNav.tsx:426
-#: src/view/shell/Drawer.tsx:444
+#: src/view/shell/bottom-bar/BottomBar.tsx:230
+#: src/view/shell/desktop/LeftNav.tsx:624
+#: src/view/shell/Drawer.tsx:449
msgid "Notifications"
msgstr ""
@@ -4825,7 +4634,7 @@ msgid "OK"
msgstr ""
#: src/screens/Login/PasswordUpdatedForm.tsx:37
-#: src/view/com/post-thread/PostThreadItem.tsx:864
+#: src/view/com/post-thread/PostThreadItem.tsx:869
msgid "Okay"
msgstr ""
@@ -4840,19 +4649,19 @@ msgstr ""
msgid "on<0><1/><2><3/>2>0>"
msgstr ""
-#: src/screens/Settings/Settings.tsx:303
+#: src/screens/Settings/Settings.tsx:304
msgid "Onboarding reset"
msgstr ""
-#: src/view/com/composer/Composer.tsx:331
+#: src/view/com/composer/Composer.tsx:346
msgid "One or more GIFs is missing alt text."
msgstr ""
-#: src/view/com/composer/Composer.tsx:328
+#: src/view/com/composer/Composer.tsx:343
msgid "One or more images is missing alt text."
msgstr ""
-#: src/view/com/composer/Composer.tsx:338
+#: src/view/com/composer/Composer.tsx:353
msgid "One or more videos is missing alt text."
msgstr ""
@@ -4860,11 +4669,11 @@ msgstr ""
msgid "Only .jpg and .png files are supported"
msgstr ""
-#: src/components/WhoCanReply.tsx:217
+#: src/components/WhoCanReply.tsx:222
msgid "Only {0} can reply."
msgstr ""
-#: src/screens/Signup/StepHandle.tsx:152
+#: src/screens/Signup/StepHandle.tsx:156
msgid "Only contains letters, numbers, and hyphens"
msgstr ""
@@ -4876,13 +4685,13 @@ msgstr ""
msgid "Only WebVTT (.vtt) files are supported"
msgstr ""
-#: src/components/Lists.tsx:88
+#: src/components/Lists.tsx:94
msgid "Oops, something went wrong!"
msgstr ""
-#: src/components/Lists.tsx:167
-#: src/components/StarterPack/ProfileStarterPacks.tsx:322
-#: src/components/StarterPack/ProfileStarterPacks.tsx:331
+#: src/components/Lists.tsx:173
+#: src/components/StarterPack/ProfileStarterPacks.tsx:321
+#: src/components/StarterPack/ProfileStarterPacks.tsx:330
#: src/screens/Settings/AppPasswords.tsx:59
#: src/screens/Settings/components/ChangeHandleDialog.tsx:104
#: src/screens/Settings/NotificationSettings.tsx:54
@@ -4890,7 +4699,7 @@ msgstr ""
msgid "Oops!"
msgstr ""
-#: src/screens/Onboarding/StepFinished.tsx:260
+#: src/screens/Onboarding/StepFinished.tsx:267
msgid "Open"
msgstr ""
@@ -4902,22 +4711,17 @@ msgstr ""
msgid "Open avatar creator"
msgstr ""
-#: src/screens/Settings/AccountSettings.tsx:127
-msgid "Open change handle dialog"
-msgstr ""
-
-#: src/screens/Messages/components/ChatListItem.tsx:272
-#: src/screens/Messages/components/ChatListItem.tsx:273
+#: src/screens/Messages/components/ChatListItem.tsx:290
+#: src/screens/Messages/components/ChatListItem.tsx:291
msgid "Open conversation options"
msgstr ""
-#: src/components/Layout/Header/index.tsx:145
+#: src/components/Layout/Header/index.tsx:150
msgid "Open drawer menu"
msgstr ""
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1228
-#: src/view/com/composer/Composer.tsx:1229
+#: src/view/com/composer/Composer.tsx:1243
msgid "Open emoji picker"
msgstr ""
@@ -4930,34 +4734,22 @@ msgstr ""
msgid "Open feed options menu"
msgstr ""
-#: src/screens/Settings/Settings.tsx:208
-msgid "Open helpdesk in browser"
-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:90
msgid "Open message options"
msgstr ""
-#: src/screens/Settings/Settings.tsx:329
+#: src/screens/Settings/Settings.tsx:330
msgid "Open moderation debug page"
msgstr ""
-#: src/screens/Moderation/index.tsx:204
+#: src/screens/Moderation/index.tsx:220
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:70
msgid "Open post options menu"
msgstr ""
@@ -4966,12 +4758,12 @@ msgstr ""
msgid "Open starter pack menu"
msgstr ""
-#: src/screens/Settings/Settings.tsx:322
-#: src/screens/Settings/Settings.tsx:336
+#: src/screens/Settings/Settings.tsx:323
+#: src/screens/Settings/Settings.tsx:337
msgid "Open storybook page"
msgstr ""
-#: src/screens/Settings/Settings.tsx:315
+#: src/screens/Settings/Settings.tsx:316
msgid "Open system log"
msgstr ""
@@ -4987,41 +4779,29 @@ msgstr ""
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/screens/Settings/AccountSettings.tsx:127
+msgid "Opens change handle dialog"
+msgstr ""
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35
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/composer/Composer.tsx:1244
+msgid "Opens emoji picker"
+msgstr ""
#: src/view/com/auth/SplashScreen.tsx:49
#: src/view/com/auth/SplashScreen.web.tsx:111
@@ -5037,77 +4817,24 @@ msgstr ""
msgid "Opens GIF select dialog"
msgstr ""
+#: src/screens/Settings/Settings.tsx:208
+msgid "Opens helpdesk in browser"
+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:233
+#: src/screens/Login/LoginForm.tsx:241
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/NotificationFeedItem.tsx:679
-#: src/view/com/util/UserAvatar.tsx:436
+#: src/view/com/util/UserAvatar.tsx:437
msgid "Opens this profile"
msgstr ""
@@ -5115,12 +4842,8 @@ msgstr ""
msgid "Opens video picker"
msgstr ""
-#: src/view/com/util/forms/DropdownButton.tsx:296
-msgid "Option {0} of {numItems}"
-msgstr ""
-
-#: src/components/dms/ReportDialog.tsx:178
-#: src/components/ReportDialog/SubmitView.tsx:167
+#: src/components/dms/ReportDialog.tsx:219
+#: src/components/ReportDialog/SubmitView.tsx:168
msgid "Optionally provide additional information below:"
msgstr ""
@@ -5128,7 +4851,7 @@ msgstr ""
msgid "Options:"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:388
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:417
msgid "Or combine these options:"
msgstr ""
@@ -5149,19 +4872,19 @@ msgstr ""
msgid "Other account"
msgstr ""
-#: src/view/screens/Settings/index.tsx:380
-#~ msgid "Other accounts"
-#~ msgstr ""
-
#: src/view/com/composer/select-language/SelectLangBtn.tsx:93
msgid "Other..."
msgstr ""
+#: src/components/dms/ReportDialog.tsx:339
+msgid "Our moderation team has received your report."
+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:184
+#: src/components/Lists.tsx:190
#: src/view/screens/NotFound.tsx:47
msgid "Page not found"
msgstr ""
@@ -5170,10 +4893,10 @@ msgstr ""
msgid "Page Not Found"
msgstr ""
-#: src/screens/Login/LoginForm.tsx:212
+#: src/screens/Login/LoginForm.tsx:220
#: src/screens/Settings/AccountSettings.tsx:117
#: src/screens/Settings/AccountSettings.tsx:121
-#: src/screens/Signup/StepInfo/index.tsx:192
+#: src/screens/Signup/StepInfo/index.tsx:186
#: src/view/com/modals/DeleteAccount.tsx:239
#: src/view/com/modals/DeleteAccount.tsx:246
msgid "Password"
@@ -5202,15 +4925,15 @@ msgid "Pause video"
msgstr ""
#: src/screens/StarterPack/StarterPackScreen.tsx:182
-#: src/view/screens/Search/Search.tsx:519
+#: src/view/screens/Search/Search.tsx:512
msgid "People"
msgstr ""
-#: src/Navigation.tsx:185
+#: src/Navigation.tsx:195
msgid "People followed by @{0}"
msgstr ""
-#: src/Navigation.tsx:178
+#: src/Navigation.tsx:188
msgid "People following @{0}"
msgstr ""
@@ -5239,11 +4962,20 @@ msgstr ""
msgid "Pictures meant for adults."
msgstr ""
+#: src/screens/Search/components/ExploreTrendingVideos.tsx:173
+#: src/screens/Search/components/ExploreTrendingVideos.tsx:178
+msgid "Pin"
+msgstr ""
+
#: src/screens/Profile/components/ProfileFeedHeader.tsx:519
#: src/screens/Profile/components/ProfileFeedHeader.tsx:526
msgid "Pin feed"
msgstr ""
+#: src/screens/Search/components/ExploreTrendingVideos.tsx:167
+msgid "Pin the trending videos feed to your home screen for easy access"
+msgstr ""
+
#: src/view/screens/ProfileList.tsx:685
msgid "Pin to home"
msgstr ""
@@ -5252,8 +4984,8 @@ msgstr ""
msgid "Pin to Home"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:380
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:387
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:390
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:397
msgid "Pin to your profile"
msgstr ""
@@ -5284,24 +5016,31 @@ msgstr ""
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:107
+#: src/view/com/util/post-embeds/VideoEmbed.tsx:134
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321
msgid "Play video"
msgstr ""
#: 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/GifEmbed.tsx:42
+msgid "Plays or pauses the GIF"
+msgstr ""
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141
+msgid "Plays or pauses the video"
+msgstr ""
+
#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:106
msgid "Plays the GIF"
msgstr ""
+#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59
+msgid "Plays the video"
+msgstr ""
+
#: src/screens/Signup/state.ts:217
msgid "Please choose your handle."
msgstr ""
@@ -5319,18 +5058,14 @@ msgstr ""
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/screens/Login/SetNewPasswordForm.tsx:56
+msgid "Please enter a password."
+msgstr ""
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:114
msgid "Please enter a unique name for this app password or use our randomly generated one."
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 ""
@@ -5344,10 +5079,18 @@ msgstr ""
msgid "Please enter your invite code."
msgstr ""
+#: src/screens/Login/LoginForm.tsx:95
+msgid "Please enter your password"
+msgstr ""
+
#: src/view/com/modals/DeleteAccount.tsx:235
msgid "Please enter your password as well:"
msgstr ""
+#: src/screens/Login/LoginForm.tsx:90
+msgid "Please enter your username"
+msgstr ""
+
#: src/components/moderation/LabelsOnMeDialog.tsx:265
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr ""
@@ -5370,11 +5113,15 @@ msgstr ""
msgid "Politics"
msgstr ""
+#: src/screens/Search/components/ExploreTrendingVideos.tsx:116
+msgid "Popular videos in your network."
+msgstr ""
+
#: src/view/com/composer/labels/LabelsBtn.tsx:157
msgid "Porn"
msgstr ""
-#: src/view/com/composer/Composer.tsx:944
+#: src/view/com/composer/Composer.tsx:959
msgctxt "action"
msgid "Post"
msgstr ""
@@ -5384,7 +5131,7 @@ msgctxt "description"
msgid "Post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:942
+#: src/view/com/composer/Composer.tsx:957
msgctxt "action"
msgid "Post All"
msgstr ""
@@ -5393,14 +5140,14 @@ msgstr ""
msgid "Post by {0}"
msgstr ""
-#: src/Navigation.tsx:204
-#: src/Navigation.tsx:211
-#: src/Navigation.tsx:218
-#: src/Navigation.tsx:225
+#: src/Navigation.tsx:214
+#: src/Navigation.tsx:221
+#: src/Navigation.tsx:228
+#: src/Navigation.tsx:235
msgid "Post by @{0}"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:175
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:177
msgid "Post deleted"
msgstr ""
@@ -5408,6 +5155,10 @@ msgstr ""
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr ""
+#: src/screens/VideoFeed/index.tsx:511
+msgid "Post has been deleted"
+msgstr ""
+
#: src/view/com/post-thread/PostThread.tsx:266
msgid "Post hidden"
msgstr ""
@@ -5422,15 +5173,20 @@ msgstr ""
msgid "Post Hidden by You"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:287
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:99
msgid "Post interaction settings"
msgstr ""
+#: src/Navigation.tsx:163
+#: src/screens/ModerationInteractionSettings/index.tsx:34
+msgid "Post Interaction Settings"
+msgstr ""
+
#: src/view/com/composer/select-language/SelectLangBtn.tsx:89
msgid "Post language"
msgstr ""
-#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:76
+#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:77
msgid "Post Languages"
msgstr ""
@@ -5447,16 +5203,8 @@ msgstr ""
msgid "Post unpinned"
msgstr ""
-#: src/lib/api/index.ts:106
-#~ msgid "Posting..."
-#~ msgstr ""
-
-#: src/components/TagMenu/index.tsx:268
-msgid "posts"
-msgstr ""
-
#: src/screens/StarterPack/StarterPackScreen.tsx:184
-#: src/view/screens/Profile.tsx:231
+#: src/view/screens/Profile.tsx:233
msgid "Posts"
msgstr ""
@@ -5480,12 +5228,8 @@ msgstr ""
msgid "Press to attempt reconnection"
msgstr ""
-#: src/components/forms/HostingProvider.tsx:46
-msgid "Press to change hosting provider"
-msgstr ""
-
#: src/components/Error.tsx:60
-#: src/components/Lists.tsx:93
+#: src/components/Lists.tsx:99
#: src/screens/Messages/components/MessageListError.tsx:24
#: src/screens/Signup/BackNextButtons.tsx:47
msgid "Press to retry"
@@ -5508,10 +5252,6 @@ msgstr ""
msgid "Prioritize your Follows"
msgstr ""
-#: src/view/screens/PreferencesThreads.tsx:92
-#~ msgid "Prioritize Your Follows"
-#~ msgstr ""
-
#: src/screens/Settings/NotificationSettings.tsx:67
msgid "Priority notifications"
msgstr ""
@@ -5526,21 +5266,21 @@ msgstr ""
msgid "Privacy and security"
msgstr ""
-#: src/Navigation.tsx:347
+#: src/Navigation.tsx:357
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36
msgid "Privacy and Security"
msgstr ""
-#: src/Navigation.tsx:271
-#: src/screens/Settings/AboutSettings.tsx:45
-#: src/screens/Settings/AboutSettings.tsx:48
+#: src/Navigation.tsx:281
+#: src/screens/Settings/AboutSettings.tsx:47
+#: src/screens/Settings/AboutSettings.tsx:50
#: src/view/screens/PrivacyPolicy.tsx:31
-#: src/view/shell/Drawer.tsx:624
-#: src/view/shell/Drawer.tsx:625
+#: src/view/shell/Drawer.tsx:629
+#: src/view/shell/Drawer.tsx:630
msgid "Privacy Policy"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1641
+#: src/view/com/composer/Composer.tsx:1657
msgid "Processing video..."
msgstr ""
@@ -5550,14 +5290,14 @@ msgid "Processing..."
msgstr ""
#: src/view/screens/DebugMod.tsx:919
-#: src/view/screens/Profile.tsx:362
+#: src/view/screens/Profile.tsx:372
msgid "profile"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBar.tsx:276
-#: src/view/shell/desktop/LeftNav.tsx:481
+#: src/view/shell/bottom-bar/BottomBar.tsx:275
+#: src/view/shell/desktop/LeftNav.tsx:679
#: src/view/shell/Drawer.tsx:71
-#: src/view/shell/Drawer.tsx:516
+#: src/view/shell/Drawer.tsx:521
msgid "Profile"
msgstr ""
@@ -5566,11 +5306,7 @@ msgstr ""
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:246
+#: src/screens/Onboarding/StepFinished.tsx:253
msgid "Public"
msgstr ""
@@ -5582,22 +5318,6 @@ msgstr ""
msgid "Public, sharable lists which can be used to drive feeds."
msgstr ""
-#: src/view/screens/ModerationModlists.tsx:75
-#~ msgid "Public, shareable lists of users to mute or block in bulk."
-#~ msgstr ""
-
-#: src/view/screens/Lists.tsx:81
-#~ 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 ""
@@ -5617,11 +5337,11 @@ msgstr ""
msgid "Quote post"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:303
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:305
msgid "Quote post was re-attached"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:302
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:304
msgid "Quote post was successfully detached"
msgstr ""
@@ -5632,11 +5352,7 @@ msgstr ""
msgid "Quote posts disabled"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:314
-#~ msgid "Quote posts enabled"
-#~ msgstr ""
-
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:299
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:328
msgid "Quote settings"
msgstr ""
@@ -5655,12 +5371,12 @@ msgstr ""
msgid "Random (aka \"Poster's Roulette\")"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:583
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:581
msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:565
#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:575
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:585
msgid "Re-attach quote"
msgstr ""
@@ -5668,6 +5384,14 @@ msgstr ""
msgid "Reactivate your account"
msgstr ""
+#: src/screens/VideoFeed/index.tsx:936
+msgid "Read less"
+msgstr ""
+
+#: src/screens/VideoFeed/index.tsx:936
+msgid "Read more"
+msgstr ""
+
#: src/view/com/auth/SplashScreen.web.tsx:171
msgid "Read the Bluesky blog"
msgstr ""
@@ -5682,15 +5406,20 @@ msgstr ""
msgid "Read the Bluesky Terms of Service"
msgstr ""
-#: src/components/dms/ReportDialog.tsx:169
+#: src/screens/Takendown.tsx:162
+#: src/screens/Takendown.tsx:170
+msgid "Reason for appeal"
+msgstr ""
+
+#: src/components/dms/ReportDialog.tsx:210
msgid "Reason:"
msgstr ""
-#: src/view/screens/Search/Search.tsx:1041
+#: src/view/screens/Search/Search.tsx:992
msgid "Recent Searches"
msgstr ""
-#: src/screens/Search/components/ExploreRecommendations.tsx:50
+#: src/screens/Search/components/ExploreRecommendations.tsx:52
msgid "Recommended"
msgstr ""
@@ -5698,11 +5427,7 @@ msgstr ""
msgid "Reconnect"
msgstr ""
-#: src/view/screens/Notifications.tsx:144
-#~ msgid "Refresh notifications"
-#~ msgstr ""
-
-#: src/screens/Messages/ChatList.tsx:163
+#: src/screens/Messages/ChatList.tsx:171
msgid "Reload conversations"
msgstr ""
@@ -5710,7 +5435,7 @@ msgstr ""
#: src/components/FeedCard.tsx:315
#: src/components/StarterPack/Wizard/WizardListCard.tsx:101
#: src/components/StarterPack/Wizard/WizardListCard.tsx:108
-#: src/screens/Settings/Settings.tsx:466
+#: src/screens/Settings/Settings.tsx:468
#: src/view/com/feeds/FeedSourceCard.tsx:322
#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
@@ -5722,8 +5447,8 @@ msgstr ""
msgid "Remove {displayName} from starter pack"
msgstr ""
-#: src/screens/Settings/Settings.tsx:445
-#: src/screens/Settings/Settings.tsx:448
+#: src/screens/Settings/Settings.tsx:447
+#: src/screens/Settings/Settings.tsx:450
msgid "Remove account"
msgstr ""
@@ -5731,7 +5456,7 @@ msgstr ""
msgid "Remove attachment"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:403
+#: src/view/com/util/UserAvatar.tsx:404
msgid "Remove Avatar"
msgstr ""
@@ -5767,7 +5492,7 @@ msgstr ""
msgid "Remove from my feeds?"
msgstr ""
-#: src/screens/Settings/Settings.tsx:458
+#: src/screens/Settings/Settings.tsx:460
msgid "Remove from quick access?"
msgstr ""
@@ -5783,15 +5508,11 @@ msgstr ""
msgid "Remove mute word from your list"
msgstr ""
-#: src/view/screens/Search/Search.tsx:1089
+#: src/view/screens/Search/Search.tsx:1040
msgid "Remove profile"
msgstr ""
-#: src/view/screens/Search/Search.tsx:1091
-msgid "Remove profile from search history"
-msgstr ""
-
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:285
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:284
msgid "Remove quote"
msgstr ""
@@ -5836,7 +5557,11 @@ msgstr ""
msgid "Removed from your feeds"
msgstr ""
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:286
+#: src/view/screens/Search/Search.tsx:1042
+msgid "Removes profile from search history"
+msgstr ""
+
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:285
msgid "Removes quoted post"
msgstr ""
@@ -5845,7 +5570,7 @@ msgstr ""
msgid "Replace with Discover"
msgstr ""
-#: src/view/screens/Profile.tsx:232
+#: src/view/screens/Profile.tsx:234
msgid "Replies"
msgstr ""
@@ -5853,16 +5578,16 @@ msgstr ""
msgid "Replies disabled"
msgstr ""
-#: src/components/WhoCanReply.tsx:215
+#: src/components/WhoCanReply.tsx:220
msgid "Replies to this post are disabled."
msgstr ""
-#: src/view/com/composer/Composer.tsx:940
+#: src/view/com/composer/Composer.tsx:955
msgctxt "action"
msgid "Reply"
msgstr ""
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:263
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:273
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr ""
@@ -5876,11 +5601,11 @@ msgstr ""
msgid "Reply Hidden by You"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:355
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:384
msgid "Reply settings"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:340
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:369
msgid "Reply settings are chosen by the author of the thread"
msgstr ""
@@ -5910,27 +5635,27 @@ msgctxt "description"
msgid "Reply to you"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:333
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:335
msgid "Reply visibility updated"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:332
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:334
msgid "Reply was successfully hidden"
msgstr ""
#: src/components/dms/MessageMenu.tsx:132
-#: src/components/dms/MessagesListBlockedFooter.tsx:77
#: src/components/dms/MessagesListBlockedFooter.tsx:84
+#: src/components/dms/MessagesListBlockedFooter.tsx:91
msgid "Report"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:299
-#: src/view/com/profile/ProfileMenu.tsx:302
+#: src/view/com/profile/ProfileMenu.tsx:309
+#: src/view/com/profile/ProfileMenu.tsx:312
msgid "Report Account"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:197
-#: src/components/dms/ConvoMenu.tsx:200
+#: src/components/dms/ConvoMenu.tsx:258
+#: src/components/dms/ConvoMenu.tsx:261
#: src/components/dms/ReportConversationPrompt.tsx:17
msgid "Report conversation"
msgstr ""
@@ -5952,8 +5677,8 @@ msgstr ""
msgid "Report message"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:611
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:613
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:621
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:623
msgid "Report post"
msgstr ""
@@ -5962,33 +5687,37 @@ msgstr ""
msgid "Report starter pack"
msgstr ""
-#: src/components/ReportDialog/SelectReportOptionView.tsx:43
+#: src/components/dms/ReportDialog.tsx:336
+msgid "Report submitted"
+msgstr ""
+
+#: src/components/ReportDialog/SelectReportOptionView.tsx:41
msgid "Report this content"
msgstr ""
-#: src/components/ReportDialog/SelectReportOptionView.tsx:56
+#: src/components/ReportDialog/SelectReportOptionView.tsx:54
msgid "Report this feed"
msgstr ""
-#: src/components/ReportDialog/SelectReportOptionView.tsx:53
+#: src/components/ReportDialog/SelectReportOptionView.tsx:51
msgid "Report this list"
msgstr ""
-#: src/components/dms/ReportDialog.tsx:44
-#: src/components/dms/ReportDialog.tsx:137
-#: src/components/ReportDialog/SelectReportOptionView.tsx:62
+#: src/components/dms/ReportDialog.tsx:58
+#: src/components/dms/ReportDialog.tsx:178
+#: src/components/ReportDialog/SelectReportOptionView.tsx:60
msgid "Report this message"
msgstr ""
-#: src/components/ReportDialog/SelectReportOptionView.tsx:50
+#: src/components/ReportDialog/SelectReportOptionView.tsx:48
msgid "Report this post"
msgstr ""
-#: src/components/ReportDialog/SelectReportOptionView.tsx:59
+#: src/components/ReportDialog/SelectReportOptionView.tsx:57
msgid "Report this starter pack"
msgstr ""
-#: src/components/ReportDialog/SelectReportOptionView.tsx:47
+#: src/components/ReportDialog/SelectReportOptionView.tsx:45
msgid "Report this user"
msgstr ""
@@ -6031,10 +5760,6 @@ msgstr ""
msgid "Reposted by you"
msgstr ""
-#: src/view/com/notifications/FeedItem.tsx:180
-#~ msgid "reposted your post"
-#~ msgstr ""
-
#: src/view/com/post-thread/PostThreadItem.tsx:222
msgid "Reposts of this post"
msgstr ""
@@ -6058,11 +5783,7 @@ msgstr ""
msgid "Require an email code to log in to your account."
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
+#: src/screens/Signup/StepInfo/index.tsx:153
msgid "Required for this provider"
msgstr ""
@@ -6093,8 +5814,8 @@ msgstr ""
msgid "Reset Code"
msgstr ""
-#: src/screens/Settings/Settings.tsx:343
-#: src/screens/Settings/Settings.tsx:345
+#: src/screens/Settings/Settings.tsx:344
+#: src/screens/Settings/Settings.tsx:346
msgid "Reset onboarding state"
msgstr ""
@@ -6102,40 +5823,27 @@ msgstr ""
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:306
+#: src/screens/Login/LoginForm.tsx:314
msgid "Retries login"
msgstr ""
-#: src/view/com/util/error/ErrorMessage.tsx:57
+#: src/view/com/util/error/ErrorMessage.tsx:62
#: src/view/com/util/error/ErrorScreen.tsx:99
msgid "Retries the last action, which errored out"
msgstr ""
#: src/components/dms/MessageItem.tsx:245
#: src/components/Error.tsx:65
-#: src/components/Lists.tsx:104
-#: src/components/StarterPack/ProfileStarterPacks.tsx:336
-#: src/screens/Login/LoginForm.tsx:305
-#: src/screens/Login/LoginForm.tsx:312
-#: src/screens/Messages/ChatList.tsx:169
+#: src/components/Lists.tsx:110
+#: src/components/StarterPack/ProfileStarterPacks.tsx:335
+#: src/screens/Login/LoginForm.tsx:313
+#: src/screens/Login/LoginForm.tsx:320
+#: src/screens/Messages/ChatList.tsx:177
#: 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:53
-#: src/view/com/util/error/ErrorMessage.tsx:55
+#: src/view/com/util/error/ErrorMessage.tsx:60
#: src/view/com/util/error/ErrorScreen.tsx:97
#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55
#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57
@@ -6145,7 +5853,6 @@ msgstr ""
#: src/components/Error.tsx:73
#: src/screens/List/ListHiddenScreen.tsx:216
#: src/screens/StarterPack/StarterPackScreen.tsx:752
-#: src/view/screens/ProfileList.tsx:1010
msgid "Return to previous page"
msgstr ""
@@ -6153,18 +5860,25 @@ msgstr ""
msgid "Returns to home page"
msgstr ""
-#: src/screens/Profile/ProfileFeed/index.tsx:83
+#: src/screens/Profile/ProfileFeed/index.tsx:90
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:540
+#: src/screens/VideoFeed/index.tsx:1103
#: src/view/screens/NotFound.tsx:60
+#: src/view/screens/ProfileList.tsx:1010
msgid "Returns to previous page"
msgstr ""
-#: src/components/dialogs/BirthDateSettings.tsx:124
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:438
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:444
+#: src/screens/StarterPack/Wizard/index.tsx:287
+msgid "Returns to the previous step"
+msgstr ""
+
+#: src/components/dialogs/BirthDateSettings.tsx:120
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:478
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:484
#: src/components/StarterPack/QrCodeDialog.tsx:185
#: src/screens/Profile/Header/EditProfileDialog.tsx:238
#: src/screens/Profile/Header/EditProfileDialog.tsx:252
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:245
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:243
#: src/view/com/composer/GifAltText.tsx:190
#: src/view/com/composer/GifAltText.tsx:199
#: src/view/com/composer/photos/EditImageDialog.web.tsx:77
@@ -6183,7 +5897,7 @@ msgctxt "action"
msgid "Save"
msgstr ""
-#: src/components/dialogs/BirthDateSettings.tsx:118
+#: src/components/dialogs/BirthDateSettings.tsx:114
msgid "Save birthday"
msgstr ""
@@ -6196,10 +5910,6 @@ msgstr ""
msgid "Save Changes"
msgstr ""
-#: src/view/com/modals/ChangeHandle.tsx:158
-#~ msgid "Save handle change"
-#~ msgstr ""
-
#: src/components/StarterPack/ShareDialog.tsx:150
#: src/components/StarterPack/ShareDialog.tsx:157
msgid "Save image"
@@ -6209,7 +5919,7 @@ msgstr ""
msgid "Save image crop"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:231
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
msgid "Save new handle"
msgstr ""
@@ -6239,10 +5949,6 @@ msgstr ""
msgid "Saves any changes to your profile"
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 ""
@@ -6266,12 +5972,13 @@ msgstr ""
#: src/components/dms/dialogs/SearchablePeopleList.tsx:487
#: src/components/forms/SearchInput.tsx:34
#: src/components/forms/SearchInput.tsx:36
-#: src/Navigation.tsx:599
+#: src/Navigation.tsx:617
#: src/view/com/modals/ListAddRemoveUsers.tsx:76
-#: src/view/screens/Search/Search.tsx:577
-#: src/view/shell/bottom-bar/BottomBar.tsx:183
-#: src/view/shell/desktop/LeftNav.tsx:407
-#: src/view/shell/Drawer.tsx:365
+#: src/view/screens/Search/Search.tsx:561
+#: src/view/screens/Search/Search.tsx:807
+#: src/view/shell/bottom-bar/BottomBar.tsx:182
+#: src/view/shell/desktop/LeftNav.tsx:605
+#: src/view/shell/Drawer.tsx:370
msgid "Search"
msgstr ""
@@ -6291,7 +5998,7 @@ msgstr ""
msgid "Search for \"{query}\""
msgstr ""
-#: src/view/screens/Search/Search.tsx:987
+#: src/view/screens/Search/Search.tsx:938
msgid "Search for \"{searchText}\""
msgstr ""
@@ -6299,6 +6006,10 @@ msgstr ""
msgid "Search for feeds that you want to suggest to others."
msgstr ""
+#: src/view/screens/Search/Search.tsx:832
+msgid "Search for posts, users, or feeds"
+msgstr ""
+
#: src/view/com/modals/ListAddRemoveUsers.tsx:71
msgid "Search for users"
msgstr ""
@@ -6308,9 +6019,7 @@ msgid "Search GIFs"
msgstr ""
#: src/components/dms/dialogs/SearchablePeopleList.tsx:507
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:508
#: src/components/ProgressGuide/FollowDialog.tsx:764
-#: src/components/ProgressGuide/FollowDialog.tsx:765
msgid "Search profiles"
msgstr ""
@@ -6318,24 +6027,29 @@ msgstr ""
msgid "Search Tenor"
msgstr ""
+#: src/components/dms/dialogs/SearchablePeopleList.tsx:508
+#: src/components/ProgressGuide/FollowDialog.tsx:765
+msgid "Searches for profiles"
+msgstr ""
+
#: src/view/com/modals/ChangeEmail.tsx:105
msgid "Security Step Required"
msgstr ""
-#: src/components/TagMenu/index.web.tsx:77
-msgid "See {truncatedTag} posts"
+#: src/components/RichTextTag.tsx:111
+msgid "See {tag} posts"
msgstr ""
-#: src/components/TagMenu/index.web.tsx:94
-msgid "See {truncatedTag} posts by user"
+#: src/components/RichTextTag.tsx:124
+msgid "See {tag} posts by user"
msgstr ""
-#: src/components/TagMenu/index.tsx:155
-msgid "See <0>{displayTag}0> posts"
+#: src/components/RichTextTag.tsx:118
+msgid "See #{tag} posts"
msgstr ""
-#: src/components/TagMenu/index.tsx:203
-msgid "See <0>{displayTag}0> posts by this user"
+#: src/components/RichTextTag.tsx:132
+msgid "See #{tag} posts by user"
msgstr ""
#: src/view/com/auth/SplashScreen.web.tsx:176
@@ -6346,18 +6060,10 @@ msgstr ""
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/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:194
msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause"
msgstr ""
-#: src/view/com/util/Selector.tsx:107
-#~ msgid "Select {item}"
-#~ msgstr ""
-
#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67
msgid "Select a color"
msgstr ""
@@ -6406,10 +6112,6 @@ msgstr ""
msgid "Select moderator"
msgstr ""
-#: src/view/com/util/Selector.tsx:108
-#~ msgid "Select option {i} of {numItems}"
-#~ msgstr ""
-
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66
msgid "Select subtitle file (.vtt)"
msgstr ""
@@ -6418,14 +6120,10 @@ msgstr ""
msgid "Select the {emojiName} emoji as your avatar"
msgstr ""
-#: src/components/ReportDialog/SubmitView.tsx:140
+#: src/components/ReportDialog/SubmitView.tsx:141
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:100
msgid "Select video"
msgstr ""
@@ -6442,7 +6140,7 @@ msgstr ""
msgid "Select your app language for the default text to display in the app."
msgstr ""
-#: src/screens/Signup/StepInfo/index.tsx:223
+#: src/screens/Signup/StepInfo/index.tsx:217
msgid "Select your date of birth"
msgstr ""
@@ -6454,14 +6152,14 @@ msgstr ""
msgid "Select your preferred language for translations in your feed."
msgstr ""
+#: src/view/com/util/forms/DropdownButton.tsx:297
+msgid "Selects option {0} of {numItems}"
+msgstr ""
+
#: src/components/dms/ChatEmptyPill.tsx:38
msgid "Send a neat website!"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:118
-#~ msgid "Send Bluesky referrer"
-#~ msgstr ""
-
#: src/components/dialogs/VerifyEmailDialog.tsx:232
msgid "Send Confirmation"
msgstr ""
@@ -6484,7 +6182,7 @@ msgctxt "action"
msgid "Send Email"
msgstr ""
-#: src/view/shell/Drawer.tsx:312
+#: src/view/shell/Drawer.tsx:317
msgid "Send feedback"
msgstr ""
@@ -6497,10 +6195,10 @@ msgstr ""
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
+#: src/components/dms/ReportDialog.tsx:269
+#: src/components/dms/ReportDialog.tsx:272
+#: src/components/ReportDialog/SubmitView.tsx:221
+#: src/components/ReportDialog/SubmitView.tsx:225
msgid "Send report"
msgstr ""
@@ -6513,8 +6211,8 @@ msgstr ""
msgid "Send verification email"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:423
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:426
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:433
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:436
msgid "Send via direct message"
msgstr ""
@@ -6522,7 +6220,7 @@ msgstr ""
msgid "Sends email with confirmation code for account deletion"
msgstr ""
-#: src/view/com/auth/server-input/index.tsx:111
+#: src/view/com/auth/server-input/index.tsx:163
msgid "Server address"
msgstr ""
@@ -6530,53 +6228,33 @@ msgstr ""
msgid "Set app icon to {0}"
msgstr ""
-#: src/screens/Moderation/index.tsx:290
+#: src/screens/Moderation/index.tsx:306
msgid "Set birthdate"
msgstr ""
-#: src/screens/Login/SetNewPasswordForm.tsx:96
+#: src/screens/Login/SetNewPasswordForm.tsx:102
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:47
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:160
+#: src/Navigation.tsx:170
#: src/screens/Settings/Settings.tsx:80
-#: src/view/shell/desktop/LeftNav.tsx:499
-#: src/view/shell/Drawer.tsx:529
+#: src/view/shell/desktop/LeftNav.tsx:697
+#: src/view/shell/Drawer.tsx:534
msgid "Settings"
msgstr ""
+#: src/screens/ModerationInteractionSettings/index.tsx:102
+msgid "Settings saved"
+msgstr ""
+
#: src/view/com/composer/labels/LabelsBtn.tsx:174
msgid "Sexual activity or erotic nudity."
msgstr ""
@@ -6590,11 +6268,11 @@ msgstr ""
#: src/screens/StarterPack/StarterPackScreen.tsx:423
#: src/screens/StarterPack/StarterPackScreen.tsx:595
#: src/screens/Topic.tsx:102
-#: src/view/com/profile/ProfileMenu.tsx:195
-#: src/view/com/profile/ProfileMenu.tsx:204
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:434
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:443
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:346
+#: src/view/com/profile/ProfileMenu.tsx:205
+#: src/view/com/profile/ProfileMenu.tsx:214
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:444
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:453
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:356
#: src/view/screens/ProfileList.tsx:483
msgid "Share"
msgstr ""
@@ -6612,17 +6290,12 @@ msgstr ""
msgid "Share a fun fact!"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:353
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:691
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:362
+#: src/view/com/profile/ProfileMenu.tsx:388
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:723
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:372
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:123
#: src/components/StarterPack/ShareDialog.tsx:130
#: src/screens/StarterPack/StarterPackScreen.tsx:599
@@ -6659,7 +6332,7 @@ msgstr ""
msgid "Share your favorite feed!"
msgstr ""
-#: src/Navigation.tsx:256
+#: src/Navigation.tsx:266
msgid "Shared Preferences Tester"
msgstr ""
@@ -6680,6 +6353,8 @@ msgstr ""
#: src/components/moderation/ScreenHider.tsx:172
#: src/components/moderation/ScreenHider.tsx:175
#: src/screens/List/ListHiddenScreen.tsx:187
+#: src/screens/VideoFeed/index.tsx:609
+#: src/screens/VideoFeed/index.tsx:615
msgid "Show anyway"
msgstr ""
@@ -6696,12 +6371,8 @@ msgstr ""
msgid "Show hidden replies"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:805
-msgid "Show information about when this post was created"
-msgstr ""
-
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:473
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:475
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:483
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:485
msgid "Show less like this"
msgstr ""
@@ -6709,14 +6380,14 @@ msgstr ""
msgid "Show list anyway"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:592
+#: src/view/com/post-thread/PostThreadItem.tsx:597
#: src/view/com/post/Post.tsx:242
#: src/view/com/posts/PostFeedItem.tsx:509
msgid "Show More"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:465
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:467
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:475
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:477
msgid "Show more like this"
msgstr ""
@@ -6724,32 +6395,16 @@ msgstr ""
msgid "Show muted replies"
msgstr ""
-#: src/screens/Settings/Settings.tsx:104
-msgid "Show other accounts you can switch to"
-msgstr ""
-
-#: src/view/screens/PreferencesFollowingFeed.tsx:155
-#~ msgid "Show Posts from My Feeds"
-#~ msgstr ""
-
#: src/screens/Settings/FollowingFeedPreferences.tsx:104
#: src/screens/Settings/FollowingFeedPreferences.tsx:114
msgid "Show quote posts"
msgstr ""
-#: src/view/screens/PreferencesFollowingFeed.tsx:119
-#~ msgid "Show Quote Posts"
-#~ msgstr ""
-
#: src/screens/Settings/FollowingFeedPreferences.tsx:68
#: src/screens/Settings/FollowingFeedPreferences.tsx:78
msgid "Show replies"
msgstr ""
-#: src/view/screens/PreferencesFollowingFeed.tsx:61
-#~ msgid "Show Replies"
-#~ msgstr ""
-
#: src/view/com/post-thread/PostThread.tsx:622
msgid "Show replies as"
msgstr ""
@@ -6762,16 +6417,8 @@ msgstr ""
msgid "Show replies by people you follow before all other replies"
msgstr ""
-#: src/view/screens/PreferencesThreads.tsx:95
-#~ msgid "Show replies by people you follow before all other replies."
-#~ msgstr ""
-
-#: src/screens/Settings/ThreadPreferences.tsx:143
-#~ msgid "Show replies in a threaded view"
-#~ msgstr ""
-
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:539
#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:549
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:559
msgid "Show reply for everyone"
msgstr ""
@@ -6780,20 +6427,11 @@ msgstr ""
msgid "Show reposts"
msgstr ""
-#: src/view/screens/PreferencesFollowingFeed.tsx:85
-#~ msgid "Show Reposts"
-#~ msgstr ""
-
#: src/screens/Settings/FollowingFeedPreferences.tsx:129
#: src/screens/Settings/FollowingFeedPreferences.tsx:139
msgid "Show samples of your saved feeds in your Following feed"
msgstr ""
-#: src/components/moderation/ContentHider.tsx:152
-#: src/components/moderation/PostHider.tsx:79
-msgid "Show the content"
-msgstr ""
-
#: src/lib/moderation/useLabelBehaviorDescription.ts:58
msgid "Show warning"
msgstr ""
@@ -6802,21 +6440,32 @@ msgstr ""
msgid "Show warning and filter from feeds"
msgstr ""
+#: src/view/com/post-thread/PostThreadItem.tsx:810
+msgid "Shows information about when this post was created"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:104
+msgid "Shows other accounts you can switch to"
+msgstr ""
+
+#: src/components/moderation/ContentHider.tsx:152
+#: src/components/moderation/PostHider.tsx:79
+msgid "Shows the content"
+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:165
+#: src/screens/Login/LoginForm.tsx:173
#: src/view/com/auth/SplashScreen.tsx:61
#: src/view/com/auth/SplashScreen.tsx:69
#: src/view/com/auth/SplashScreen.web.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:131
-#: src/view/shell/bottom-bar/BottomBar.tsx:316
-#: src/view/shell/bottom-bar/BottomBar.tsx:317
+#: src/view/shell/bottom-bar/BottomBar.tsx:314
#: src/view/shell/bottom-bar/BottomBar.tsx:319
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:212
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:213
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:215
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:217
#: src/view/shell/NavSignupCard.tsx:57
#: src/view/shell/NavSignupCard.tsx:62
msgid "Sign in"
@@ -6841,53 +6490,33 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:225
#: src/screens/Settings/Settings.tsx:227
#: src/screens/Settings/Settings.tsx:259
+#: src/view/shell/desktop/LeftNav.tsx:208
+#: src/view/shell/desktop/LeftNav.tsx:291
+#: src/view/shell/desktop/LeftNav.tsx:294
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/screens/Settings/Settings.tsx:256
+#: src/view/shell/desktop/LeftNav.tsx:205
msgid "Sign out?"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBar.tsx:306
-#: src/view/shell/bottom-bar/BottomBar.tsx:307
-#: src/view/shell/bottom-bar/BottomBar.tsx:309
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:202
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:203
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:205
-#: src/view/shell/NavSignupCard.tsx:47
-#: src/view/shell/NavSignupCard.tsx:52
-msgid "Create account"
-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:314
+#: src/components/FeedInterstitials.tsx:335
msgid "Similar accounts"
msgstr ""
@@ -6909,7 +6538,7 @@ msgstr ""
msgid "Software Dev"
msgstr ""
-#: src/components/FeedInterstitials.tsx:445
+#: src/components/FeedInterstitials.tsx:470
msgid "Some other feeds you might like"
msgstr ""
@@ -6917,7 +6546,7 @@ msgstr ""
msgid "Some people can reply"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:102
+#: src/screens/Messages/Conversation.tsx:112
msgid "Something went wrong"
msgstr ""
@@ -6927,12 +6556,12 @@ msgid "Something went wrong, please try again"
msgstr ""
#: src/components/ReportDialog/index.tsx:54
-#: src/screens/Moderation/index.tsx:96
+#: src/screens/Moderation/index.tsx:97
#: src/screens/Profile/Sections/Labels.tsx:88
msgid "Something went wrong, please try again."
msgstr ""
-#: src/components/Lists.tsx:168
+#: src/components/Lists.tsx:174
#: src/screens/Settings/NotificationSettings.tsx:55
msgid "Something went wrong!"
msgstr ""
@@ -6941,7 +6570,7 @@ msgstr ""
msgid "Something wrong? Let us know."
msgstr ""
-#: src/App.native.tsx:122
+#: src/App.native.tsx:121
#: src/App.web.tsx:97
msgid "Sorry! Your session expired. Please log in again."
msgstr ""
@@ -6950,10 +6579,6 @@ msgstr ""
msgid "Sort replies"
msgstr ""
-#: src/view/screens/PreferencesThreads.tsx:64
-#~ msgid "Sort Replies"
-#~ msgstr ""
-
#: src/screens/Settings/ThreadPreferences.tsx:62
msgid "Sort replies by"
msgstr ""
@@ -6975,10 +6600,6 @@ msgstr ""
msgid "Spam; excessive mentions or replies"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:112
-#~ msgid "Specify Bluesky as a referer"
-#~ msgstr ""
-
#: src/screens/Onboarding/index.tsx:27
#: src/screens/Onboarding/state.ts:113
msgid "Sports"
@@ -7002,8 +6623,8 @@ msgstr ""
msgid "Start chat with {displayName}"
msgstr ""
-#: src/Navigation.tsx:408
-#: src/Navigation.tsx:413
+#: src/Navigation.tsx:418
+#: src/Navigation.tsx:423
#: src/screens/StarterPack/Wizard/index.tsx:186
msgid "Starter Pack"
msgstr ""
@@ -7025,16 +6646,16 @@ msgstr ""
msgid "Starter pack is invalid"
msgstr ""
-#: src/view/screens/Profile.tsx:236
+#: src/view/screens/Profile.tsx:239
msgid "Starter Packs"
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:244
+#: src/components/StarterPack/ProfileStarterPacks.tsx:243
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:53
-#: src/screens/Settings/AboutSettings.tsx:56
+#: src/screens/Settings/AboutSettings.tsx:55
+#: src/screens/Settings/AboutSettings.tsx:58
msgid "Status Page"
msgstr ""
@@ -7042,12 +6663,12 @@ msgstr ""
msgid "Step {0} of {1}"
msgstr ""
-#: src/screens/Settings/Settings.tsx:308
+#: src/screens/Settings/Settings.tsx:309
msgid "Storage cleared, you need to restart the app now."
msgstr ""
-#: src/Navigation.tsx:246
-#: src/screens/Settings/Settings.tsx:324
+#: src/Navigation.tsx:256
+#: src/screens/Settings/Settings.tsx:325
msgid "Storybook"
msgstr ""
@@ -7058,6 +6679,14 @@ msgstr ""
msgid "Submit"
msgstr ""
+#: src/screens/Takendown.tsx:70
+msgid "Submit appeal"
+msgstr ""
+
+#: src/screens/Takendown.tsx:76
+msgid "Submit Appeal"
+msgstr ""
+
#: src/view/screens/ProfileList.tsx:712
msgid "Subscribe"
msgstr ""
@@ -7082,11 +6711,11 @@ msgstr ""
msgid "Success!"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:353
+#: src/view/screens/Search/Explore.tsx:368
msgid "Suggested accounts"
msgstr ""
-#: src/components/FeedInterstitials.tsx:316
+#: src/components/FeedInterstitials.tsx:337
msgid "Suggested for you"
msgstr ""
@@ -7095,7 +6724,7 @@ msgstr ""
msgid "Suggestive"
msgstr ""
-#: src/Navigation.tsx:266
+#: src/Navigation.tsx:276
#: src/view/screens/Support.tsx:31
#: src/view/screens/Support.tsx:34
msgid "Support"
@@ -7103,7 +6732,8 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:102
#: src/screens/Settings/Settings.tsx:116
-#: src/screens/Settings/Settings.tsx:411
+#: src/screens/Settings/Settings.tsx:412
+#: src/view/shell/desktop/LeftNav.tsx:246
msgid "Switch account"
msgstr ""
@@ -7112,63 +6742,33 @@ msgstr ""
msgid "Switch Account"
msgstr ""
-#: src/view/screens/Settings/index.tsx:131
-#~ msgid "Switch to {0}"
-#~ msgstr ""
+#: src/view/shell/desktop/LeftNav.tsx:107
+msgid "Switch accounts"
+msgstr ""
-#: src/view/screens/Settings/index.tsx:132
-#~ msgid "Switches the account you are logged in to"
-#~ msgstr ""
+#: src/view/shell/desktop/LeftNav.tsx:254
+msgid "Switch to {0}"
+msgstr ""
#: src/screens/Settings/AppearanceSettings.tsx:97
#: src/screens/Settings/AppearanceSettings.tsx:147
msgid "System"
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:60
-#: src/screens/Settings/AboutSettings.tsx:63
-#: src/screens/Settings/Settings.tsx:317
+#: src/screens/Settings/AboutSettings.tsx:62
+#: src/screens/Settings/AboutSettings.tsx:65
+#: src/screens/Settings/Settings.tsx:318
msgid "System log"
msgstr ""
-#: src/components/TagMenu/index.tsx:110
-msgid "Tag menu: {displayTag}"
-msgstr ""
-
#: src/components/dialogs/MutedWords.tsx:282
msgid "Tags only"
msgstr ""
-#: src/screens/Settings/AppIconSettings/index.tsx:216
-msgid "Tap to change app icon"
-msgstr ""
-
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:138
-#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:174
-msgid "Tap to close the emoji picker"
-msgstr ""
-
#: src/components/ProgressGuide/Toast.tsx:156
msgid "Tap to dismiss"
msgstr ""
-#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135
-msgid "Tap to enter full screen"
-msgstr ""
-
-#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141
-msgid "Tap to play or pause"
-msgstr ""
-
-#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:158
-msgid "Tap to toggle sound"
-msgstr ""
-
-#: src/view/com/util/images/AutoSizedImage.tsx:199
-#: src/view/com/util/images/AutoSizedImage.tsx:221
-msgid "Tap to view full image"
-msgstr ""
-
#: src/state/shell/progress-guide.tsx:233
msgid "Task complete - 10 follows!"
msgstr ""
@@ -7203,12 +6803,12 @@ msgstr ""
msgid "Terms"
msgstr ""
-#: src/Navigation.tsx:276
-#: src/screens/Settings/AboutSettings.tsx:37
-#: src/screens/Settings/AboutSettings.tsx:40
+#: src/Navigation.tsx:286
+#: src/screens/Settings/AboutSettings.tsx:39
+#: src/screens/Settings/AboutSettings.tsx:42
#: src/view/screens/TermsOfService.tsx:31
-#: src/view/shell/Drawer.tsx:617
-#: src/view/shell/Drawer.tsx:619
+#: src/view/shell/Drawer.tsx:622
+#: src/view/shell/Drawer.tsx:624
msgid "Terms of Service"
msgstr ""
@@ -7223,6 +6823,10 @@ msgstr ""
msgid "Text & tags"
msgstr ""
+#: src/components/dms/ReportDialog.tsx:227
+msgid "Text field"
+msgstr ""
+
#: src/components/moderation/LabelsOnMeDialog.tsx:263
#: src/screens/Messages/components/ChatDisabled.tsx:108
msgid "Text input field"
@@ -7232,8 +6836,7 @@ msgstr ""
msgid "Thank you! Your email has been successfully verified."
msgstr ""
-#: src/components/dms/ReportDialog.tsx:129
-#: src/components/ReportDialog/SubmitView.tsx:82
+#: src/components/ReportDialog/SubmitView.tsx:83
msgid "Thank you. Your report has been sent."
msgstr ""
@@ -7241,11 +6844,11 @@ msgstr ""
msgid "Thanks, you have successfully verified your email address. You can close this dialog."
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:470
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:468
msgid "That contains the following:"
msgstr ""
-#: src/screens/Signup/StepHandle.tsx:51
+#: src/screens/Signup/StepHandle.tsx:55
msgid "That handle is already taken."
msgstr ""
@@ -7262,8 +6865,12 @@ msgstr ""
msgid "That's all, folks!"
msgstr ""
+#: src/screens/VideoFeed/index.tsx:1075
+msgid "That's everything!"
+msgstr ""
+
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:279
-#: src/view/com/profile/ProfileMenu.tsx:329
+#: src/view/com/profile/ProfileMenu.tsx:364
msgid "The account will be able to interact with you after unblocking."
msgstr ""
@@ -7277,7 +6884,7 @@ msgstr ""
msgid "The author of this thread has hidden this reply."
msgstr ""
-#: src/screens/Moderation/index.tsx:342
+#: src/screens/Moderation/index.tsx:358
msgid "The Bluesky web application"
msgstr ""
@@ -7313,8 +6920,8 @@ msgstr ""
msgid "The following labels were applied to your content."
msgstr ""
-#: src/screens/Onboarding/Layout.tsx:57
-msgid "The following steps will help customize your Bluesky experience."
+#: src/screens/ModerationInteractionSettings/index.tsx:42
+msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer."
msgstr ""
#: src/view/com/post-thread/PostThread.tsx:262
@@ -7383,7 +6990,7 @@ msgstr ""
msgid "There was an issue fetching notifications. Tap here to try again."
msgstr ""
-#: src/view/com/posts/PostFeed.tsx:486
+#: src/view/com/posts/PostFeed.tsx:592
msgid "There was an issue fetching posts. Tap here to try again."
msgstr ""
@@ -7408,8 +7015,8 @@ msgstr ""
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
+#: src/components/dms/ReportDialog.tsx:257
+#: src/components/ReportDialog/SubmitView.tsx:88
msgid "There was an issue sending your report. Please check your internet connection."
msgstr ""
@@ -7419,26 +7026,22 @@ msgstr ""
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:107
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:141
#: 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
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:364
+#: src/view/com/profile/ProfileMenu.tsx:104
+#: src/view/com/profile/ProfileMenu.tsx:114
+#: src/view/com/profile/ProfileMenu.tsx:128
+#: src/view/com/profile/ProfileMenu.tsx:138
+#: src/view/com/profile/ProfileMenu.tsx:151
+#: src/view/com/profile/ProfileMenu.tsx:163
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:366
msgid "There was an issue! {0}"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:182
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:216
#: src/screens/List/ListHiddenScreen.tsx:63
#: src/screens/List/ListHiddenScreen.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:99
@@ -7454,7 +7057,7 @@ msgstr ""
msgid "There was an unexpected issue in the application. Please let us know if this happened to you!"
msgstr ""
-#: src/screens/SignupQueued.tsx:115
+#: src/screens/SignupQueued.tsx:130
msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can."
msgstr ""
@@ -7507,8 +7110,8 @@ msgstr ""
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."
+#: src/screens/Messages/components/ChatListItem.tsx:284
+msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr ""
#: src/screens/Settings/components/ExportCarDialog.tsx:94
@@ -7528,7 +7131,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr ""
#: src/components/StarterPack/Main/PostsList.tsx:36
-#: src/screens/Profile/ProfileFeed/index.tsx:170
+#: src/screens/Profile/ProfileFeed/index.tsx:189
#: src/view/screens/ProfileList.tsx:814
msgid "This feed is empty."
msgstr ""
@@ -7537,7 +7140,7 @@ msgstr ""
msgid "This feed is no longer online. We are showing <0>Discover0> instead."
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:576
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:574
msgid "This handle is reserved. Please try a different one."
msgstr ""
@@ -7573,10 +7176,6 @@ msgstr ""
msgid "This list - created by <0>{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/view/screens/ProfileList.tsx:933
msgid "This list is empty."
msgstr ""
@@ -7585,36 +7184,36 @@ msgstr ""
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:845
+#: src/view/com/post-thread/PostThreadItem.tsx:850
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr ""
+#: src/components/WhoCanReply.tsx:213
+msgid "This post has an unknown type of threadgate on it. Your app may be out of date."
+msgstr ""
+
#: src/view/com/post-thread/PostThreadItem.tsx:152
msgid "This post has been deleted."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:688
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:359
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:720
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:369
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/PostDropdownBtnMenuItems.tsx:669
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:701
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr ""
-#: src/view/com/composer/Composer.tsx:413
+#: src/view/com/composer/Composer.tsx:428
msgid "This post's author has disabled quote posts."
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:350
+#: src/view/com/profile/ProfileMenu.tsx:385
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/PostDropdownBtnMenuItems.tsx:731
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:763
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 ""
@@ -7622,7 +7221,7 @@ msgstr ""
msgid "This service has not provided terms of service or a privacy policy."
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:439
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:437
msgid "This should create a domain record at:"
msgstr ""
@@ -7630,7 +7229,7 @@ msgstr ""
msgid "This user doesn't have any followers."
msgstr ""
-#: src/components/dms/MessagesListBlockedFooter.tsx:60
+#: src/components/dms/MessagesListBlockedFooter.tsx:67
msgid "This user has blocked you"
msgstr ""
@@ -7663,11 +7262,11 @@ msgstr ""
msgid "This will delete \"{0}\" from your muted words. You can always add it back later."
msgstr ""
-#: src/screens/Settings/Settings.tsx:460
+#: src/screens/Settings/Settings.tsx:462
msgid "This will remove @{0} from the quick access list."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:721
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:753
msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
msgstr ""
@@ -7676,8 +7275,8 @@ msgstr ""
msgid "Thread options"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:66
-#: src/screens/Settings/ContentAndMediaSettings.tsx:69
+#: src/screens/Settings/ContentAndMediaSettings.tsx:67
+#: src/screens/Settings/ContentAndMediaSettings.tsx:70
msgid "Thread preferences"
msgstr ""
@@ -7694,11 +7293,7 @@ msgstr ""
msgid "Threaded mode"
msgstr ""
-#: src/view/screens/PreferencesThreads.tsx:114
-#~ msgid "Threaded Mode"
-#~ msgstr ""
-
-#: src/Navigation.tsx:309
+#: src/Navigation.tsx:319
msgid "Threads Preferences"
msgstr ""
@@ -7730,26 +7325,30 @@ msgstr ""
msgid "Toggle dropdown"
msgstr ""
-#: src/screens/Moderation/index.tsx:319
+#: src/screens/Moderation/index.tsx:335
msgid "Toggle to enable or disable adult content"
msgstr ""
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:158
+msgid "Toggles the sound"
+msgstr ""
+
#: src/screens/Hashtag.tsx:84
#: src/screens/Topic.tsx:71
-#: src/view/screens/Search/Search.tsx:499
+#: src/view/screens/Search/Search.tsx:492
msgid "Top"
msgstr ""
-#: src/Navigation.tsx:383
+#: src/Navigation.tsx:393
msgid "Topic"
msgstr ""
#: src/components/dms/MessageMenu.tsx:103
#: src/components/dms/MessageMenu.tsx:105
-#: src/view/com/post-thread/PostThreadItem.tsx:770
-#: src/view/com/post-thread/PostThreadItem.tsx:773
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:404
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:406
+#: src/view/com/post-thread/PostThreadItem.tsx:775
+#: src/view/com/post-thread/PostThreadItem.tsx:778
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:414
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:416
msgid "Translate"
msgstr ""
@@ -7758,6 +7357,11 @@ msgstr ""
msgid "Trending"
msgstr ""
+#: src/components/interstitials/TrendingVideos.tsx:88
+#: src/screens/Search/components/ExploreTrendingVideos.tsx:106
+msgid "Trending Videos"
+msgstr ""
+
#: src/view/com/util/error/ErrorScreen.tsx:103
msgctxt "action"
msgid "Try again"
@@ -7767,15 +7371,11 @@ msgstr ""
msgid "TV"
msgstr ""
-#: src/view/screens/Settings/index.tsx:712
-#~ msgid "Two-factor authentication"
-#~ msgstr ""
-
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:56
msgid "Two-factor authentication (2FA)"
msgstr ""
-#: src/screens/Signup/StepHandle.tsx:114
+#: src/screens/Signup/StepHandle.tsx:118
msgid "Type your desired username"
msgstr ""
@@ -7783,7 +7383,7 @@ msgstr ""
msgid "Type your message here"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:415
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:413
msgid "Type:"
msgstr ""
@@ -7801,8 +7401,8 @@ msgstr ""
#: src/screens/Login/ForgotPasswordForm.tsx:68
#: src/screens/Login/index.tsx:76
-#: src/screens/Login/LoginForm.tsx:154
-#: src/screens/Login/SetNewPasswordForm.tsx:71
+#: src/screens/Login/LoginForm.tsx:162
+#: src/screens/Login/SetNewPasswordForm.tsx:77
#: src/screens/Signup/index.tsx:71
#: src/view/com/modals/ChangePassword.tsx:71
msgid "Unable to contact your service. Please check your Internet connection."
@@ -7812,13 +7412,13 @@ msgstr ""
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:103
#: src/components/dms/MessagesListBlockedFooter.tsx:111
+#: src/components/dms/MessagesListBlockedFooter.tsx:118
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:197
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
-#: src/view/com/profile/ProfileMenu.tsx:341
+#: src/view/com/profile/ProfileMenu.tsx:376
#: src/view/screens/ProfileList.tsx:694
msgid "Unblock"
msgstr ""
@@ -7828,18 +7428,18 @@ msgctxt "action"
msgid "Unblock"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:188
-#: src/components/dms/ConvoMenu.tsx:192
+#: src/components/dms/ConvoMenu.tsx:250
+#: src/components/dms/ConvoMenu.tsx:253
msgid "Unblock account"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:279
-#: src/view/com/profile/ProfileMenu.tsx:285
+#: src/view/com/profile/ProfileMenu.tsx:289
+#: src/view/com/profile/ProfileMenu.tsx:295
msgid "Unblock Account"
msgstr ""
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277
-#: src/view/com/profile/ProfileMenu.tsx:323
+#: src/view/com/profile/ProfileMenu.tsx:358
msgid "Unblock Account?"
msgstr ""
@@ -7852,7 +7452,7 @@ msgstr ""
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr ""
-#: src/view/com/profile/FollowButton.tsx:60
+#: src/view/com/profile/FollowButton.tsx:63
msgctxt "action"
msgid "Unfollow"
msgstr ""
@@ -7861,53 +7461,49 @@ msgstr ""
msgid "Unfollow {0}"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:221
#: src/view/com/profile/ProfileMenu.tsx:231
+#: src/view/com/profile/ProfileMenu.tsx:241
msgid "Unfollow Account"
msgstr ""
+#: src/screens/VideoFeed/index.tsx:804
+msgid "Unfollows the user"
+msgstr ""
+
#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
msgid "Unlike"
msgstr ""
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:305
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:315
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr ""
-#: src/view/screens/ProfileFeed.tsx:576
-#~ msgid "Unlike this feed"
-#~ msgstr ""
-
-#: src/components/TagMenu/index.tsx:264
-#: src/view/screens/ProfileList.tsx:701
-msgid "Unmute"
-msgstr ""
-
#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:155
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94
msgctxt "video"
msgid "Unmute"
msgstr ""
-#: src/components/TagMenu/index.web.tsx:115
-msgid "Unmute {truncatedTag}"
+#: src/view/screens/ProfileList.tsx:701
+msgid "Unmute"
msgstr ""
-#: src/view/com/profile/ProfileMenu.tsx:258
-#: src/view/com/profile/ProfileMenu.tsx:264
+#: src/components/RichTextTag.tsx:140
+#: src/components/RichTextTag.tsx:153
+msgid "Unmute {tag}"
+msgstr ""
+
+#: src/view/com/profile/ProfileMenu.tsx:268
+#: src/view/com/profile/ProfileMenu.tsx:274
msgid "Unmute Account"
msgstr ""
-#: src/components/TagMenu/index.tsx:223
-msgid "Unmute all {displayTag} posts"
-msgstr ""
-
-#: src/components/dms/ConvoMenu.tsx:176
+#: src/components/dms/ConvoMenu.tsx:239
msgid "Unmute conversation"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:489
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:493
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:499
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:503
msgid "Unmute thread"
msgstr ""
@@ -7929,8 +7525,8 @@ msgstr ""
msgid "Unpin from home"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:379
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:386
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:389
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:396
msgid "Unpin from profile"
msgstr ""
@@ -7963,7 +7559,7 @@ msgstr ""
msgid "Unsubscribed from list"
msgstr ""
-#: src/view/com/composer/Composer.tsx:766
+#: src/view/com/composer/Composer.tsx:781
msgid "Unsupported video type"
msgstr ""
@@ -7971,10 +7567,6 @@ msgstr ""
msgid "Unsupported video type: {0}"
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"
@@ -7984,24 +7576,20 @@ msgstr ""
msgid "Update <0>{displayName}0> in Lists"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:509
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:530
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
msgid "Update to {domain}"
msgstr ""
-#: src/view/com/modals/ChangeHandle.tsx:495
-#~ msgid "Update to {handle}"
-#~ msgstr ""
-
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:306
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:308
msgid "Updating quote attachment failed"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:336
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:338
msgid "Updating reply visibility failed"
msgstr ""
-#: src/screens/Login/SetNewPasswordForm.tsx:180
+#: src/screens/Login/SetNewPasswordForm.tsx:186
msgid "Updating..."
msgstr ""
@@ -8009,59 +7597,47 @@ msgstr ""
msgid "Upload a photo instead"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:455
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:453
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/UserAvatar.tsx:372
+#: src/view/com/util/UserAvatar.tsx:375
#: 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/UserAvatar.tsx:389
#: 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/UserAvatar.tsx:383
+#: src/view/com/util/UserAvatar.tsx:387
#: src/view/com/util/UserBanner.tsx:134
#: src/view/com/util/UserBanner.tsx:138
msgid "Upload from Library"
msgstr ""
-#: src/lib/api/index.ts:296
+#: src/lib/api/index.ts:301
msgid "Uploading images..."
msgstr ""
-#: src/lib/api/index.ts:350
-#: src/lib/api/index.ts:374
+#: src/lib/api/index.ts:355
+#: src/lib/api/index.ts:379
msgid "Uploading link thumbnail..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1638
+#: src/view/com/composer/Composer.tsx:1654
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/screens/Settings/AppPasswords.tsx:67
msgid "Use app passwords to sign in to other Bluesky clients without giving full access to your account or password."
msgstr ""
-#: src/view/com/modals/ChangeHandle.tsx:506
-#~ msgid "Use bsky.social as hosting provider"
-#~ msgstr ""
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:541
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:539
msgid "Use default provider"
msgstr ""
@@ -8070,8 +7646,8 @@ msgstr ""
msgid "Use in-app browser"
msgstr ""
-#: src/screens/Settings/ContentAndMediaSettings.tsx:92
-#: src/screens/Settings/ContentAndMediaSettings.tsx:98
+#: src/screens/Settings/ContentAndMediaSettings.tsx:93
+#: src/screens/Settings/ContentAndMediaSettings.tsx:99
msgid "Use in-app browser to open links"
msgstr ""
@@ -8084,10 +7660,6 @@ msgstr ""
msgid "Use recommended"
msgstr ""
-#: src/view/com/modals/ChangeHandle.tsx:387
-#~ msgid "Use the DNS panel"
-#~ msgstr ""
-
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:190
msgid "Use this to sign into the other app along with your handle."
msgstr ""
@@ -8125,10 +7697,6 @@ msgstr ""
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
msgid "User list by you"
msgstr ""
@@ -8141,28 +7709,24 @@ msgstr ""
msgid "User list updated"
msgstr ""
-#: src/view/screens/Lists.tsx:78
-#~ msgid "User Lists"
-#~ msgstr ""
-
-#: src/screens/Login/LoginForm.tsx:185
+#: src/screens/Login/LoginForm.tsx:193
msgid "Username or email address"
msgstr ""
-#: src/view/screens/ProfileList.tsx:924
-#~ msgid "Users"
-#~ msgstr ""
-
-#: src/components/WhoCanReply.tsx:258
+#: src/components/WhoCanReply.tsx:276
msgid "users followed by <0>@{0}0>"
msgstr ""
+#: src/components/WhoCanReply.tsx:263
+msgid "users following <0>@{0}0>"
+msgstr ""
+
#: src/screens/Messages/Settings.tsx:92
#: src/screens/Messages/Settings.tsx:95
msgid "Users I follow"
msgstr ""
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:416
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:455
msgid "Users in \"{0}\""
msgstr ""
@@ -8170,7 +7734,11 @@ msgstr ""
msgid "Users that have liked this content or profile"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:421
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:432
+msgid "Users you follow"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:419
msgid "Value:"
msgstr ""
@@ -8178,28 +7746,16 @@ msgstr ""
msgid "Verified email required"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:511
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:532
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:509
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:530
msgid "Verify DNS Record"
msgstr ""
-#: src/view/screens/Settings/index.tsx:937
-#~ msgid "Verify email"
-#~ msgstr ""
-
#: src/components/dialogs/VerifyEmailDialog.tsx:134
#: 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"
@@ -8209,8 +7765,8 @@ msgstr ""
msgid "Verify now"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:512
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:534
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:510
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:532
msgid "Verify Text File"
msgstr ""
@@ -8224,15 +7780,11 @@ msgstr ""
msgid "Verify Your Email"
msgstr ""
-#: src/screens/Settings/AboutSettings.tsx:67
-#: src/screens/Settings/AboutSettings.tsx:77
+#: src/screens/Settings/AboutSettings.tsx:69
+#: src/screens/Settings/AboutSettings.tsx:88
msgid "Version {appVersion}"
msgstr ""
-#: src/view/screens/Settings/index.tsx:890
-#~ msgid "Version {appVersion} {bundleInfo}"
-#~ msgstr ""
-
#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83
#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:134
msgid "Video"
@@ -8242,12 +7794,28 @@ msgstr ""
msgid "Video failed to process"
msgstr ""
+#: src/Navigation.tsx:439
+msgid "Video Feed"
+msgstr ""
+
+#: src/components/VideoPostCard.tsx:116
+msgid "Video from {0}: {text}"
+msgstr ""
+
#: src/screens/Onboarding/index.tsx:39
#: src/screens/Onboarding/state.ts:103
msgid "Video Games"
msgstr ""
-#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:169
+#: src/screens/VideoFeed/index.tsx:1033
+msgid "Video is paused"
+msgstr ""
+
+#: src/screens/VideoFeed/index.tsx:1033
+msgid "Video is playing"
+msgstr ""
+
+#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:191
msgid "Video not found."
msgstr ""
@@ -8255,7 +7823,7 @@ msgstr ""
msgid "Video settings"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1648
+#: src/view/com/composer/Composer.tsx:1664
msgid "Video uploaded"
msgstr ""
@@ -8263,6 +7831,10 @@ msgstr ""
msgid "Video: {0}"
msgstr ""
+#: src/view/screens/Profile.tsx:236
+msgid "Videos"
+msgstr ""
+
#: src/view/com/composer/videos/SelectVideoBtn.tsx:58
#: src/view/com/composer/videos/SelectVideoBtn.tsx:73
msgid "Videos must be less than 60 seconds long"
@@ -8274,22 +7846,15 @@ msgstr ""
#: src/components/ProfileCard.tsx:110
#: src/screens/Profile/components/ProfileFeedHeader.tsx:450
+#: src/screens/VideoFeed/index.tsx:763
#: src/view/com/notifications/NotificationFeedItem.tsx:409
msgid "View {0}'s profile"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:158
+#: src/components/dms/MessagesListHeader.tsx:173
msgid "View {displayName}'s profile"
msgstr ""
-#: src/components/TagMenu/index.tsx:172
-msgid "View all posts by @{authorHandle} with tag {displayTag}"
-msgstr ""
-
-#: src/components/TagMenu/index.tsx:126
-msgid "View all posts with tag {displayTag}"
-msgstr ""
-
#: src/components/ProfileHoverCard/index.web.tsx:433
msgid "View blocked user's profile"
msgstr ""
@@ -8302,11 +7867,13 @@ msgstr ""
msgid "View debug entry"
msgstr ""
-#: src/components/ReportDialog/SelectReportOptionView.tsx:139
+#: src/components/ReportDialog/SelectReportOptionView.tsx:137
+#: src/screens/VideoFeed/index.tsx:637
+#: src/screens/VideoFeed/index.tsx:655
msgid "View details"
msgstr ""
-#: src/components/ReportDialog/SelectReportOptionView.tsx:134
+#: src/components/ReportDialog/SelectReportOptionView.tsx:132
msgid "View details for reporting a copyright violation"
msgstr ""
@@ -8318,6 +7885,13 @@ msgstr ""
msgid "View information about these labels"
msgstr ""
+#: src/components/interstitials/TrendingVideos.tsx:191
+#: src/components/interstitials/TrendingVideos.tsx:210
+#: src/screens/Search/components/ExploreTrendingVideos.tsx:231
+#: src/screens/Search/components/ExploreTrendingVideos.tsx:250
+msgid "View more"
+msgstr ""
+
#: src/components/ProfileHoverCard/index.web.tsx:419
#: src/components/ProfileHoverCard/index.web.tsx:439
#: src/components/ProfileHoverCard/index.web.tsx:466
@@ -8340,23 +7914,40 @@ msgstr ""
msgid "View users who like this feed"
msgstr ""
-#: src/screens/Moderation/index.tsx:248
+#: src/components/VideoPostCard.tsx:392
+msgid "View video"
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:264
msgid "View your blocked accounts"
msgstr ""
+#: src/screens/Moderation/index.tsx:204
+msgid "View your default post interaction settings"
+msgstr ""
+
#: src/view/com/home/HomeHeaderLayout.web.tsx:56
#: src/view/com/home/HomeHeaderLayoutMobile.tsx:77
msgid "View your feeds and explore more"
msgstr ""
-#: src/screens/Moderation/index.tsx:218
+#: src/screens/Moderation/index.tsx:234
msgid "View your moderation lists"
msgstr ""
-#: src/screens/Moderation/index.tsx:233
+#: src/screens/Moderation/index.tsx:249
msgid "View your muted accounts"
msgstr ""
+#: src/view/com/util/images/AutoSizedImage.tsx:199
+#: src/view/com/util/images/AutoSizedImage.tsx:221
+msgid "Views full image"
+msgstr ""
+
+#: src/components/VideoPostCard.tsx:115
+msgid "Views video in immersive mode"
+msgstr ""
+
#: src/view/com/modals/LinkWarning.tsx:89
#: src/view/com/modals/LinkWarning.tsx:95
msgid "Visit Site"
@@ -8388,11 +7979,11 @@ msgstr ""
msgid "We couldn't find any results for that topic."
msgstr ""
-#: src/screens/Messages/Conversation.tsx:103
+#: src/screens/Messages/Conversation.tsx:113
msgid "We couldn't load this conversation"
msgstr ""
-#: src/screens/SignupQueued.tsx:145
+#: src/screens/SignupQueued.tsx:160
msgid "We estimate {estimatedTime} until your account is ready."
msgstr ""
@@ -8400,7 +7991,7 @@ msgstr ""
msgid "We have sent another verification email to <0>{0}0>."
msgstr ""
-#: src/screens/Onboarding/StepFinished.tsx:238
+#: src/screens/Onboarding/StepFinished.tsx:245
msgid "We hope you have a wonderful time. Remember, Bluesky is:"
msgstr ""
@@ -8416,7 +8007,7 @@ msgstr ""
msgid "We were unable to load your birth date preferences. Please try again."
msgstr ""
-#: src/screens/Moderation/index.tsx:393
+#: src/screens/Moderation/index.tsx:409
msgid "We were unable to load your configured labelers at this time."
msgstr ""
@@ -8424,7 +8015,7 @@ msgstr ""
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:149
+#: src/screens/SignupQueued.tsx:164
msgid "We will let you know when your account is ready."
msgstr ""
@@ -8437,10 +8028,6 @@ msgstr ""
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 ""
@@ -8453,15 +8040,15 @@ 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:201
+#: src/view/screens/Search/Search.tsx:205
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:410
+#: src/view/com/composer/Composer.tsx:425
msgid "We're sorry! The post you are replying to has been deleted."
msgstr ""
-#: src/components/Lists.tsx:188
+#: src/components/Lists.tsx:194
#: src/view/screens/NotFound.tsx:50
msgid "We're sorry! We can't find the page you were looking for."
msgstr ""
@@ -8492,15 +8079,15 @@ msgstr ""
#: src/view/com/auth/SplashScreen.tsx:38
#: src/view/com/auth/SplashScreen.web.tsx:99
-#: src/view/com/composer/Composer.tsx:729
+#: src/view/com/composer/Composer.tsx:744
msgid "What's up?"
msgstr ""
-#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:79
+#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:80
msgid "Which languages are used in this post?"
msgstr ""
-#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:78
+#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:79
msgid "Which languages would you like to see in your algorithmic feeds?"
msgstr ""
@@ -8513,35 +8100,44 @@ msgid "Who can reply"
msgstr ""
#: src/screens/Home/NoFeedsPinned.tsx:79
-#: src/screens/Messages/ChatList.tsx:148
+#: src/screens/Messages/ChatList.tsx:156
msgid "Whoops!"
msgstr ""
-#: src/components/ReportDialog/SelectReportOptionView.tsx:44
+#: src/components/interstitials/TrendingVideos.tsx:127
+#: src/screens/Search/components/ExploreTrendingVideos.tsx:147
+msgid "Whoops! Trending videos failed to load."
+msgstr ""
+
+#: src/screens/Takendown.tsx:173
+msgid "Why are you appealing?"
+msgstr ""
+
+#: src/components/ReportDialog/SelectReportOptionView.tsx:42
msgid "Why should this content be reviewed?"
msgstr ""
-#: src/components/ReportDialog/SelectReportOptionView.tsx:57
+#: src/components/ReportDialog/SelectReportOptionView.tsx:55
msgid "Why should this feed be reviewed?"
msgstr ""
-#: src/components/ReportDialog/SelectReportOptionView.tsx:54
+#: src/components/ReportDialog/SelectReportOptionView.tsx:52
msgid "Why should this list be reviewed?"
msgstr ""
-#: src/components/ReportDialog/SelectReportOptionView.tsx:63
+#: src/components/ReportDialog/SelectReportOptionView.tsx:61
msgid "Why should this message be reviewed?"
msgstr ""
-#: src/components/ReportDialog/SelectReportOptionView.tsx:51
+#: src/components/ReportDialog/SelectReportOptionView.tsx:49
msgid "Why should this post be reviewed?"
msgstr ""
-#: src/components/ReportDialog/SelectReportOptionView.tsx:60
+#: src/components/ReportDialog/SelectReportOptionView.tsx:58
msgid "Why should this starter pack be reviewed?"
msgstr ""
-#: src/components/ReportDialog/SelectReportOptionView.tsx:48
+#: src/components/ReportDialog/SelectReportOptionView.tsx:46
msgid "Why should this user be reviewed?"
msgstr ""
@@ -8550,12 +8146,12 @@ msgstr ""
msgid "Write a message"
msgstr ""
-#: src/view/com/composer/Composer.tsx:817
+#: src/view/com/composer/Composer.tsx:832
msgid "Write post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:727
-#: src/view/com/post-thread/PostThreadComposePrompt.tsx:70
+#: src/view/com/composer/Composer.tsx:742
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69
msgid "Write your reply"
msgstr ""
@@ -8564,11 +8160,11 @@ msgstr ""
msgid "Writers"
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:339
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:337
msgid "Wrong DID returned from server. Received: {0}"
msgstr ""
-#: src/view/com/composer/select-language/SuggestedLanguage.tsx:78
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:86
msgid "Yes"
msgstr ""
@@ -8581,11 +8177,11 @@ msgstr ""
msgid "Yes, delete this starter pack"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:724
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:756
msgid "Yes, detach"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:734
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:766
msgid "Yes, hide"
msgstr ""
@@ -8605,7 +8201,7 @@ msgstr ""
msgid "You"
msgstr ""
-#: src/screens/SignupQueued.tsx:142
+#: src/screens/SignupQueued.tsx:157
msgid "You are in line."
msgstr ""
@@ -8617,10 +8213,6 @@ 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."
@@ -8643,7 +8235,12 @@ msgstr ""
msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users."
msgstr ""
-#: src/components/interstitials/Trending.tsx:100
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:81
+msgid "You can set default interaction settings in <0>Settings → Moderation → Interaction settings.0>"
+msgstr ""
+
+#: src/components/interstitials/Trending.tsx:130
+#: src/components/interstitials/TrendingVideos.tsx:139
#: src/screens/Search/components/ExploreTrendingTopics.tsx:136
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:109
msgid "You can update this later from your settings."
@@ -8673,7 +8270,7 @@ msgstr ""
msgid "You have blocked the author or you have been blocked by the author."
msgstr ""
-#: src/components/dms/MessagesListBlockedFooter.tsx:58
+#: src/components/dms/MessagesListBlockedFooter.tsx:65
msgid "You have blocked this user"
msgstr ""
@@ -8684,7 +8281,7 @@ 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/screens/Login/SetNewPasswordForm.tsx:91
#: 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."
@@ -8707,7 +8304,7 @@ msgstr ""
msgid "You have muted this user"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:190
+#: src/screens/Messages/ChatList.tsx:198
msgid "You have no conversations yet. Start one!"
msgstr ""
@@ -8724,15 +8321,11 @@ msgstr ""
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:128
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
+#: src/components/Lists.tsx:57
msgid "You have reached the end"
msgstr ""
@@ -8740,7 +8333,7 @@ msgstr ""
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:241
+#: src/components/StarterPack/ProfileStarterPacks.tsx:240
msgid "You haven't created a starter pack yet!"
msgstr ""
@@ -8777,7 +8370,7 @@ msgstr ""
msgid "You must be 13 years of age or older to sign up."
msgstr ""
-#: src/components/StarterPack/ProfileStarterPacks.tsx:324
+#: src/components/StarterPack/ProfileStarterPacks.tsx:323
msgid "You must be following at least seven other people to generate a starter pack."
msgstr ""
@@ -8789,7 +8382,7 @@ msgstr ""
msgid "You must grant access to your photo library to save the image."
msgstr ""
-#: src/components/ReportDialog/SubmitView.tsx:210
+#: src/components/ReportDialog/SubmitView.tsx:211
msgid "You must select at least one labeler for a report"
msgstr ""
@@ -8798,30 +8391,31 @@ msgid "You previously deactivated @{0}."
msgstr ""
#: src/screens/Settings/Settings.tsx:257
+#: src/view/shell/desktop/LeftNav.tsx:206
msgid "You will be signed out of all your accounts."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:217
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:219
msgid "You will no longer receive notifications for this thread"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:213
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:215
msgid "You will now receive notifications for this thread"
msgstr ""
-#: src/screens/Login/SetNewPasswordForm.tsx:98
+#: src/screens/Login/SetNewPasswordForm.tsx:104
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
+#: src/screens/Messages/components/ChatListItem.tsx:139
msgid "You: {0}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:153
+#: src/screens/Messages/components/ChatListItem.tsx:168
msgid "You: {defaultEmbeddedContentMessage}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:146
+#: src/screens/Messages/components/ChatListItem.tsx:161
msgid "You: {short}"
msgstr ""
@@ -8849,7 +8443,7 @@ msgstr ""
msgid "You'll stay updated with these feeds"
msgstr ""
-#: src/screens/SignupQueued.tsx:112
+#: src/screens/SignupQueued.tsx:127
msgid "You're in line"
msgstr ""
@@ -8858,7 +8452,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:242
msgid "You're ready to go!"
msgstr ""
@@ -8883,6 +8477,10 @@ msgstr ""
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr ""
+#: src/screens/VideoFeed/index.tsx:1084
+msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
+msgstr ""
+
#: src/screens/Signup/index.tsx:140
msgid "Your account"
msgstr ""
@@ -8891,6 +8489,10 @@ msgstr ""
msgid "Your account has been deleted"
msgstr ""
+#: src/screens/Takendown.tsx:146
+msgid "Your account has been suspended"
+msgstr ""
+
#: src/view/com/composer/state/video.ts:429
msgid "Your account is not yet old enough to upload videos. Please try again later."
msgstr ""
@@ -8899,11 +8501,19 @@ msgstr ""
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
+#: src/screens/Takendown.tsx:214
+msgid "Your account was found to be in violation of the <0>Bluesky Social Terms of Service0>. You have been sent an email outlining the specific violation and suspension period, if applicable. You can appeal this decision if you believe it was made in error."
+msgstr ""
+
+#: src/screens/Takendown.tsx:154
+msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email."
+msgstr ""
+
+#: src/screens/Signup/StepInfo/index.tsx:205
msgid "Your birth date"
msgstr ""
-#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:173
+#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:195
msgid "Your browser does not support the video format. Please try a different browser."
msgstr ""
@@ -8915,7 +8525,7 @@ msgstr ""
msgid "Your choice will be saved, but can be changed later in settings."
msgstr ""
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:496
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:494
msgid "Your current handle <0>{0}0> will automatically remain reserved for you. You can switch back to it at any time from this account."
msgstr ""
@@ -8938,15 +8548,19 @@ msgstr ""
msgid "Your first like!"
msgstr ""
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:442
+msgid "Your followers"
+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/Settings/components/ChangeHandleDialog.tsx:223
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:221
msgid "Your full handle will be <0>@{0}0>"
msgstr ""
-#: src/screens/Signup/StepHandle.tsx:125
+#: src/screens/Signup/StepHandle.tsx:129
msgid "Your full username will be"
msgstr ""
@@ -8958,30 +8572,26 @@ msgstr ""
msgid "Your password has been changed successfully!"
msgstr ""
-#: src/view/com/composer/Composer.tsx:470
+#: src/view/com/composer/Composer.tsx:485
msgid "Your post has been published"
msgstr ""
-#: src/view/com/composer/Composer.tsx:467
+#: src/view/com/composer/Composer.tsx:482
msgid "Your posts have been published"
msgstr ""
-#: src/screens/Onboarding/StepFinished.tsx:250
+#: src/screens/Onboarding/StepFinished.tsx:257
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:469
+#: src/view/com/composer/Composer.tsx:484
msgid "Your reply has been published"
msgstr ""
-#: src/components/dms/ReportDialog.tsx:157
+#: src/components/dms/ReportDialog.tsx:198
msgid "Your report will be sent to the Bluesky Moderation Service"
msgstr ""
diff --git a/src/locale/locales/eu/messages.po b/src/locale/locales/eu/messages.po
index d58e19aaf4..8c5eba0de5 100644
--- a/src/locale/locales/eu/messages.po
+++ b/src/locale/locales/eu/messages.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: 2024-12-06 18:58+0100\n"
"PO-Revision-Date: \n"
-"Last-Translator: \n"
+"Last-Translator: REALSOULMAN\n"
"Language-Team: \n"
"Language: eu\n"
"MIME-Version: 1.0\n"
@@ -11,6 +11,10 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 3.5\n"
+#: src/components/ProgressGuide/FollowDialog.tsx:567
+msgid "(active)"
+msgstr "(aktiboa)"
+
#: src/screens/Messages/components/ChatListItem.tsx:130
msgid "(contains embedded content)"
msgstr "(kapsulatutako edukia dauka)"
@@ -20,27 +24,36 @@ msgstr "(kapsulatutako edukia dauka)"
msgid "(no email)"
msgstr "(e-postarik ez)"
-#. placeholder {0}: diff.value
#: src/lib/hooks/useTimeAgo.ts:156
msgid "{0, plural, one {# day} other {# days}}"
msgstr "{0, plural, one {egun #} other {# egun}}"
#. placeholder {0}: diff.value
+#: src/screens/Profile/ProfileFollowers.tsx:40
+msgid "{0, plural, one {# follower} other {# followers}}"
+msgstr "{0, plural, one {jarraitzaile #} other {# jarraitzaile}}"
+
+#: src/screens/Profile/ProfileFollows.tsx:40
+msgid "{0, plural, one {# following} other {# following}}"
+msgstr "{0, plural, one {jarraitzen #} other {# jarraitzen}}"
+
#: src/lib/hooks/useTimeAgo.ts:146
msgid "{0, plural, one {# hour} other {# hours}}"
msgstr "{0, plural, one {ordu #} other {# ordu}}"
-#. placeholder {0}: labels.length
-#: src/components/moderation/LabelsOnMe.tsx:53
-msgid "{0, plural, one {# label has been placed on this account} other {# labels have been placed on this account}}"
-msgstr "{0, plural, one {etiketa # jarri da kontu honetan} other {# etiketa jarri dira kontu honetan}}"
-
-#. placeholder {0}: labels.length
-#: src/components/moderation/LabelsOnMe.tsx:59
-msgid "{0, plural, one {# label has been placed on this content} other {# labels have been placed on this content}}"
-msgstr "{0, plural, one {etiketa # jarri da eduki honetan} other {# etiketa jarri dira eduki honetan}}"
-
#. placeholder {0}: diff.value
+#: src/components/moderation/LabelsOnMe.tsx:53
+msgid "{0, plural, one {# label has} other {# labels have}} been placed on this account"
+msgstr "{0, plural, {# etiketa bat} beste {# etiketa}} jarri da kontu honetan"
+
+#: src/components/moderation/LabelsOnMe.tsx:62
+msgid "{0, plural, one {# label has} other {# labels have}} been placed on this content"
+msgstr "{0, plural, {# etiketa bat} beste {# etiketa}} jarri da eduki honetan"
+
+#: src/screens/Post/PostLikedBy.tsx:41
+msgid "{0, plural, one {# like} other {# likes}}"
+msgstr "{0, plural, one {gogoko #} other {# gogoko}}"
+
#: src/lib/hooks/useTimeAgo.ts:136
msgid "{0, plural, one {# minute} other {# minutes}}"
msgstr "{0, plural, one {minutu #} other {# minutu}}"
@@ -50,8 +63,11 @@ msgstr "{0, plural, one {minutu #} other {# minutu}}"
msgid "{0, plural, one {# month} other {# months}}"
msgstr "{0, plural, one {hilabete #} other {# hilabete}}"
-#. placeholder {0}: repostCount || 0
-#: src/view/com/util/post-ctrls/RepostButton.tsx:69
+#: src/screens/Post/PostQuotes.tsx:41
+msgid "{0, plural, one {# quote} other {# quotes}}"
+msgstr "{0, plural, one {aipamen #} other {# aipamen}}"
+
+#: src/screens/Post/PostRepostedBy.tsx:41
msgid "{0, plural, one {# repost} other {# reposts}}"
msgstr "{0, plural, one {berpost #} other {# berpost}}"
@@ -72,22 +88,11 @@ msgstr "{0, plural, one {jarraitzaile} other {jarraitzaile}}"
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {jarraitzen} other {jarraitzen}}"
-#. placeholder {0}: post.likeCount || 0
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:305
-msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}"
-msgstr "{0, plural, one {Gogoko (gogoko #)} other {Gogoko (# gogoko)}}"
-
#. placeholder {0}: post.likeCount
#: src/view/com/post-thread/PostThreadItem.tsx:447
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {gogoko} other {gogoko}}"
-#. placeholder {0}: feed.likeCount || 0
-#. placeholder {0}: count || 0
-#: src/view/com/feeds/FeedSourceCard.tsx:303 src/components/FeedCard.tsx:213
-msgid "{0, plural, one {Liked by # user} other {Liked by # users}}"
-msgstr "{0, plural, one {# erabiltzaileak gogoko du} other {# erabiltzaileek gogoko dute}}"
-
#. placeholder {0}: profile.postsCount || 0
#: src/screens/Profile/Header/Metrics.tsx:58
msgid "{0, plural, one {post} other {posts}}"
@@ -98,21 +103,11 @@ msgstr "{0, plural, one {post} other {post}}"
msgid "{0, plural, one {quote} other {quotes}}"
msgstr "{0, plural, one {aipamen} other {aipamen}}"
-#. placeholder {0}: post.replyCount || 0
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:261
-msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}"
-msgstr "{0, plural, one {Erantzun (erantzun #)} other {Erantzun (# erantzun)}}"
-
#. placeholder {0}: post.repostCount
#: src/view/com/post-thread/PostThreadItem.tsx:413
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {berpost} other {berpost}}"
-#. placeholder {0}: post.likeCount || 0
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:301
-msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}"
-msgstr "{0, plural, one {Ez gogoko (gogoko #)} other {Ez gogoko (# gogoko)}}"
-
#. placeholder {0}: sanitizeHandle(account.handle, '@')
#: src/screens/Settings/Settings.tsx:422
msgid "{0}"
@@ -137,17 +132,17 @@ msgstr "{0} aste honetan elkartua"
#. placeholder {0}: formatTime(currentTime)
#. placeholder {1}: formatTime(duration)
-#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:197
+#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:201
msgid "{0} of {1}"
msgstr "{0} {1}-etik"
#. placeholder {0}: starterPack.joinedAllTimeCount || 0
-#: src/screens/StarterPack/StarterPackScreen.tsx:479
+#: src/screens/StarterPack/StarterPackScreen.tsx:480
msgid "{0} people have used this starter pack!"
msgstr "{0} pertsonek abio multzo hau erabili dute!"
#. placeholder {0}: numUnreadMessages.numUnread
-#: src/view/shell/bottom-bar/BottomBar.tsx:203
+#: src/view/shell/bottom-bar/BottomBar.tsx:208
msgid "{0} unread items"
msgstr "{0} elementu irakurri gabe"
@@ -196,15 +191,7 @@ msgstr "{0}hil"
msgid "{0}s"
msgstr "{0}seg"
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:252
-msgid "{badge} unread items"
-msgstr "{badge} elementu irakurri gabe"
-
-#: src/components/LabelingServiceCard/index.tsx:96
-msgid "{count, plural, one {Liked by # user} other {Liked by # users}}"
-msgstr "{count, plural, one {Erabiltzaile #-ek gogoko du} other {# erabiltzailek gogoko dute}}"
-
-#: src/view/shell/desktop/LeftNav.tsx:186
+#: src/view/shell/desktop/LeftNav.tsx:189
msgid "{count} unread items"
msgstr "{count} elementu irakurri gabe"
@@ -221,91 +208,91 @@ msgstr "{estimatedTimeHrs, plural, one {ordu} other {ordu}}"
msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}"
msgstr "{estimatedTimeMins, plural, one {minutu} other {minutu}}"
-#: src/view/com/notifications/FeedItem.tsx:300
+#: src/view/com/notifications/NotificationFeedItem.tsx:301
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> followed you"
msgstr "{firstAuthorLink} eta <0>{additionalAuthorsCount, plural, one {beste {formattedAuthorsCount} } other {beste {formattedAuthorsCount}}}0> jarraitzen dizute"
-#: src/view/com/notifications/FeedItem.tsx:326
+#: src/view/com/notifications/NotificationFeedItem.tsx:327
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your custom feed"
msgstr "{firstAuthorLink} eta <0>{additionalAuthorsCount, plural, one {beste {formattedAuthorsCount} } other {beste {formattedAuthorsCount}}}0> zure neurrira egindako feeda gogoko dute"
-#: src/view/com/notifications/FeedItem.tsx:222
+#: src/view/com/notifications/NotificationFeedItem.tsx:223
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your post"
msgstr "{firstAuthorLink} eta <0>{additionalAuthorsCount, plural, one {beste {formattedAuthorsCount} } other {beste {formattedAuthorsCount}}}0> zure posta gogoko dute"
-#: src/view/com/notifications/FeedItem.tsx:246
+#: src/view/com/notifications/NotificationFeedItem.tsx:247
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your post"
msgstr "{firstAuthorLink} eta <0>{additionalAuthorsCount, plural, one {beste {formattedAuthorsCount} } other {beste {formattedAuthorsCount}}}0> zure postari berpost egin diote"
-#: src/view/com/notifications/FeedItem.tsx:350
+#: src/view/com/notifications/NotificationFeedItem.tsx:351
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> signed up with your starter pack"
msgstr "{firstAuthorLink} eta <0>{additionalAuthorsCount, plural, one {beste {formattedAuthorsCount} } other {beste {formattedAuthorsCount}}}0> zure abio multzoan izena eman dute"
-#: src/view/com/notifications/FeedItem.tsx:312
+#: src/view/com/notifications/NotificationFeedItem.tsx:313
msgid "{firstAuthorLink} followed you"
msgstr "{firstAuthorLink} jarraitzen dizu"
-#: src/view/com/notifications/FeedItem.tsx:289
+#: src/view/com/notifications/NotificationFeedItem.tsx:290
msgid "{firstAuthorLink} followed you back"
msgstr "{firstAuthorLink} bueltan jarraitzen dizu"
-#: src/view/com/notifications/FeedItem.tsx:338
+#: src/view/com/notifications/NotificationFeedItem.tsx:339
msgid "{firstAuthorLink} liked your custom feed"
msgstr "{firstAuthorLink} zure neurrira egindako feeda gustoko du"
-#: src/view/com/notifications/FeedItem.tsx:234
+#: src/view/com/notifications/NotificationFeedItem.tsx:235
msgid "{firstAuthorLink} liked your post"
msgstr "{firstAuthorLink} zure posta gogoko du"
-#: src/view/com/notifications/FeedItem.tsx:258
+#: src/view/com/notifications/NotificationFeedItem.tsx:259
msgid "{firstAuthorLink} reposted your post"
msgstr "{firstAuthorLink} zure postari berpost egin dio"
-#: src/view/com/notifications/FeedItem.tsx:362
+#: src/view/com/notifications/NotificationFeedItem.tsx:363
msgid "{firstAuthorLink} signed up with your starter pack"
msgstr "{firstAuthorLink} zure abio multzoan izena eman du"
-#: src/view/com/notifications/FeedItem.tsx:293
+#: src/view/com/notifications/NotificationFeedItem.tsx:294
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you"
msgstr "{firstAuthorName} eta {additionalAuthorsCount, plural, one {beste {formattedAuthorsCount} } other {beste {formattedAuthorsCount}}} jarraitzen dizute"
-#: src/view/com/notifications/FeedItem.tsx:319
+#: src/view/com/notifications/NotificationFeedItem.tsx:320
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed"
msgstr "{firstAuthorName} eta {additionalAuthorsCount, plural, one {beste {formattedAuthorsCount} } other {beste {formattedAuthorsCount}}} zure neurrira egindako feeda gogoko dute"
-#: src/view/com/notifications/FeedItem.tsx:215
+#: src/view/com/notifications/NotificationFeedItem.tsx:216
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post"
msgstr "{firstAuthorName} eta {additionalAuthorsCount, plural, one {beste {formattedAuthorsCount} } other {beste {formattedAuthorsCount}}} zure posta gogoko dute"
-#: src/view/com/notifications/FeedItem.tsx:239
+#: src/view/com/notifications/NotificationFeedItem.tsx:240
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post"
msgstr "{firstAuthorName} eta {additionalAuthorsCount, plural, one {beste {formattedAuthorsCount} } other {beste {formattedAuthorsCount}}} zure postari berpost egin diote"
-#: src/view/com/notifications/FeedItem.tsx:343
+#: src/view/com/notifications/NotificationFeedItem.tsx:344
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack"
msgstr "{firstAuthorName} eta {additionalAuthorsCount, plural, one {beste {formattedAuthorsCount} } other {beste {formattedAuthorsCount}}} zure abio multzoan izena eman dute"
-#: src/view/com/notifications/FeedItem.tsx:298
+#: src/view/com/notifications/NotificationFeedItem.tsx:299
msgid "{firstAuthorName} followed you"
msgstr "{firstAuthorName} jarraitzen dizu"
-#: src/view/com/notifications/FeedItem.tsx:288
+#: src/view/com/notifications/NotificationFeedItem.tsx:289
msgid "{firstAuthorName} followed you back"
msgstr "{firstAuthorName} bueltan jarraitzen dizu"
-#: src/view/com/notifications/FeedItem.tsx:324
+#: src/view/com/notifications/NotificationFeedItem.tsx:325
msgid "{firstAuthorName} liked your custom feed"
msgstr "{firstAuthorName} zure neurrira egindako feeda gustoko du"
-#: src/view/com/notifications/FeedItem.tsx:220
+#: src/view/com/notifications/NotificationFeedItem.tsx:221
msgid "{firstAuthorName} liked your post"
msgstr "{firstAuthorName} zure posta gogoko du"
-#: src/view/com/notifications/FeedItem.tsx:244
+#: src/view/com/notifications/NotificationFeedItem.tsx:245
msgid "{firstAuthorName} reposted your post"
msgstr "{firstAuthorName} zure postari berpost egin dio"
-#: src/view/com/notifications/FeedItem.tsx:348
+#: src/view/com/notifications/NotificationFeedItem.tsx:349
msgid "{firstAuthorName} signed up with your starter pack"
msgstr "{firstAuthorName} zure abio multzoan izena eman du"
@@ -314,21 +301,19 @@ msgstr "{firstAuthorName} zure abio multzoan izena eman du"
msgid "{following} following"
msgstr "{following} jarraitzen"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:385
+#: src/components/dms/dialogs/SearchablePeopleList.tsx:388
msgid "{handle} can't be messaged"
msgstr "{handle} ezin zaio mezua bidali"
-#: src/view/screens/ProfileFeed.tsx:590
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:294
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:307
-msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}"
-msgstr "{likeCount, plural, one {Erabiltzaile #-ek gogoko du} other {# erabiltzailek gogoko dute}}"
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:260
+msgid "{notificationCount} unread items"
+msgstr "{notificationCount} elementu irakurri gabe"
#: src/view/shell/Drawer.tsx:448
msgid "{numUnreadNotifications} unread"
msgstr "{numUnreadNotifications} irakurri gabe"
-#: src/view/shell/bottom-bar/BottomBar.tsx:230
+#: src/view/shell/bottom-bar/BottomBar.tsx:235
msgid "{numUnreadNotifications} unread items"
msgstr "{numUnreadNotifications} elementu irakurri gabe"
@@ -390,7 +375,7 @@ msgstr "<0>{0}0> kide"
msgid "<0>{date}0> at {time}"
msgstr "<0>{date}0> {time}-etan"
-#: src/screens/Settings/NotificationSettings.tsx:79
+#: src/screens/Settings/NotificationSettings.tsx:85
msgid "<0>Experimental:0> When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time."
msgstr "<0>Esperimentala:0> Hobespen hau gaituta dagoenean, bakarrik jarraitzen dituzun erabiltzaileen erantzun eta aipamen jakinarazpenak jasoko dituzu. Denborarekin hemen kontrol gehiago gehitzen jarraituko dugu."
@@ -407,7 +392,7 @@ msgstr "⚠Erabiltzaile Baliogabea"
msgid "24 hours"
msgstr "24 ordu"
-#: src/screens/Login/LoginForm.tsx:250
+#: src/screens/Login/LoginForm.tsx:252
msgid "2FA Confirmation"
msgstr "2FA Baieztapena"
@@ -419,29 +404,29 @@ msgstr "30 egun"
msgid "7 days"
msgstr "7 egun"
-#: src/Navigation.tsx:362 src/screens/Settings/Settings.tsx:215
+#: src/Navigation.tsx:363 src/screens/Settings/Settings.tsx:215
#: src/screens/Settings/Settings.tsx:218
#: src/screens/Settings/AboutSettings.tsx:28
msgid "About"
msgstr "Honi buruz"
-#: src/view/screens/Search/Search.tsx:859
+#: src/view/screens/Search/Search.tsx:865
msgid "Access navigation links and settings"
msgstr "Sartu nabigazio estekak eta ezarpenetara"
-#: src/screens/Settings/Settings.tsx:191 src/screens/Settings/Settings.tsx:194
#: src/screens/Settings/AccessibilitySettings.tsx:46
+#: src/screens/Settings/Settings.tsx:191 src/screens/Settings/Settings.tsx:194
msgid "Accessibility"
msgstr "Erabilerraztasun"
-#: src/Navigation.tsx:322
+#: src/Navigation.tsx:323
msgid "Accessibility Settings"
msgstr "Erabilerraztasun Doikuntzak"
-#: src/Navigation.tsx:338 src/screens/Settings/Settings.tsx:153
+#: src/Navigation.tsx:339 src/screens/Settings/Settings.tsx:153
#: src/screens/Settings/Settings.tsx:156
#: src/screens/Settings/AccountSettings.tsx:45
-#: src/screens/Login/LoginForm.tsx:176
+#: src/screens/Login/LoginForm.tsx:178
msgid "Account"
msgstr "Kontua"
@@ -509,11 +494,11 @@ msgstr "Gehitu {displayName} abio multzora"
msgid "Add a content warning"
msgstr "Gehitu eduki abisu bat"
-#: src/view/screens/ProfileList.tsx:929
+#: src/view/screens/ProfileList.tsx:895 src/view/screens/ProfileList.tsx:913
msgid "Add a user to this list"
msgstr "Gehitu erabiltzaile bat zerrenda honi"
-#: src/screens/Deactivated.tsx:191 src/components/dialogs/SwitchAccount.tsx:55
+#: src/components/dialogs/SwitchAccount.tsx:55 src/screens/Deactivated.tsx:191
msgid "Add account"
msgstr "Gehitu kontua"
@@ -535,7 +520,7 @@ msgstr "Gehitu aukerazko testua (hautazkoa)"
msgid "Add another account"
msgstr "Gehitu beste kontu bat"
-#: src/view/com/composer/Composer.tsx:721
+#: src/view/com/composer/Composer.tsx:728
msgid "Add another post"
msgstr "Gehitu beste post bat"
@@ -557,10 +542,14 @@ msgstr "Gehitu hitz mutua konfiguratutako doikuntzetarako"
msgid "Add muted words and tags"
msgstr "Gehitu hitz mutuak eta etiketak"
-#: src/view/com/composer/Composer.tsx:1235
+#: src/view/com/composer/Composer.tsx:1242
msgid "Add new post"
msgstr "Gehitu post berria"
+#: src/view/screens/ProfileList.tsx:903 src/view/screens/ProfileList.tsx:921
+msgid "Add people"
+msgstr "Gehitu jendea"
+
#: src/screens/Home/NoFeedsPinned.tsx:99
msgid "Add recommended feeds"
msgstr "Gehitu gomendatutako feddak"
@@ -573,11 +562,11 @@ msgstr "Gehitu feed batzuk zure abio multzoari!"
msgid "Add the default feed of only people you follow"
msgstr "Gehitu zuk bakarrik jarraitzen duzun jendearen lehenetsitako feeda"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:386
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:389
msgid "Add the following DNS record to your domain:"
msgstr "Gehitu honako DNS agiria zure domeinuan:"
-#: src/components/FeedCard.tsx:296
+#: src/components/FeedCard.tsx:295
msgid "Add this feed to your feeds"
msgstr "Gehitu feed hau zure feedetara"
@@ -627,15 +616,15 @@ msgstr "Eduki Heldu etiketak"
msgid "Advanced"
msgstr "Aurreratua"
-#: src/state/shell/progress-guide.tsx:171
-msgid "Algorithm training complete!"
-msgstr "Algoritmoaren entrenamendua bukatua!"
+#: src/view/screens/Notifications.tsx:86
+msgid "All"
+msgstr "Guztiak"
#: src/screens/StarterPack/StarterPackScreen.tsx:381
msgid "All accounts have been followed!"
msgstr "Kontu guztiak jarraituak izan dira!"
-#: src/view/screens/Feeds.tsx:700
+#: src/view/screens/Feeds.tsx:702
msgid "All the feeds you've saved, right in one place."
msgstr "Gorde dituzun feed guztiak, leku bakar batean."
@@ -648,6 +637,10 @@ msgstr "Baimendu sarrera zure mezu zuzenetara"
msgid "Allow new messages from"
msgstr "Baimendu mezu berriak bertatik"
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:314
+msgid "Allow quote posts"
+msgstr "Baimendu post aipamenak"
+
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:359
msgid "Allow replies from:"
msgstr "Baimendu erantzunak bertatik:"
@@ -764,11 +757,11 @@ msgstr "Arazo bat gertatu da txata hastean"
msgid "An issue occurred while trying to open the chat"
msgstr "Arazo bat gertatu da txata irekitzen saiatzean"
-#: src/view/com/profile/FollowButton.tsx:35
-#: src/view/com/profile/FollowButton.tsx:45 src/components/ProfileCard.tsx:326
-#: src/components/ProfileCard.tsx:346
#: src/components/hooks/useFollowMethods.ts:35
#: src/components/hooks/useFollowMethods.ts:50
+#: src/components/ProfileCard.tsx:330 src/components/ProfileCard.tsx:351
+#: src/view/com/profile/FollowButton.tsx:35
+#: src/view/com/profile/FollowButton.tsx:45
msgid "An issue occurred, please try again."
msgstr "Arazo bat gertatu da. Mesedez, saiatu berriro."
@@ -785,7 +778,7 @@ msgstr "etiketatzaile ezezaguna"
msgid "and"
msgstr "eta"
-#: src/screens/Onboarding/state.ts:81 src/screens/Onboarding/index.tsx:29
+#: src/screens/Onboarding/index.tsx:29 src/screens/Onboarding/state.ts:94
msgid "Animals"
msgstr "Animaliak"
@@ -797,8 +790,8 @@ msgstr "GIF animatuak"
msgid "Anti-Social Behavior"
msgstr "Gizartearen Aurkako Portaera"
-#: src/view/screens/Search/Search.tsx:329
-#: src/view/screens/Search/Search.tsx:330
+#: src/view/screens/Search/Search.tsx:336
+#: src/view/screens/Search/Search.tsx:337
msgid "Any language"
msgstr "Edozein hizkuntza"
@@ -806,9 +799,9 @@ msgstr "Edozein hizkuntza"
msgid "Anybody can interact"
msgstr "Edozeinek elkarreragin dezake"
-#: src/Navigation.tsx:370 src/screens/Settings/AppearanceSettings.tsx:187
-#: src/screens/Settings/AppearanceSettings.tsx:190
-#: src/screens/Settings/AppIconSettings.tsx:27
+#: src/Navigation.tsx:371 src/screens/Settings/AppIconSettings/index.tsx:67
+#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18
+#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23
msgid "App Icon"
msgstr "Aplikazio Ikonoa"
@@ -841,7 +834,7 @@ msgstr "Aplikazioaren pasahitzaren izenek 4 karaktere izan behar dituzte gutxien
msgid "App passwords"
msgstr "Aplikazio pasahitzak"
-#: src/Navigation.tsx:290 src/screens/Settings/AppPasswords.tsx:51
+#: src/Navigation.tsx:291 src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "Aplikazio Pasahitzak"
@@ -867,9 +860,8 @@ msgstr "Apelazioa bidalia"
msgid "Appeal this decision"
msgstr "Apelatu erabaki hau"
-#: src/Navigation.tsx:330 src/screens/Settings/Settings.tsx:183
-#: src/screens/Settings/Settings.tsx:186
-#: src/screens/Settings/AppearanceSettings.tsx:86
+#: src/Navigation.tsx:331 src/screens/Settings/AppearanceSettings.tsx:85
+#: src/screens/Settings/Settings.tsx:183 src/screens/Settings/Settings.tsx:186
msgid "Appearance"
msgstr "Itxura"
@@ -879,12 +871,12 @@ msgid "Apply default recommended feeds"
msgstr "Aplikatu gomendatutako feed lehenetsiak"
#. placeholder {0}: niceDate(i18n, createdAt)
-#: src/view/com/post-thread/PostThreadItem.tsx:835
+#: src/view/com/post-thread/PostThreadItem.tsx:834
msgid "Archived from {0}"
msgstr "{0}-tik artxibatuta"
-#: src/view/com/post-thread/PostThreadItem.tsx:804
-#: src/view/com/post-thread/PostThreadItem.tsx:843
+#: src/view/com/post-thread/PostThreadItem.tsx:803
+#: src/view/com/post-thread/PostThreadItem.tsx:842
msgid "Archived post"
msgstr "Gordetako posta"
@@ -897,7 +889,7 @@ msgstr "Ziur zaude \"{0}\" aplikazioaren pasahitza ezabatu nahi duzula?"
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant."
msgstr "Ziur zaude mezu hau ezabatu nahi duzula? Mezua zuretzako ezabatuko da, baina ez beste parte-hartzaileentzat."
-#: src/screens/StarterPack/StarterPackScreen.tsx:633
+#: src/screens/StarterPack/StarterPackScreen.tsx:634
msgid "Are you sure you want to delete this starter pack?"
msgstr "Ziur zaude abio multzo hau ezabatu nahi duzula?"
@@ -914,11 +906,11 @@ msgstr "Ziur zaude elkarrizketa hau utzi nahi duzula? Zure mezuak ezabatuko dira
msgid "Are you sure you want to remove {0} from your feeds?"
msgstr "Ziur zaude {0} zure feedetatik ezabatu nahi duzula?"
-#: src/components/FeedCard.tsx:313
+#: src/components/FeedCard.tsx:312
msgid "Are you sure you want to remove this from your feeds?"
msgstr "Ziur zaude hau zure feedetatik ezabatu nahi duzula?"
-#: src/view/com/composer/Composer.tsx:672
+#: src/view/com/composer/Composer.tsx:679
msgid "Are you sure you'd like to discard this draft?"
msgstr "Ziur zaude zirriborro hau baztertu nahi duzula?"
@@ -935,7 +927,7 @@ msgstr "Ziur zaude?"
msgid "Are you writing in <0>{0}0>?"
msgstr "<0>{0}0>-z idazten ari zara?"
-#: src/screens/Onboarding/state.ts:82 src/screens/Onboarding/index.tsx:23
+#: src/screens/Onboarding/index.tsx:23 src/screens/Onboarding/state.ts:95
msgid "Art"
msgstr "Artea"
@@ -951,34 +943,34 @@ msgstr "Gutxienez 3 karaktere"
msgid "Autoplay options have moved to the <0>Content and Media settings0>."
msgstr "Erreprodukzio automatikoko aukerak <0>Edukia eta Multimedia ezarpenetara0> mugitu dira."
-#: src/screens/Settings/ContentAndMediaSettings.tsx:96
-#: src/screens/Settings/ContentAndMediaSettings.tsx:102
+#: src/screens/Settings/ContentAndMediaSettings.tsx:106
+#: src/screens/Settings/ContentAndMediaSettings.tsx:112
msgid "Autoplay videos and GIFs"
msgstr "Bideo eta GIF erreprodukzio automatikoa"
-#: src/screens/StarterPack/Wizard/index.tsx:286
-#: src/screens/Signup/BackNextButtons.tsx:41
-#: src/screens/Profile/Header/Shell.tsx:112
-#: src/screens/Messages/components/ChatDisabled.tsx:133
-#: src/screens/Messages/components/ChatDisabled.tsx:134
-#: src/screens/Login/SetNewPasswordForm.tsx:154
-#: src/screens/Login/SetNewPasswordForm.tsx:160
-#: src/screens/Login/LoginForm.tsx:282 src/screens/Login/LoginForm.tsx:288
-#: src/screens/Login/ForgotPasswordForm.tsx:123
-#: src/screens/Login/ForgotPasswordForm.tsx:129
-#: src/screens/Login/ChooseAccountForm.tsx:90
-#: src/screens/Login/ChooseAccountForm.tsx:95
+#: src/components/dms/MessagesListHeader.tsx:74
#: src/components/moderation/LabelsOnMeDialog.tsx:290
#: src/components/moderation/LabelsOnMeDialog.tsx:291
-#: src/components/dms/MessagesListHeader.tsx:74
+#: 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:292 src/screens/Login/LoginForm.tsx:298
+#: 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:115
+#: src/screens/Signup/BackNextButtons.tsx:41
+#: src/screens/StarterPack/Wizard/index.tsx:286
msgid "Back"
msgstr "Atzera"
-#: src/view/screens/ModerationModlists.tsx:86 src/view/screens/Lists.tsx:84
+#: src/view/screens/Lists.tsx:81 src/view/screens/ModerationModlists.tsx:81
msgid "Before creating a list, you must first verify your email."
msgstr "Zerrenda bat sortu aurretik, zure posta elektronikoa egiaztatu behar duzu."
-#: src/view/com/composer/Composer.tsx:599
+#: src/view/com/composer/Composer.tsx:606
msgid "Before creating a post, you must first verify your email."
msgstr "Post bat sortu aurretik, zure posta elektronikoa egiaztatu behar duzu."
@@ -992,20 +984,24 @@ msgstr "Abio multzo bat sortu aurretik, zure posta elektronikoa egiaztatu behar
msgid "Before you may message another user, you must first verify your email."
msgstr "Beste erabiltzaile bati mezua bidali aurretik, zure posta elektronikoa egiaztatu behar duzu."
+#: src/screens/Search/components/ExploreTrendingTopics.tsx:74
+msgid "BETA"
+msgstr "BETA"
+
#: src/screens/Settings/AccountSettings.tsx:109
#: src/components/dialogs/BirthDateSettings.tsx:106
msgid "Birthday"
msgstr "Urtebetetzea"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:744
-#: src/view/com/profile/ProfileMenu.tsx:341
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
+#: src/view/com/profile/ProfileMenu.tsx:341
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:744
msgid "Block"
msgstr "Blokeatu"
+#: src/components/dms/ConvoMenu.tsx:188 src/components/dms/ConvoMenu.tsx:192
#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:603
#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:605
-#: src/components/dms/ConvoMenu.tsx:188 src/components/dms/ConvoMenu.tsx:192
msgid "Block account"
msgstr "Kontua blokeatu"
@@ -1019,15 +1015,15 @@ msgstr "Kontua Blokeatu"
msgid "Block Account?"
msgstr "Kontua Blokeatu?"
-#: src/view/screens/ProfileList.tsx:642
+#: src/view/screens/ProfileList.tsx:639
msgid "Block accounts"
msgstr "Kontuak blokeatu"
-#: src/view/screens/ProfileList.tsx:746
+#: src/view/screens/ProfileList.tsx:760
msgid "Block list"
msgstr "Blokeo zerrenda"
-#: src/view/screens/ProfileList.tsx:741
+#: src/view/screens/ProfileList.tsx:755
msgid "Block these accounts?"
msgstr "Kontu hauek blokeatu?"
@@ -1039,7 +1035,7 @@ msgstr "Blokeatua"
msgid "Blocked accounts"
msgstr "Blokeatutako kontuak"
-#: src/Navigation.tsx:154 src/view/screens/ModerationBlockedAccounts.tsx:100
+#: src/Navigation.tsx:155 src/view/screens/ModerationBlockedAccounts.tsx:101
msgid "Blocked Accounts"
msgstr "Blokeatutako Kontuak"
@@ -1048,11 +1044,11 @@ msgstr "Blokeatutako Kontuak"
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Blokeatutako kontuek ezin dute zure harietan erantzun, zu aipatu edo zurekin elkarreragin."
-#: src/view/screens/ModerationBlockedAccounts.tsx:111
+#: src/view/screens/ModerationBlockedAccounts.tsx:112
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours."
msgstr "Blokeatutako kontuek ezin dute zure harietan erantzun, zu aipatu edo zurekin elkarreragin. Ez duzu haien edukia ikusiko eta zurea ikustea galaraziko zaie."
-#: src/view/com/post-thread/PostThread.tsx:420
+#: src/view/com/post-thread/PostThread.tsx:464
msgid "Blocked post."
msgstr "Post blokeatua."
@@ -1060,7 +1056,7 @@ msgstr "Post blokeatua."
msgid "Blocking does not prevent this labeler from placing labels on your account."
msgstr "Blokeatzeak ez dio etiketatzaile honi eragotziko etiketak zure kontuan aplikatzea."
-#: src/view/screens/ProfileList.tsx:743
+#: src/view/screens/ProfileList.tsx:757
msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Blokeatzea publikoa da. Blokeatutako kontuek ezin dute zure harietan erantzun, zu aipatu edo zurekin elkarreragin."
@@ -1077,7 +1073,7 @@ msgstr "Blog-a"
msgid "Bluesky"
msgstr "Bluesky"
-#: src/view/com/post-thread/PostThreadItem.tsx:860
+#: src/view/com/post-thread/PostThreadItem.tsx:859
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Bluesky-k ezin du baieztatu erreklamatutako dataren benetakotasuna."
@@ -1085,7 +1081,8 @@ msgstr "Bluesky-k ezin du baieztatu erreklamatutako dataren benetakotasuna."
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 sare ireki bat da, non zure hornitzailea aukeratu dezakezun. Garatzailea bazara, zure zerbitzari propioa osta dezakezu."
-#: src/components/ProgressGuide/List.tsx:54
+#: src/components/ProgressGuide/List.tsx:53
+#: src/components/ProgressGuide/List.tsx:70
msgid "Bluesky is better with friends!"
msgstr "Bluesky hobea da lagunekin!"
@@ -1097,6 +1094,14 @@ msgstr "Bluesky-k zure sareko pertsonen artean gomendatutako kontu multzo bat au
msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private."
msgstr "Bluesky-k ez die zure profila eta postak erakutsiko saioa hasita ez duten erabiltzaileei. Baliteke beste aplikazio batzuek eskaera hau ez onartzea. Horrek ez du zure kontua pribatu bihurtzen."
+#: src/screens/Settings/AppIconSettings/index.tsx:99
+msgid "Bluesky+"
+msgstr "Bluesky+"
+
+#: src/screens/Settings/AppIconSettings/index.tsx:102
+msgid "Bluesky+ icons"
+msgstr "Bluesky+ ikonoak"
+
#: src/lib/moderation/useLabelBehaviorDescription.ts:53
msgid "Blur images"
msgstr "Irudiak lausotu"
@@ -1105,27 +1110,27 @@ msgstr "Irudiak lausotu"
msgid "Blur images and filter from feeds"
msgstr "Irudiak lausotu eta iragazi feedetatik"
-#: src/screens/Onboarding/state.ts:83 src/screens/Onboarding/index.tsx:30
+#: src/screens/Onboarding/index.tsx:30 src/screens/Onboarding/state.ts:96
msgid "Books"
msgstr "Liburuak"
-#: src/components/FeedInterstitials.tsx:350
+#: src/components/FeedInterstitials.tsx:348
msgid "Browse more accounts on the Explore page"
msgstr "Nabigatu kontu gehiagotatik Arakatu orrian"
-#: src/components/FeedInterstitials.tsx:483
+#: src/components/FeedInterstitials.tsx:481
msgid "Browse more feeds on the Explore page"
msgstr "Nabigatu feed gehiagotatik Arakatu orrian"
-#: src/components/FeedInterstitials.tsx:332
-#: src/components/FeedInterstitials.tsx:335
-#: src/components/FeedInterstitials.tsx:465
-#: src/components/FeedInterstitials.tsx:468
+#: src/components/FeedInterstitials.tsx:330
+#: src/components/FeedInterstitials.tsx:333
+#: src/components/FeedInterstitials.tsx:463
+#: src/components/FeedInterstitials.tsx:466
msgid "Browse more suggestions"
msgstr "Nabigatu proposamen gehiagotatik"
-#: src/components/FeedInterstitials.tsx:358
-#: src/components/FeedInterstitials.tsx:492
+#: src/components/FeedInterstitials.tsx:356
+#: src/components/FeedInterstitials.tsx:490
msgid "Browse more suggestions on the Explore page"
msgstr "Nabigatu proposamen gehiagotatik Arakatu orrian"
@@ -1134,22 +1139,30 @@ msgstr "Nabigatu proposamen gehiagotatik Arakatu orrian"
msgid "Browse other feeds"
msgstr "Nabigatu beste feedetatik"
+#: src/components/TrendingTopics.tsx:176
+msgid "Browse posts about {displayName}"
+msgstr "Nabigatu {displayName}-ri buruzko postak"
+
+#: src/components/TrendingTopics.tsx:184
+msgid "Browse posts tagged with {displayName}"
+msgstr "Nabigatu {displayName}-rekin etiketatutako postak"
+
+#: src/components/TrendingTopics.tsx:222
+msgid "Browse topic {displayName}"
+msgstr "Nabigatu {displayName} gaia"
+
#: src/view/com/auth/SplashScreen.web.tsx:168
msgid "Business"
msgstr "Negozio"
-#: src/view/com/profile/ProfileSubpageHeader.tsx:150
-msgid "by —"
-msgstr "—-gatik"
-
#. placeholder {0}: sanitizeHandle(handle, '@')
#: src/components/LabelingServiceCard/index.tsx:62
msgid "By {0}"
msgstr "{0}-gatik"
-#: src/view/com/profile/ProfileSubpageHeader.tsx:154
-msgid "by <0/>"
-msgstr "<0/>-gatik"
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:447
+msgid "By <0>{0}0>"
+msgstr "<0>{0}0>-gatik"
#: src/screens/Signup/StepInfo/Policies.tsx:81
msgid "By creating an account you agree to the <0>Privacy Policy0>."
@@ -1163,50 +1176,47 @@ msgstr "Kontua sortzean <0>Zerbitzu Baldintzak0> eta <1>Pribatutasun Politika<
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "Kontua sortzean <0>Zerbitzu Baldintzak0> onartzen dituzu."
-#: src/view/com/profile/ProfileSubpageHeader.tsx:152
-msgid "by you"
-msgstr "Zuregatik"
-
#: src/view/com/composer/photos/OpenCameraBtn.tsx:72
msgid "Camera"
msgstr "Kamera"
-#: src/view/screens/Search/Search.tsx:888
-#: src/view/com/util/post-ctrls/RepostButton.tsx:203
-#: src/view/com/modals/VerifyEmail.tsx:255
-#: src/view/com/modals/VerifyEmail.tsx:261
-#: src/view/com/modals/LinkWarning.tsx:105
-#: src/view/com/modals/LinkWarning.tsx:107
-#: src/view/com/modals/InAppBrowserConsent.tsx:75
-#: src/view/com/modals/InAppBrowserConsent.tsx:77
-#: src/view/com/modals/EditProfile.tsx:244
-#: src/view/com/modals/CropImage.web.tsx:97
-#: src/view/com/modals/CreateOrEditList.tsx:335
-#: src/view/com/modals/ChangePassword.tsx:268
-#: src/view/com/modals/ChangePassword.tsx:271
-#: src/view/com/modals/ChangeEmail.tsx:213
-#: src/view/com/modals/ChangeEmail.tsx:215
-#: src/view/com/composer/Composer.tsx:909 src/screens/Deactivated.tsx:157
-#: src/screens/Settings/Settings.tsx:260
-#: src/screens/Settings/AppIconSettings.tsx:85
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:72
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:79
+#: src/components/Menu/index.tsx:297 src/components/Prompt.tsx:129
+#: src/components/Prompt.tsx:131 src/components/TagMenu/index.tsx:283
+#: src/screens/Deactivated.tsx:157
#: src/screens/Profile/Header/EditProfileDialog.tsx:220
#: src/screens/Profile/Header/EditProfileDialog.tsx:228
-#: src/components/Prompt.tsx:129 src/components/Prompt.tsx:131
-#: src/components/TagMenu/index.tsx:283 src/components/Menu/index.tsx:236
+#: src/screens/Settings/AppIconSettings/index.tsx:44
+#: src/screens/Settings/AppIconSettings/index.tsx:225
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:76
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:83
+#: src/screens/Settings/Settings.tsx:260 src/view/com/composer/Composer.tsx:916
+#: src/view/com/modals/ChangeEmail.tsx:213
+#: src/view/com/modals/ChangeEmail.tsx:215
+#: 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:213
+#: src/view/screens/Search/Search.tsx:894
msgid "Cancel"
msgstr "Utzi"
-#: src/view/com/modals/DeleteAccount.tsx:174
-#: src/view/com/modals/DeleteAccount.tsx:297
#: src/view/com/modals/CreateOrEditList.tsx:340
+#: src/view/com/modals/DeleteAccount.tsx:170
+#: src/view/com/modals/DeleteAccount.tsx:278
msgctxt "action"
msgid "Cancel"
msgstr "Utzi"
-#: src/view/com/modals/DeleteAccount.tsx:170
-#: src/view/com/modals/DeleteAccount.tsx:293
+#: src/view/com/modals/DeleteAccount.tsx:166
+#: src/view/com/modals/DeleteAccount.tsx:274
msgid "Cancel account deletion"
msgstr "Utzi kontua ezabatzea"
@@ -1218,7 +1228,7 @@ msgstr "Utzi irudiaren mozketa"
msgid "Cancel profile editing"
msgstr "Utzi profilaren edizioa"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:197
+#: src/view/com/util/post-ctrls/RepostButton.tsx:207
msgid "Cancel quote post"
msgstr "Utzi postaren aipamena"
@@ -1226,7 +1236,7 @@ msgstr "Utzi postaren aipamena"
msgid "Cancel reactivation and log out"
msgstr "Utzi berriro aktibatzea eta amaitu saioa"
-#: src/view/screens/Search/Search.tsx:880
+#: src/view/screens/Search/Search.tsx:886
#: src/view/com/modals/ListAddRemoveUsers.tsx:88
msgid "Cancel search"
msgstr "Utzi bilaketa"
@@ -1235,10 +1245,10 @@ msgstr "Utzi bilaketa"
msgid "Cancels opening the linked website"
msgstr "Estekatutako webgunea irekitzea bertan behera uzten du"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:116
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:157
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:193
-#: src/state/shell/composer/index.tsx:82
+#: src/state/shell/composer/index.tsx:83
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:117
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:158
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:194
msgid "Cannot interact with a blocked user"
msgstr "Ezin da blokeatutako erabiltzaile batekin elkarreragin"
@@ -1255,8 +1265,12 @@ msgstr "Epigrafeak eta aukerazko testua"
msgid "Change"
msgstr "Aldatu"
-#. placeholder {0}: icon.name
-#: src/screens/Settings/AppIconSettings.tsx:81
+#: src/screens/Settings/AppIconSettings/index.tsx:39
+msgid "Change app icon"
+msgstr "Aldatu aplikazioaren ikonoa"
+
+#: src/screens/Settings/AppIconSettings/index.tsx:38
+#: src/screens/Settings/AppIconSettings/index.tsx:221
msgid "Change app icon to \"{0}\""
msgstr "Aldatu aplikazioaren ikonoa \"{0}\"-ra"
@@ -1270,8 +1284,8 @@ msgstr "Aldatu e-posta"
msgid "Change email address"
msgstr "Aldatu e-posta helbidea"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:88
#: src/screens/Settings/components/ChangeHandleDialog.tsx:92
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:96
msgid "Change Handle"
msgstr "Aldatu Erabiltzailea"
@@ -1296,9 +1310,8 @@ msgstr "Aldatu Zure E-posta"
msgid "Change your email address"
msgstr "Aldatu zure e-posta helbidea"
-#: src/Navigation.tsx:382 src/view/shell/Drawer.tsx:417
-#: src/view/shell/desktop/LeftNav.tsx:314
-#: src/view/shell/bottom-bar/BottomBar.tsx:200
+#: src/Navigation.tsx:388 src/view/shell/bottom-bar/BottomBar.tsx:205
+#: src/view/shell/desktop/LeftNav.tsx:335 src/view/shell/Drawer.tsx:417
msgid "Chat"
msgstr "Txateatu"
@@ -1306,8 +1319,8 @@ msgstr "Txateatu"
msgid "Chat muted"
msgstr "Txata mututua"
-#: src/Navigation.tsx:387 src/screens/Messages/ChatList.tsx:244
-#: src/components/dms/MessageMenu.tsx:81 src/components/dms/ConvoMenu.tsx:112
+#: src/components/dms/ConvoMenu.tsx:112 src/components/dms/MessageMenu.tsx:81
+#: src/Navigation.tsx:393 src/screens/Messages/ChatList.tsx:246
msgid "Chat settings"
msgstr "Txataren ezarpenak"
@@ -1323,11 +1336,11 @@ msgstr "Txata ez dago mututua"
msgid "Check my status"
msgstr "Egiaztatu nire egoera"
-#: src/screens/Login/LoginForm.tsx:275
+#: src/screens/Login/LoginForm.tsx:285
msgid "Check your email for a login code and enter it here."
msgstr "Egiaztatu zure e-posta, saioa hasteko kodea hartu eta sartu hemen."
-#: src/view/com/modals/DeleteAccount.tsx:232
+#: src/view/com/modals/DeleteAccount.tsx:213
msgid "Check your inbox for an email with the confirmation code to enter below:"
msgstr "Egiaztatu zure sarrera-ontzia, baieztapen kodea hartu eta sartu hemen:"
@@ -1355,7 +1368,7 @@ msgstr "Aukeratu argitaratzen ari zaren edukiarentzat aplikagarriak diren auto-e
msgid "Choose Service"
msgstr "Aukeratu Zerbitzua"
-#: src/screens/Onboarding/StepFinished.tsx:276
+#: src/screens/Onboarding/StepFinished.tsx:280
msgid "Choose the algorithms that power your custom feeds."
msgstr "Aukeratu zure feed pertsonalizatuak bultzatzen dituzten algoritmoak."
@@ -1363,10 +1376,18 @@ msgstr "Aukeratu zure feed pertsonalizatuak bultzatzen dituzten algoritmoak."
msgid "Choose this color as your avatar"
msgstr "Aukeratu kolore hau zure abatar gisa"
+#: src/view/screens/Feeds.tsx:728 src/view/screens/Search/Explore.tsx:411
+msgid "Choose your own timeline! Feeds built by the community help you find content you love."
+msgstr "Aukeratu zure denbora-lerroa! Komunitateak sortutako feedek maite duzun edukia aurkitzen laguntzen dizu."
+
#: src/screens/Signup/StepInfo/index.tsx:201
msgid "Choose your password"
msgstr "Aukeratu zure pasahitza"
+#: src/screens/Signup/index.tsx:142
+msgid "Choose your username"
+msgstr "Aukeratu zure erabiltzaile-izena"
+
#: src/screens/Settings/Settings.tsx:350
msgid "Clear all storage data"
msgstr "Garbitu biltegiratze-datu guztiak"
@@ -1383,14 +1404,6 @@ msgstr "Garbitu bilaketa-kontsulta"
msgid "click here"
msgstr "klik hemen"
-#: src/view/com/modals/DeleteAccount.tsx:208
-msgid "Click here for more information on deactivating your account"
-msgstr "Egin klik hemen zure kontua desaktibatzeari buruzko informazio gehiago lortzeko"
-
-#: src/view/com/modals/DeleteAccount.tsx:217
-msgid "Click here for more information."
-msgstr "Egin klik hemen informazio gehiago lortzeko."
-
#: src/components/TagMenu/index.web.tsx:152
msgid "Click here to open tag menu for {tag}"
msgstr "Egin klik hemen {tag} etiketa-menua irekitzeko"
@@ -1415,15 +1428,16 @@ msgstr "Giroa"
msgid "Clip 🐴 clop 🐴"
msgstr "Klip 🐴 klop 🐴"
-#: src/view/com/util/post-embeds/GifEmbed.tsx:197
-#: src/view/com/modals/ChangePassword.tsx:268
-#: src/view/com/modals/ChangePassword.tsx:271
-#: src/components/NewskieDialog.tsx:146 src/components/NewskieDialog.tsx:153
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:263
-#: src/components/dialogs/VerifyEmailDialog.tsx:289
#: src/components/dialogs/GifSelect.tsx:281
+#: src/components/dialogs/VerifyEmailDialog.tsx:289
+#: src/components/dms/dialogs/SearchablePeopleList.tsx:265
+#: src/components/NewskieDialog.tsx:146 src/components/NewskieDialog.tsx:153
+#: src/components/ProgressGuide/FollowDialog.tsx:429
#: 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 "Itxi"
@@ -1444,11 +1458,16 @@ msgstr "Itxi beheko tiradera"
msgid "Close dialog"
msgstr "Itxi elkarrizketa-koadroa"
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
+msgid "Close emoji picker"
+msgstr "Itxi emoji-hautatzailea"
+
#: src/components/dialogs/GifSelect.tsx:169
msgid "Close GIF dialog"
msgstr "Itxi GIF elkarrizketa-koadroa"
-#: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:35
+#: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:31
msgid "Close image"
msgstr "Itxi irudia"
@@ -1460,7 +1479,7 @@ msgstr "Itxi irudi ikuslea"
msgid "Close navigation footer"
msgstr "Itxi nabigazio-oina"
-#: src/components/TagMenu/index.tsx:277 src/components/Menu/index.tsx:230
+#: src/components/Menu/index.tsx:291 src/components/TagMenu/index.tsx:277
msgid "Close this dialog"
msgstr "Itxi elkarrizketa-koadro hau"
@@ -1472,35 +1491,35 @@ msgstr "Beheko nabigazio-barra ixten du"
msgid "Closes password update alert"
msgstr "Pasahitzak eguneratzeko alerta ixten du"
-#: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:36
+#: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:32
msgid "Closes viewer for header image"
msgstr "Goiburuko irudiaren ikuslea ixten du"
-#: src/view/com/notifications/FeedItem.tsx:400
+#: src/view/com/notifications/NotificationFeedItem.tsx:401
msgid "Collapse list of users"
msgstr "Tolestu erabiltzaileen zerrenda"
-#: src/view/com/notifications/FeedItem.tsx:593
+#: src/view/com/notifications/NotificationFeedItem.tsx:594
msgid "Collapses list of users for a given notification"
msgstr "Jakinarazpen jakin baterako erabiltzaileen zerrenda tolesten du"
-#: src/screens/Settings/AppearanceSettings.tsx:94
+#: src/screens/Settings/AppearanceSettings.tsx:93
msgid "Color mode"
msgstr "Kolore modua"
-#: src/screens/Onboarding/state.ts:84 src/screens/Onboarding/index.tsx:38
+#: src/screens/Onboarding/index.tsx:38 src/screens/Onboarding/state.ts:97
msgid "Comedy"
msgstr "Komedia"
-#: src/screens/Onboarding/state.ts:85 src/screens/Onboarding/index.tsx:24
+#: src/screens/Onboarding/index.tsx:24 src/screens/Onboarding/state.ts:98
msgid "Comics"
msgstr "Komikiak"
-#: src/Navigation.tsx:280 src/view/screens/CommunityGuidelines.tsx:34
+#: src/Navigation.tsx:281 src/view/screens/CommunityGuidelines.tsx:34
msgid "Community Guidelines"
msgstr "Komunitate-gidalerroak"
-#: src/screens/Onboarding/StepFinished.tsx:289
+#: src/screens/Onboarding/StepFinished.tsx:293
msgid "Complete onboarding and start using your account"
msgstr "Osatu sartzea eta hasi zure kontua erabiltzen"
@@ -1508,11 +1527,11 @@ msgstr "Osatu sartzea eta hasi zure kontua erabiltzen"
msgid "Complete the challenge"
msgstr "Osatu erronka"
-#: src/view/shell/desktop/LeftNav.tsx:280
+#: src/view/shell/desktop/LeftNav.tsx:301
msgid "Compose new post"
msgstr "Idatzi post berria"
-#: src/view/com/composer/Composer.tsx:812
+#: src/view/com/composer/Composer.tsx:819
msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length"
msgstr "Idatzi {MAX_GRAPHEME_LENGTH} karaktere gehienezko postak"
@@ -1520,7 +1539,7 @@ msgstr "Idatzi {MAX_GRAPHEME_LENGTH} karaktere gehienezko postak"
msgid "Compose reply"
msgstr "Idatzi erantzuna"
-#: src/view/com/composer/Composer.tsx:1628
+#: src/view/com/composer/Composer.tsx:1635
msgid "Compressing video..."
msgstr "Bideoa konprimitzen..."
@@ -1532,14 +1551,14 @@ msgstr "Konfiguratu edukia iragazteko ezarpena kategoriarako: {name}"
msgid "Configured in <0>moderation settings0>."
msgstr "<0>Moderazio-ezarpenetan0> konfiguratuta."
-#: src/view/com/modals/VerifyEmail.tsx:239
-#: src/view/com/modals/VerifyEmail.tsx:241
-#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
-#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
-#: src/components/Prompt.tsx:172 src/components/Prompt.tsx:175
#: src/components/dialogs/VerifyEmailDialog.tsx:253
#: src/components/dialogs/VerifyEmailDialog.tsx:260
#: src/components/dialogs/VerifyEmailDialog.tsx:283
+#: src/components/Prompt.tsx:172 src/components/Prompt.tsx:175
+#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
+#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
+#: src/view/com/modals/VerifyEmail.tsx:239
+#: src/view/com/modals/VerifyEmail.tsx:241
msgid "Confirm"
msgstr "Berretsi"
@@ -1552,7 +1571,7 @@ msgstr "Berretsi aldaketa"
msgid "Confirm content language settings"
msgstr "Berretsi edukiaren hizkuntza-ezarpenak"
-#: src/view/com/modals/DeleteAccount.tsx:283
+#: src/view/com/modals/DeleteAccount.tsx:264
msgid "Confirm delete account"
msgstr "Berretsi kontua ezabatzea"
@@ -1564,14 +1583,14 @@ msgstr "Egiaztatu zure adina:"
msgid "Confirm your birthdate"
msgstr "Berretsi zure jaioteguna"
-#: src/view/com/modals/VerifyEmail.tsx:173
-#: src/view/com/modals/DeleteAccount.tsx:239
-#: src/view/com/modals/DeleteAccount.tsx:245
-#: src/view/com/modals/ChangeEmail.tsx:152
+#: src/components/dialogs/VerifyEmailDialog.tsx:214
+#: src/screens/Login/LoginForm.tsx:258
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:144
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:150
-#: src/screens/Login/LoginForm.tsx:256
-#: src/components/dialogs/VerifyEmailDialog.tsx:214
+#: src/view/com/modals/ChangeEmail.tsx:152
+#: src/view/com/modals/DeleteAccount.tsx:220
+#: src/view/com/modals/DeleteAccount.tsx:226
+#: src/view/com/modals/VerifyEmail.tsx:173
msgid "Confirmation code"
msgstr "Baieztapen kodea"
@@ -1579,7 +1598,7 @@ msgstr "Baieztapen kodea"
msgid "Confirmation Code"
msgstr "Baieztapen Kodea"
-#: src/screens/Login/LoginForm.tsx:309
+#: src/screens/Login/LoginForm.tsx:319
msgid "Connecting..."
msgstr "Konektatzen..."
@@ -1587,16 +1606,16 @@ msgstr "Konektatzen..."
msgid "Contact support"
msgstr "Jarri laguntzarekin harremanetan"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:39
+#: src/screens/Settings/ContentAndMediaSettings.tsx:49
msgid "Content & Media"
msgstr "Edukiak eta Media"
-#: src/screens/Settings/Settings.tsx:175 src/screens/Settings/Settings.tsx:178
#: src/screens/Settings/AccessibilitySettings.tsx:109
+#: src/screens/Settings/Settings.tsx:175 src/screens/Settings/Settings.tsx:178
msgid "Content and media"
msgstr "Edukiak eta media"
-#: src/Navigation.tsx:354
+#: src/Navigation.tsx:355
msgid "Content and Media"
msgstr "Edukiak eta Media"
@@ -1629,7 +1648,7 @@ msgstr "Edukien Abisua"
msgid "Content warnings"
msgstr "Edukien abisuak"
-#: src/components/Menu/index.web.tsx:81
+#: src/components/Menu/index.web.tsx:82
msgid "Context menu backdrop, click to close the menu."
msgstr "Testuinguru-menuaren atzeko planoa, egin klik menua ixteko."
@@ -1669,10 +1688,10 @@ msgstr "Kopiatua"
msgid "Copied build version to clipboard"
msgstr "Konpilazio bertsioa arbelean kopiatu da"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:386
+#: src/components/dms/MessageMenu.tsx:57 src/lib/sharing.ts:25
+#: src/view/com/modals/InviteCodes.tsx:153
#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:235
-#: src/view/com/modals/InviteCodes.tsx:153 src/lib/sharing.ts:25
-#: src/components/dms/MessageMenu.tsx:57
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:393
msgid "Copied to clipboard"
msgstr "Arbelean kopiatua"
@@ -1697,11 +1716,11 @@ msgstr "Kopiatu eraikitze-bertsioa arbelean"
msgid "Copy code"
msgstr "Kopiatu kodea"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:471
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:474
msgid "Copy DID"
msgstr "Kopiatu DID"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:404
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:407
msgid "Copy host"
msgstr "Kopiatu ostalaria"
@@ -1713,7 +1732,7 @@ msgstr "Kopiatu esteka"
msgid "Copy Link"
msgstr "Kopiatu Esteka"
-#: src/view/screens/ProfileList.tsx:486
+#: src/view/screens/ProfileList.tsx:483
msgid "Copy link to list"
msgstr "Kopiatu esteka zerrendara"
@@ -1736,11 +1755,11 @@ msgstr "Kopiatu postaren testua"
msgid "Copy QR code"
msgstr "Kopiatu QR kodea"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:425
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:428
msgid "Copy TXT record value"
msgstr "Kopiatu TXT erregistroaren balioa"
-#: src/Navigation.tsx:285 src/view/screens/CopyrightPolicy.tsx:31
+#: src/Navigation.tsx:286 src/view/screens/CopyrightPolicy.tsx:31
msgid "Copyright Policy"
msgstr "Copyright Politika"
@@ -1748,11 +1767,11 @@ msgstr "Copyright Politika"
msgid "Could not leave chat"
msgstr "Ezin izan da txata utzi"
-#: src/view/screens/ProfileFeed.tsx:103
+#: src/screens/Profile/ProfileFeed/index.tsx:73
msgid "Could not load feed"
msgstr "Ezin izan da feeda kargatu"
-#: src/view/screens/ProfileList.tsx:1018
+#: src/view/screens/ProfileList.tsx:1000
msgid "Could not load list"
msgstr "Ezin izan da zerrenda kargatu"
@@ -1775,6 +1794,7 @@ msgstr "Sortu QR kodea abio multzo baterako"
#: src/Navigation.tsx:412
#: src/components/StarterPack/ProfileStarterPacks.tsx:168
#: src/components/StarterPack/ProfileStarterPacks.tsx:271
+#: src/Navigation.tsx:418
msgid "Create a starter pack"
msgstr "Sortu abio multzo bat"
@@ -1784,6 +1804,13 @@ msgstr "Sortu niretzat abio multzo bat"
#: src/view/com/auth/SplashScreen.web.tsx:117
#: src/view/com/auth/SplashScreen.tsx:55
+#: src/view/shell/bottom-bar/BottomBar.tsx:306
+#: src/view/shell/bottom-bar/BottomBar.tsx:307
+#: src/view/shell/bottom-bar/BottomBar.tsx:309
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:202
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:203
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:205
+#: src/view/shell/NavSignupCard.tsx:47 src/view/shell/NavSignupCard.tsx:52
msgid "Create account"
msgstr "Sortu kontua"
@@ -1818,7 +1845,11 @@ msgstr "Sortu salaketa {0}rentzat"
msgid "Created {0}"
msgstr "Sortuta {0}"
-#: src/screens/Onboarding/state.ts:86 src/screens/Onboarding/index.tsx:26
+#: src/screens/List/ListHiddenScreen.tsx:127
+msgid "Creator has been blocked"
+msgstr "Sortzailea blokeatu egin da"
+
+#: src/screens/Onboarding/index.tsx:26 src/screens/Onboarding/state.ts:99
msgid "Culture"
msgstr "Kultura"
@@ -1827,16 +1858,12 @@ msgstr "Kultura"
msgid "Custom"
msgstr "Pertsonalizatua"
-#: src/view/screens/Feeds.tsx:726 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 "Komunitateak sortutako feed pertsonalizatuek esperientzia berriak ekartzen dizkizute eta maite duzun edukia aurkitzen laguntzen dizu."
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:292
msgid "Customize who can interact with this post."
msgstr "Pertsonalizatu post honekin nork elkarreragin dezakeen."
-#: src/screens/Settings/AppearanceSettings.tsx:106
-#: src/screens/Settings/AppearanceSettings.tsx:127
+#: src/screens/Settings/AppearanceSettings.tsx:105
+#: src/screens/Settings/AppearanceSettings.tsx:126
msgid "Dark"
msgstr "Iluna"
@@ -1844,7 +1871,7 @@ msgstr "Iluna"
msgid "Dark mode"
msgstr "Modu iluna"
-#: src/screens/Settings/AppearanceSettings.tsx:119
+#: src/screens/Settings/AppearanceSettings.tsx:118
msgid "Dark theme"
msgstr "Gai iluna"
@@ -1866,17 +1893,21 @@ msgstr "Arazketa Moderazioa"
msgid "Debug panel"
msgstr "Arazketa panela"
-#: src/screens/Settings/AppearanceSettings.tsx:169
+#: src/screens/Settings/AppearanceSettings.tsx:168
msgid "Default"
msgstr "Lehenetsia"
-#: src/view/screens/ProfileList.tsx:725
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:661
-#: src/screens/StarterPack/StarterPackScreen.tsx:585
-#: src/screens/StarterPack/StarterPackScreen.tsx:664
-#: src/screens/StarterPack/StarterPackScreen.tsx:744
-#: src/screens/Settings/AppPasswords.tsx:212
+#: src/screens/Settings/AppIconSettings/index.tsx:75
+msgid "Default icons"
+msgstr "Ikono lehenetsiak"
+
#: src/components/dms/MessageMenu.tsx:151
+#: src/screens/Settings/AppPasswords.tsx:212
+#: src/screens/StarterPack/StarterPackScreen.tsx:586
+#: src/screens/StarterPack/StarterPackScreen.tsx:665
+#: src/screens/StarterPack/StarterPackScreen.tsx:745
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:661
+#: src/view/screens/ProfileList.tsx:739
msgid "Delete"
msgstr "Ezabatu"
@@ -1886,7 +1917,7 @@ msgid "Delete account"
msgstr "Ezabatu kontua"
#. placeholder {0}: currentAccount?.handle
-#: src/view/com/modals/DeleteAccount.tsx:105
+#: src/view/com/modals/DeleteAccount.tsx:101
msgid "Delete Account <0>\"0><1>{0}1><2>\"2>"
msgstr "Ezabatu Kontua <0>\"0><1>{0}1><2>\"2>"
@@ -1906,7 +1937,7 @@ msgstr "Ezabatu txat-adierazpenaren erregistroa"
msgid "Delete for me"
msgstr "Ezabatu niretzat"
-#: src/view/screens/ProfileList.tsx:529
+#: src/view/screens/ProfileList.tsx:526
msgid "Delete List"
msgstr "Ezabatu Zerrenda"
@@ -1918,26 +1949,26 @@ msgstr "Ezabatu mezua"
msgid "Delete message for me"
msgstr "Ezabatu mezua niretzat"
-#: src/view/com/modals/DeleteAccount.tsx:286
+#: src/view/com/modals/DeleteAccount.tsx:267
msgid "Delete my account"
msgstr "Ezabatu nire kontua"
+#: src/view/com/composer/Composer.tsx:827
#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:642
#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:644
-#: src/view/com/composer/Composer.tsx:820
msgid "Delete post"
msgstr "Ezabatu posta"
-#: src/screens/StarterPack/StarterPackScreen.tsx:579
-#: src/screens/StarterPack/StarterPackScreen.tsx:735
+#: src/screens/StarterPack/StarterPackScreen.tsx:580
+#: src/screens/StarterPack/StarterPackScreen.tsx:736
msgid "Delete starter pack"
msgstr "Ezabatu abio multzoa"
-#: src/screens/StarterPack/StarterPackScreen.tsx:630
+#: src/screens/StarterPack/StarterPackScreen.tsx:631
msgid "Delete starter pack?"
msgstr "Abio multzoa ezabatu nahi duzu?"
-#: src/view/screens/ProfileList.tsx:720
+#: src/view/screens/ProfileList.tsx:734
msgid "Delete this list?"
msgstr "Zerrenda hau ezabatu nahi duzu?"
@@ -1954,15 +1985,15 @@ msgstr "Ezabatu da"
msgid "Deleted Account"
msgstr "Ezabatutako Kontua"
-#: src/view/com/post-thread/PostThread.tsx:406
+#: src/view/com/post-thread/PostThread.tsx:450
msgid "Deleted post."
msgstr "Ezabatutako posta."
-#: src/view/com/modals/EditProfile.tsx:193
-#: src/view/com/modals/EditProfile.tsx:205
+#: src/screens/Profile/Header/EditProfileDialog.tsx:344
#: src/view/com/modals/CreateOrEditList.tsx:280
#: src/view/com/modals/CreateOrEditList.tsx:301
-#: src/screens/Profile/Header/EditProfileDialog.tsx:344
+#: src/view/com/modals/EditProfile.tsx:193
+#: src/view/com/modals/EditProfile.tsx:205
msgid "Description"
msgstr "Deskribapena"
@@ -1996,7 +2027,7 @@ msgstr "Garatzaile aukerak"
msgid "Dialog: adjust who can interact with this post"
msgstr "Elkarrizketa: egokitu mezu honekin nork elkarreragin dezakeen"
-#: src/screens/Settings/AppearanceSettings.tsx:123
+#: src/screens/Settings/AppearanceSettings.tsx:122
msgid "Dim"
msgstr "Dim"
@@ -2013,17 +2044,17 @@ msgstr "Desgaitu feedback haptikoa"
msgid "Disable subtitles"
msgstr "Desgaitu azpitituluak"
-#: src/screens/Moderation/index.tsx:329 src/screens/Messages/Settings.tsx:139
-#: src/screens/Messages/Settings.tsx:142
#: src/lib/moderation/useLabelBehaviorDescription.ts:32
#: src/lib/moderation/useLabelBehaviorDescription.ts:42
#: src/lib/moderation/useLabelBehaviorDescription.ts:68
+#: src/screens/Messages/Settings.tsx:139 src/screens/Messages/Settings.tsx:142
+#: src/screens/Moderation/index.tsx:329
msgid "Disabled"
msgstr "Desgaituta"
-#: src/view/com/composer/Composer.tsx:674
-#: src/view/com/composer/Composer.tsx:853
#: src/screens/Profile/Header/EditProfileDialog.tsx:84
+#: src/view/com/composer/Composer.tsx:681
+#: src/view/com/composer/Composer.tsx:860
msgid "Discard"
msgstr "Baztertu"
@@ -2031,11 +2062,11 @@ msgstr "Baztertu"
msgid "Discard changes?"
msgstr "Aldaketak baztertu?"
-#: src/view/com/composer/Composer.tsx:671
+#: src/view/com/composer/Composer.tsx:678
msgid "Discard draft?"
msgstr "Zirriborroa baztertu?"
-#: src/view/com/composer/Composer.tsx:845
+#: src/view/com/composer/Composer.tsx:852
msgid "Discard post?"
msgstr "Posta baztertu?"
@@ -2049,11 +2080,11 @@ msgstr "Utzi aplikazioei saioa amaitutako erabiltzaileei nire kontua erakusten"
msgid "Discover new custom feeds"
msgstr "Aurkitu feed pertsonalizatu berriak"
-#: src/view/screens/Search/Explore.tsx:389
+#: src/view/screens/Search/Explore.tsx:409
msgid "Discover new feeds"
msgstr "Aurkitu feed berriak"
-#: src/view/screens/Feeds.tsx:723
+#: src/view/screens/Feeds.tsx:725
msgid "Discover New Feeds"
msgstr "Aurkitu Feed Berriak"
@@ -2061,11 +2092,11 @@ msgstr "Aurkitu Feed Berriak"
msgid "Dismiss"
msgstr "Baztertu"
-#: src/view/com/composer/Composer.tsx:1552
+#: src/view/com/composer/Composer.tsx:1559
msgid "Dismiss error"
msgstr "Baztertu errorea"
-#: src/components/ProgressGuide/List.tsx:39
+#: src/components/ProgressGuide/List.tsx:42
msgid "Dismiss getting started guide"
msgstr "Baztertu hasteko gida"
@@ -2093,8 +2124,8 @@ msgstr "Bistaratzeko izena luzeegia da"
msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}."
msgstr "Bistaratzeko izena luzeegia da. Gehienezko karaktere kopurua {DISPLAY_NAME_MAX_GRAPHEMES} da."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:372
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:374
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:377
msgid "DNS Panel"
msgstr "DNS Panela"
@@ -2110,35 +2141,35 @@ msgstr "Ez du biluztasunik."
msgid "Doesn't begin or end with a hyphen"
msgstr "Ez da marratxo batekin hasten edo amaitzen"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:487
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:490
msgid "Domain verified!"
msgstr "Domeinua egiaztatu da!"
-#: src/view/com/modals/UserAddRemoveLists.tsx:113
-#: src/view/com/modals/UserAddRemoveLists.tsx:116
-#: src/view/com/modals/ListAddRemoveUsers.tsx:145
-msgctxt "action"
+#: 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/screens/Settings/components/AddAppPasswordDialog.tsx:215
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:222
+#: 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:224
+#: src/view/com/composer/labels/LabelsBtn.tsx:231
+#: src/view/com/composer/videos/SubtitleDialog.tsx:169
+#: src/view/com/composer/videos/SubtitleDialog.tsx:179
+#: src/view/com/modals/CropImage.web.tsx:112
+#: src/view/com/modals/InviteCodes.tsx:81
+#: src/view/com/modals/InviteCodes.tsx:124
+#: src/view/com/modals/ListAddRemoveUsers.tsx:143
msgid "Done"
msgstr "Eginda"
-#: src/view/com/modals/ListAddRemoveUsers.tsx:143
-#: src/view/com/modals/InviteCodes.tsx:81
-#: src/view/com/modals/InviteCodes.tsx:124
-#: src/view/com/modals/CropImage.web.tsx:112
-#: src/view/com/composer/videos/SubtitleDialog.tsx:169
-#: src/view/com/composer/videos/SubtitleDialog.tsx:179
-#: src/view/com/composer/labels/LabelsBtn.tsx:224
-#: src/view/com/composer/labels/LabelsBtn.tsx:231
-#: src/view/com/auth/server-input/index.tsx:170
-#: src/view/com/auth/server-input/index.tsx:171
-#: src/screens/Settings/components/AddAppPasswordDialog.tsx:215
-#: src/screens/Settings/components/AddAppPasswordDialog.tsx:222
-#: src/screens/Onboarding/StepProfile/index.tsx:330
-#: src/screens/Onboarding/StepProfile/index.tsx:333
-#: src/components/forms/DateField/index.tsx:77
-#: src/components/forms/DateField/index.tsx:83
-#: src/components/dialogs/BirthDateSettings.tsx:118
-#: src/components/dialogs/BirthDateSettings.tsx:124
+#: 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 "Eginda"
@@ -2167,7 +2198,7 @@ msgstr "Jausi irudiak gehitzeko"
msgid "Duration:"
msgstr "Iraupena:"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:209
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:213
msgid "e.g. alice"
msgstr "adib. alice"
@@ -2179,7 +2210,7 @@ msgstr "adib. Alice Abizena"
msgid "e.g. Alice Roberts"
msgstr "adib. Alice Roberts"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:359
msgid "e.g. alice.com"
msgstr "adib. alice.com"
@@ -2211,19 +2242,19 @@ msgstr "adib. Iragarkiekin behin eta berriz erantzuten duten erabiltzaileak."
msgid "Each code works once. You'll receive more invite codes periodically."
msgstr "Kode bakoitzak behin funtzionatzen du. Aldian-aldian gonbidapen-kode gehiago jasoko dituzu."
-#: src/view/com/lists/ListMembers.tsx:146
+#: src/view/com/lists/ListMembers.tsx:142
msgctxt "action"
msgid "Edit"
msgstr "Editatu"
-#: src/screens/StarterPack/StarterPackScreen.tsx:574
+#: src/screens/StarterPack/StarterPackScreen.tsx:575
#: src/screens/StarterPack/Wizard/index.tsx:534
#: src/screens/StarterPack/Wizard/index.tsx:541
#: src/screens/Settings/AccountSettings.tsx:112
msgid "Edit"
msgstr "Editatu"
-#: src/view/com/util/UserBanner.tsx:95 src/view/com/util/UserAvatar.tsx:347
+#: src/view/com/util/UserAvatar.tsx:347 src/view/com/util/UserBanner.tsx:95
msgid "Edit avatar"
msgstr "Editatu abatarra"
@@ -2242,7 +2273,7 @@ msgstr "Editatu irudia"
msgid "Edit interaction settings"
msgstr "Editatu interakzio-ezarpenak"
-#: src/view/screens/ProfileList.tsx:517
+#: src/view/screens/ProfileList.tsx:514
msgid "Edit list details"
msgstr "Editatu zerrendaren xehetasunak"
@@ -2250,7 +2281,7 @@ msgstr "Editatu zerrendaren xehetasunak"
msgid "Edit Moderation List"
msgstr "Editatu Moderazio-Zerrenda"
-#: src/Navigation.tsx:295 src/view/screens/Feeds.tsx:513
+#: src/Navigation.tsx:296 src/view/screens/Feeds.tsx:515
msgid "Edit My Feeds"
msgstr "Editatu Nire Feedak"
@@ -2279,7 +2310,7 @@ msgstr "Editatu profila"
msgid "Edit Profile"
msgstr "Editatu Profila"
-#: src/screens/StarterPack/StarterPackScreen.tsx:566
+#: src/screens/StarterPack/StarterPackScreen.tsx:567
msgid "Edit starter pack"
msgstr "Editatu abio multzoa"
@@ -2299,14 +2330,18 @@ msgstr "Editatu zure bistaratzeko izena"
msgid "Edit your profile description"
msgstr "Editatu zure profileko deskribapena"
-#: src/Navigation.tsx:417
+#: src/Navigation.tsx:423
msgid "Edit your starter pack"
msgstr "Editatu zure abio multzoa"
-#: src/screens/Onboarding/state.ts:88 src/screens/Onboarding/index.tsx:31
+#: src/screens/Onboarding/index.tsx:31 src/screens/Onboarding/state.ts:101
msgid "Education"
msgstr "Hezkuntza"
+#: src/screens/List/ListHiddenScreen.tsx:141
+msgid "Either the creator of this list has blocked you or you have blocked the creator."
+msgstr "Edo zerrenda honen sortzaileak blokeatu zaitu edo zuk blokeatu duzu sortzailea."
+
#: src/view/com/modals/ChangeEmail.tsx:136
#: src/screens/Signup/StepInfo/index.tsx:170
#: src/screens/Settings/AccountSettings.tsx:60
@@ -2391,8 +2426,8 @@ msgstr "Gaitu kanpoko multimedia"
msgid "Enable media players for"
msgstr "Gaitu multimedia-erreproduzitzaileak"
-#: src/screens/Settings/NotificationSettings.tsx:68
-#: src/screens/Settings/NotificationSettings.tsx:71
+#: src/screens/Settings/NotificationSettings.tsx:74
+#: src/screens/Settings/NotificationSettings.tsx:77
msgid "Enable priority notifications"
msgstr "Gaitu lehentasunezko jakinarazpenak"
@@ -2404,8 +2439,13 @@ msgstr "Gaitu azpitituluak"
msgid "Enable this source only"
msgstr "Gaitu iturri hau soilik"
-#: src/screens/Moderation/index.tsx:327 src/screens/Messages/Settings.tsx:130
-#: src/screens/Messages/Settings.tsx:133
+#: src/screens/Settings/ContentAndMediaSettings.tsx:122
+#: src/screens/Settings/ContentAndMediaSettings.tsx:136
+msgid "Enable trending topics"
+msgstr "Gaitu joera-gaiak"
+
+#: src/screens/Messages/Settings.tsx:130 src/screens/Messages/Settings.tsx:133
+#: src/screens/Moderation/index.tsx:327
msgid "Enabled"
msgstr "Gaituta"
@@ -2442,7 +2482,7 @@ msgstr "Sartu pantaila osoan"
msgid "Enter the code you received to change your password."
msgstr "Sartu jaso duzun kodea pasahitza aldatzeko."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:350
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:353
msgid "Enter the domain you want to use"
msgstr "Sartu erabili nahi duzun domeinua"
@@ -2471,8 +2511,8 @@ msgstr "Sartu zure helbide elektroniko berria behean."
msgid "Enter your username and password"
msgstr "Sartu zure erabiltzaile-izena eta pasahitza"
-#: src/view/com/util/error/ErrorScreen.tsx:40
-#: src/view/com/composer/Composer.tsx:1637
+#: src/view/com/util/error/ErrorScreen.tsx:42
+#: src/view/com/composer/Composer.tsx:1644
msgid "Error"
msgstr "Errorea"
@@ -2486,6 +2526,7 @@ msgstr "Errore bat gertatu da captcha erantzuna jasotzean."
#: src/view/screens/Search/Search.tsx:103
#: src/screens/Onboarding/StepInterests/index.tsx:183
+#: src/view/screens/Search/Search.tsx:110
msgid "Error:"
msgstr "Errorea:"
@@ -2525,7 +2566,7 @@ msgstr "Jarraitzen dituzun erabiltzaileak baztertzen ditu"
msgid "Exit fullscreen"
msgstr "Irten pantaila osotik"
-#: src/view/com/modals/DeleteAccount.tsx:294
+#: src/view/com/modals/DeleteAccount.tsx:275
msgid "Exits account deletion process"
msgstr "Kontua ezabatzeko prozesutik irteten da"
@@ -2545,7 +2586,7 @@ msgstr "Bilaketa-kontsulta sartzetik irteten da"
msgid "Expand alt text"
msgstr "Zabaldu aukerazko testua"
-#: src/view/com/notifications/FeedItem.tsx:401
+#: src/view/com/notifications/NotificationFeedItem.tsx:402
msgid "Expand list of users"
msgstr "Zabaldu erabiltzaileen zerrenda"
@@ -2589,8 +2630,8 @@ msgstr "Esportatu nire datuak"
msgid "Export My Data"
msgstr "Esportatu Nire Datuak"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:72
-#: src/screens/Settings/ContentAndMediaSettings.tsx:75
+#: src/screens/Settings/ContentAndMediaSettings.tsx:82
+#: src/screens/Settings/ContentAndMediaSettings.tsx:85
msgid "External media"
msgstr "Kanpoko multimedia"
@@ -2604,11 +2645,11 @@ msgstr "Kanpoko Multimedia"
msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
msgstr "Kanpoko multimediak webguneek zuri eta zure gailuari buruzko informazioa biltzeko aukera izan dezake. Ez da informaziorik bidali edo eskatzen \"play\" botoia sakatu arte."
-#: src/Navigation.tsx:314 src/screens/Settings/ExternalMediaPreferences.tsx:31
+#: src/Navigation.tsx:315 src/screens/Settings/ExternalMediaPreferences.tsx:31
msgid "External Media Preferences"
msgstr "Kanpoko Multimedia Hobespenak"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:552
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:570
msgid "Failed to change handle. Please try again."
msgstr "Ezin izan da handle-a aldatu. Mesedez, saiatu berriro."
@@ -2633,12 +2674,12 @@ msgstr "Ezin izan da mezua ezabatu"
msgid "Failed to delete post, please try again"
msgstr "Ezin izan da posta ezabatu. Mesedez, saiatu berriro"
-#: src/screens/StarterPack/StarterPackScreen.tsx:698
+#: src/screens/StarterPack/StarterPackScreen.tsx:699
msgid "Failed to delete starter pack"
msgstr "Ezin izan da abio multzoa ezabatu"
-#: src/view/screens/Search/Explore.tsx:427
-#: src/view/screens/Search/Explore.tsx:455
+#: src/view/screens/Search/Explore.tsx:447
+#: src/view/screens/Search/Explore.tsx:475
msgid "Failed to load feeds preferences"
msgstr "Ezin izan dira kargatu feeden hobespenak"
@@ -2650,12 +2691,12 @@ msgstr "Ezin izan dira GIF-ak kargatu"
msgid "Failed to load past messages"
msgstr "Ezin izan dira kargatu iraganeko mezuak"
-#: src/view/screens/Search/Explore.tsx:420
-#: src/view/screens/Search/Explore.tsx:448
+#: src/view/screens/Search/Explore.tsx:440
+#: src/view/screens/Search/Explore.tsx:468
msgid "Failed to load suggested feeds"
msgstr "Ezin izan dira iradokitako feedak kargatu"
-#: src/view/screens/Search/Explore.tsx:378
+#: src/view/screens/Search/Explore.tsx:398
msgid "Failed to load suggested follows"
msgstr "Ezin izan dira kargatu iradokitako jarraipenak"
@@ -2685,7 +2726,7 @@ msgstr "Ezin izan da apelazioa bidali. Mesedez, saiatu berriro."
msgid "Failed to toggle thread mute, please try again"
msgstr "Ezin izan da mututu/ez mututu haria. Mesedez, saiatu berriro"
-#: src/components/FeedCard.tsx:276
+#: src/components/FeedCard.tsx:275
msgid "Failed to update feeds"
msgstr "Ezin izan dira feedak eguneratu"
@@ -2694,29 +2735,34 @@ msgid "Failed to update settings"
msgstr "Ezin izan dira ezarpenak eguneratu"
#: src/lib/media/video/upload.web.ts:74 src/lib/media/video/upload.web.ts:78
-#: src/lib/media/video/upload.web.ts:88 src/lib/media/video/upload.ts:72
+#: src/lib/media/video/upload.ts:72 src/lib/media/video/upload.web.ts:88
msgid "Failed to upload video"
msgstr "Ezin izan da bideoa kargatu"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:340
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:343
msgid "Failed to verify handle. Please try again."
msgstr "Ezin izan da handle-a egiaztatu. Mesedez, saiatu berriro."
-#: src/Navigation.tsx:230
+#: src/Navigation.tsx:231
msgid "Feed"
msgstr "Feeda"
#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@')
#. placeholder {0}: sanitizeHandle(creator.handle, '@')
-#: src/view/com/feeds/FeedSourceCard.tsx:253 src/components/FeedCard.tsx:134
+#: src/components/FeedCard.tsx:134 src/view/com/feeds/FeedSourceCard.tsx:253
msgid "Feed by {0}"
msgstr "{0}-ren feeda"
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:353
+msgid "Feed menu"
+msgstr "Feed menua"
+
#: src/components/StarterPack/Wizard/WizardListCard.tsx:54
msgid "Feed toggle"
msgstr "Feeda aktibatu/desaktibatu"
-#: src/view/shell/Drawer.tsx:319 src/view/shell/desktop/RightNav.tsx:69
+#: src/view/shell/desktop/RightNav.tsx:93
+#: src/view/shell/desktop/RightNav.tsx:94 src/view/shell/Drawer.tsx:319
msgid "Feedback"
msgstr "Feedback"
@@ -2725,11 +2771,10 @@ msgstr "Feedback"
msgid "Feedback sent!"
msgstr "Feedback-a bidalia!"
-#: src/Navigation.tsx:397 src/view/shell/Drawer.tsx:476
-#: src/view/shell/desktop/LeftNav.tsx:421 src/view/screens/SavedFeeds.tsx:96
-#: src/view/screens/Profile.tsx:230 src/view/screens/Feeds.tsx:506
-#: src/view/screens/Search/Search.tsx:520
-#: src/screens/StarterPack/StarterPackScreen.tsx:183
+#: src/Navigation.tsx:403 src/screens/StarterPack/StarterPackScreen.tsx:183
+#: src/view/screens/Feeds.tsx:508 src/view/screens/Profile.tsx:235
+#: src/view/screens/SavedFeeds.tsx:96 src/view/screens/Search/Search.tsx:525
+#: src/view/shell/desktop/LeftNav.tsx:445 src/view/shell/Drawer.tsx:476
msgid "Feeds"
msgstr "Feedak"
@@ -2737,10 +2782,14 @@ msgstr "Feedak"
msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information."
msgstr "Feedak erabiltzaileek kodetze esperientzia txiki batekin eraikitzen dituzten algoritmo pertsonalizatuak dira. <0/> informazio gehiago lortzeko."
-#: src/view/screens/SavedFeeds.tsx:82 src/components/FeedCard.tsx:273
+#: src/components/FeedCard.tsx:272 src/view/screens/SavedFeeds.tsx:82
msgid "Feeds updated!"
msgstr "Feedak eguneratuak!"
+#: src/screens/Search/components/ExploreRecommendations.tsx:54
+msgid "Feeds we think you might like."
+msgstr "Gogoko izan ditzakezun feedak"
+
#: src/screens/Settings/components/ExportCarDialog.tsx:43
msgid "File saved successfully!"
msgstr "Fitxategia ongi gorde da!"
@@ -2749,7 +2798,7 @@ msgstr "Fitxategia ongi gorde da!"
msgid "Filter from feeds"
msgstr "Feedetatik iragazi"
-#: src/screens/Onboarding/StepFinished.tsx:292
+#: src/screens/Onboarding/StepFinished.tsx:296
msgid "Finalizing"
msgstr "Amaitzen"
@@ -2757,9 +2806,15 @@ msgstr "Amaitzen"
#: src/view/com/posts/FollowingEmptyState.tsx:53
#: src/view/com/posts/CustomFeedEmptyState.tsx:48
msgid "Find accounts to follow"
-msgstr "Bilatu jarraitu beharreko kontuak"
+msgstr "Aurkitu jarraitu beharreko kontuak"
-#: src/view/screens/Search/Search.tsx:589
+#: src/components/ProgressGuide/FollowDialog.tsx:78
+#: src/components/ProgressGuide/FollowDialog.tsx:88
+#: src/components/ProgressGuide/FollowDialog.tsx:417
+msgid "Find people to follow"
+msgstr "Aurkitu jarraitzeko jendea"
+
+#: src/view/screens/Search/Search.tsx:595
msgid "Find posts and users on Bluesky"
msgstr "Aurkitu postak eta erabiltzaileak Bluesky-n"
@@ -2771,7 +2826,7 @@ msgstr "Amaitu"
msgid "Fitness"
msgstr "Fitness"
-#: src/screens/Onboarding/StepFinished.tsx:272
+#: src/screens/Onboarding/StepFinished.tsx:276
msgid "Flexible"
msgstr "Malgua"
@@ -2783,7 +2838,7 @@ msgstr "Jarraitu"
#. User is not following this account, click to follow
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:132
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234
-#: src/components/ProfileCard.tsx:358
+#: src/components/ProfileCard.tsx:363
#: src/components/ProfileHoverCard/index.web.tsx:449
#: src/components/ProfileHoverCard/index.web.tsx:460
msgid "Follow"
@@ -2799,7 +2854,12 @@ msgstr "Jarraitu {0}"
msgid "Follow {name}"
msgstr "Jarraitu {name}"
-#: src/components/ProgressGuide/List.tsx:53
+#: src/components/ProgressGuide/List.tsx:52
+#: src/state/shell/progress-guide.tsx:229
+msgid "Follow 10 accounts"
+msgstr "Jarraitu 10 kontu"
+
+#: src/components/ProgressGuide/List.tsx:69
msgid "Follow 7 accounts"
msgstr "Jarraitu 7 kontu"
@@ -2808,8 +2868,8 @@ msgstr "Jarraitu 7 kontu"
msgid "Follow Account"
msgstr "Jarraitu Kontua"
-#: src/screens/StarterPack/StarterPackScreen.tsx:427
-#: src/screens/StarterPack/StarterPackScreen.tsx:435
+#: src/screens/StarterPack/StarterPackScreen.tsx:428
+#: src/screens/StarterPack/StarterPackScreen.tsx:436
msgid "Follow all"
msgstr "Jarraitu denak"
@@ -2823,7 +2883,7 @@ msgstr "Jarraitu Bueltan"
msgid "Follow Back"
msgstr "Jarraitu Bueltan"
-#: src/view/screens/Search/Explore.tsx:334
+#: src/view/screens/Search/Explore.tsx:355
msgid "Follow more accounts to get connected to your interests and build your network."
msgstr "Jarraitu kontu gehiago zure interesetara konektatzeko eta zure sarea eraikitzeko."
@@ -2855,12 +2915,7 @@ msgstr "Jarraitua <0>{0}0>-gatik, <1>{1}1>-gatik eta {2, plural, one {#-gati
msgid "Followed users"
msgstr "Jarraitutako erabiltzaileak"
-#: src/view/screens/ProfileFollowers.tsx:29
-msgid "Followers"
-msgstr "Jarraitzaileak"
-
-#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:191
+#: src/Navigation.tsx:192
msgid "Followers of @{0} that you know"
msgstr "Ezagutzen dituzun @{0}-ren jarraitzaileak"
@@ -2870,20 +2925,19 @@ msgid "Followers you know"
msgstr "Ezagutzen dituzun jarraitzaileak"
#. User is following this account, click to unfollow
-#: src/view/screens/SavedFeeds.tsx:422 src/view/screens/ProfileFollows.tsx:29
-#: src/view/screens/Feeds.tsx:597
-#: src/view/com/post-thread/PostThreadFollowBtn.tsx:135
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230
-#: src/components/ProfileCard.tsx:352
+#: src/components/ProfileCard.tsx:357
#: src/components/ProfileHoverCard/index.web.tsx:448
#: src/components/ProfileHoverCard/index.web.tsx:459
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230
+#: src/view/com/post-thread/PostThreadFollowBtn.tsx:135
+#: src/view/screens/Feeds.tsx:599 src/view/screens/SavedFeeds.tsx:422
msgid "Following"
msgstr "Jarraitzen"
#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), )
#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), )
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
-#: src/components/ProfileCard.tsx:318
+#: src/components/ProfileCard.tsx:321
msgid "Following {0}"
msgstr "Jarraitzen {0}"
@@ -2891,12 +2945,12 @@ msgstr "Jarraitzen {0}"
msgid "Following {name}"
msgstr "Jarraitzen {name}"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:64
-#: src/screens/Settings/ContentAndMediaSettings.tsx:67
+#: src/screens/Settings/ContentAndMediaSettings.tsx:74
+#: src/screens/Settings/ContentAndMediaSettings.tsx:77
msgid "Following feed preferences"
msgstr "Jarraitzen dituzun feeden hobespenak"
-#: src/Navigation.tsx:301 src/screens/Settings/FollowingFeedPreferences.tsx:53
+#: src/Navigation.tsx:302 src/screens/Settings/FollowingFeedPreferences.tsx:53
msgid "Following Feed Preferences"
msgstr "Jarraitzen dituzun Feeden Hobespenak"
@@ -2908,19 +2962,19 @@ msgstr "Jarraitzen dizu"
msgid "Follows You"
msgstr "Jarraitzen Dizu"
-#: src/screens/Settings/AppearanceSettings.tsx:141
+#: src/screens/Settings/AppearanceSettings.tsx:140
msgid "Font"
msgstr "Letra-tipoa"
-#: src/screens/Settings/AppearanceSettings.tsx:161
+#: src/screens/Settings/AppearanceSettings.tsx:160
msgid "Font size"
msgstr "Letra-tipo tamaina"
-#: src/screens/Onboarding/state.ts:89 src/screens/Onboarding/index.tsx:40
+#: src/screens/Onboarding/index.tsx:40 src/screens/Onboarding/state.ts:102
msgid "Food"
msgstr "Elikagaia"
-#: src/view/com/modals/DeleteAccount.tsx:129
+#: src/view/com/modals/DeleteAccount.tsx:125
msgid "For security reasons, we'll need to send a confirmation code to your email address."
msgstr "Segurtasun arrazoiengatik, baieztapen kode bat bidali beharko dugu zure helbide elektronikora."
@@ -2928,7 +2982,7 @@ msgstr "Segurtasun arrazoiengatik, baieztapen kode bat bidali beharko dugu zure
msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one."
msgstr "Segurtasun arrazoiengatik, ezingo duzu hau berriro ikusi. Aplikazioaren pasahitza galtzen baduzu, berri bat sortu beharko duzu."
-#: src/screens/Settings/AppearanceSettings.tsx:143
+#: src/screens/Settings/AppearanceSettings.tsx:142
msgid "For the best experience, we recommend using the theme font."
msgstr "Esperientzia onena lortzeko, gaiaren letra-tipoa erabiltzea gomendatzen dizugu."
@@ -2940,11 +2994,11 @@ msgstr "Betirako"
msgid "Forgot Password"
msgstr "Pasahitza Ahaztua"
-#: src/screens/Login/LoginForm.tsx:230
+#: src/screens/Login/LoginForm.tsx:232
msgid "Forgot password?"
msgstr "Pasahitza ahaztu duzu?"
-#: src/screens/Login/LoginForm.tsx:241
+#: src/screens/Login/LoginForm.tsx:243
msgid "Forgot?"
msgstr "Ahaztuta?"
@@ -2952,11 +3006,11 @@ msgstr "Ahaztuta?"
msgid "Frequently Posts Unwanted Content"
msgstr "Nahi ez den edukia maiz argitaratzen du"
-#: src/screens/Hashtag.tsx:118
+#: src/screens/Hashtag.tsx:120
msgid "From @{sanitizedAuthor}"
msgstr "@{sanitizedAuthor}-tik"
-#: src/view/com/posts/FeedItem.tsx:282
+#: src/view/com/posts/PostFeedItem.tsx:282
msgctxt "from-feed"
msgid "From <0/>"
msgstr "<0/>-tik"
@@ -2978,7 +3032,7 @@ msgstr "Laguntza"
msgid "Get Started"
msgstr "Hasi"
-#: src/components/ProgressGuide/List.tsx:32
+#: src/components/ProgressGuide/List.tsx:35
msgid "Getting started"
msgstr "Hasten"
@@ -2994,31 +3048,32 @@ msgstr "Eman aurpegia zure profilari"
msgid "Glaring violations of law or terms of service"
msgstr "Legearen edo zerbitzu-baldintzen urraketa nabarmenak"
-#: src/view/screens/ProfileList.tsx:1027 src/view/screens/ProfileFeed.tsx:112
-#: src/view/screens/NotFound.tsx:57 src/view/com/auth/LoggedOut.tsx:72
+#: src/components/Layout/Header/index.tsx:118
#: src/components/moderation/ScreenHider.tsx:154
#: src/components/moderation/ScreenHider.tsx:163
-#: src/components/Layout/Header/index.tsx:121
+#: src/screens/Profile/ProfileFeed/index.tsx:82
+#: src/view/com/auth/LoggedOut.tsx:72 src/view/screens/NotFound.tsx:57
+#: src/view/screens/ProfileList.tsx:1009
msgid "Go back"
msgstr "Itzuli"
-#: src/view/screens/ProfileList.tsx:1032 src/view/screens/ProfileFeed.tsx:117
-#: src/view/screens/NotFound.tsx:56
-#: src/screens/StarterPack/StarterPackScreen.tsx:757
+#: src/components/Error.tsx:78 src/screens/List/ListHiddenScreen.tsx:221
#: src/screens/Profile/ErrorState.tsx:62 src/screens/Profile/ErrorState.tsx:66
-#: src/screens/List/ListHiddenScreen.tsx:210 src/components/Error.tsx:78
+#: src/screens/Profile/ProfileFeed/index.tsx:87
+#: src/screens/StarterPack/StarterPackScreen.tsx:758
+#: src/view/screens/NotFound.tsx:56 src/view/screens/ProfileList.tsx:1014
msgid "Go Back"
msgstr "Itzuli"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:542
msgid "Go back to previous page"
msgstr "Itzuli aurreko orrialdera"
-#: src/screens/Signup/BackNextButtons.tsx:35
-#: src/screens/Onboarding/Layout.tsx:102 src/screens/Onboarding/Layout.tsx:191
#: src/components/dms/ReportDialog.tsx:149
-#: src/components/ReportDialog/SubmitView.tsx:109
#: src/components/ReportDialog/SelectReportOptionView.tsx:80
+#: src/components/ReportDialog/SubmitView.tsx:109
+#: src/screens/Onboarding/Layout.tsx:101 src/screens/Onboarding/Layout.tsx:190
+#: src/screens/Signup/BackNextButtons.tsx:35
msgid "Go back to previous step"
msgstr "Itzuli aurreko urratsera"
@@ -3058,7 +3113,8 @@ msgstr "Joan erabiltzailearen profilera"
msgid "Graphic Media"
msgstr "Multimedia Grafikoa"
-#: src/state/shell/progress-guide.tsx:161
+#: src/state/shell/progress-guide.tsx:218
+#: src/state/shell/progress-guide.tsx:228
msgid "Half way there!"
msgstr "Bide erdia!"
@@ -3067,16 +3123,16 @@ msgstr "Bide erdia!"
msgid "Handle"
msgstr "Handle"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:556
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:574
msgid "Handle already taken. Please try a different one."
msgstr "Handle-a dagoeneko hartua. Mesedez, saiatu beste bat."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:187
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:324
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:191
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:327
msgid "Handle changed!"
msgstr "Handle aldatua!"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:560
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:578
msgid "Handle too long. Please try a shorter one."
msgstr "Handle luzeegia. Mesedez, saiatu laburrago batekin."
@@ -3088,7 +3144,7 @@ msgstr "Haptikoak"
msgid "Harassment, trolling, or intolerance"
msgstr "Jazarpena, troleoa edo intolerantzia"
-#: src/Navigation.tsx:377
+#: src/Navigation.tsx:378
msgid "Hashtag"
msgstr "Hashtag"
@@ -3100,8 +3156,9 @@ msgstr "Hashtag: #{tag}"
msgid "Having trouble?"
msgstr "Arazoak dituzu?"
-#: src/view/shell/Drawer.tsx:332 src/view/shell/desktop/RightNav.tsx:98
#: src/screens/Settings/Settings.tsx:207 src/screens/Settings/Settings.tsx:211
+#: src/view/shell/desktop/RightNav.tsx:111
+#: src/view/shell/desktop/RightNav.tsx:112 src/view/shell/Drawer.tsx:332
msgid "Help"
msgstr "Laguntza"
@@ -3118,17 +3175,20 @@ msgid "Hidden list"
msgstr "Ezkutuko zerrenda"
#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:672
+#: src/components/interstitials/Trending.tsx:101
+#: src/components/moderation/ContentHider.tsx:200
+#: src/components/moderation/LabelPreference.tsx:135
+#: 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/components/moderation/PostHider.tsx:122
-#: src/components/moderation/LabelPreference.tsx:135
-#: src/components/moderation/ContentHider.tsx:200
+#: src/screens/Search/components/ExploreTrendingTopics.tsx:137
+#: src/view/shell/desktop/SidebarTrendingTopics.tsx:110
msgid "Hide"
msgstr "Ezkutatu"
-#: src/view/com/notifications/FeedItem.tsx:600
+#: src/view/com/notifications/NotificationFeedItem.tsx:601
msgctxt "action"
msgid "Hide"
msgstr "Ezkutatu"
@@ -3162,27 +3222,39 @@ msgstr "Ezkutatu post hau?"
msgid "Hide this reply?"
msgstr "Ezkutatu erantzun hau?"
-#: src/view/com/notifications/FeedItem.tsx:591
+#: src/components/interstitials/Trending.tsx:84
+#: src/screens/Search/components/ExploreTrendingTopics.tsx:83
+#: src/view/shell/desktop/SidebarTrendingTopics.tsx:62
+msgid "Hide trending topics"
+msgstr "Ezkutatu joera-gaiak"
+
+#: src/components/interstitials/Trending.tsx:99
+#: src/screens/Search/components/ExploreTrendingTopics.tsx:135
+#: src/view/shell/desktop/SidebarTrendingTopics.tsx:108
+msgid "Hide trending topics?"
+msgstr "Joera-gaiak ezkutatu?"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:592
msgid "Hide user list"
msgstr "Ezkutatu erabiltzaile zerrenda"
-#: src/view/com/posts/FeedErrorMessage.tsx:117
+#: src/view/com/posts/PostFeedErrorMessage.tsx:117
msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue."
msgstr "Mmm, arazoren bat gertatu da feed zerbitzariarekin harremanetan jartzean. Mesedez, jakinarazi feedaren jabeari arazo honen berri."
-#: src/view/com/posts/FeedErrorMessage.tsx:105
+#: src/view/com/posts/PostFeedErrorMessage.tsx:105
msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue."
msgstr "Mmm, feed zerbitzaria gaizki konfiguratuta dagoela dirudi. Mesedez, jakinarazi feedaren jabeari arazo honen berri."
-#: src/view/com/posts/FeedErrorMessage.tsx:111
+#: src/view/com/posts/PostFeedErrorMessage.tsx:111
msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue."
msgstr "Mmm, feed zerbitzaria konexiorik gabe dagoela dirudi. Mesedez, jakinarazi feedaren jabeari arazo honen berri."
-#: src/view/com/posts/FeedErrorMessage.tsx:108
+#: src/view/com/posts/PostFeedErrorMessage.tsx:108
msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue."
msgstr "Mmm, feed zerbitzariak erantzun txarra eman du. Mesedez, jakinarazi feedaren jabeari arazo honen berri."
-#: src/view/com/posts/FeedErrorMessage.tsx:102
+#: src/view/com/posts/PostFeedErrorMessage.tsx:102
msgid "Hmm, we're having trouble finding this feed. It may have been deleted."
msgstr "Mmm, arazoak ditugu feed hau aurkitzeko. Baliteke ezabatu izana."
@@ -3198,24 +3270,26 @@ msgstr "Mmmmm, ezin izan dugu kargatu moderazio-zerbitzu hori."
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "Eutsi! Pixkanaka bideorako sarbidea ematen ari gara, eta ilaran zain zaude oraindik. Begiratu berriro laster!"
-#: src/Navigation.tsx:588 src/Navigation.tsx:608 src/view/shell/Drawer.tsx:391
-#: src/view/shell/desktop/LeftNav.tsx:365
-#: src/view/shell/bottom-bar/BottomBar.tsx:158
+#: src/Navigation.tsx:594 src/Navigation.tsx:614
+#: src/view/shell/bottom-bar/BottomBar.tsx:163
+#: src/view/shell/desktop/LeftNav.tsx:389 src/view/shell/Drawer.tsx:391
msgid "Home"
msgstr "Hasiera"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:397
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:400
msgid "Host:"
msgstr "Hostalaria:"
#: src/screens/Signup/StepInfo/index.tsx:133
-#: src/screens/Login/LoginForm.tsx:166
+#: src/screens/Login/LoginForm.tsx:168
#: src/screens/Login/ForgotPasswordForm.tsx:83
msgid "Hosting provider"
msgstr "Hosting hornitzailea"
#: src/screens/Settings/ThreadPreferences.tsx:67
#: src/screens/Settings/ThreadPreferences.tsx:70
+#: src/view/com/post-thread/PostThread.tsx:652
+#: src/view/com/post-thread/PostThread.tsx:657
msgid "Hot replies first"
msgstr "Erantzun berrienak lehenik"
@@ -3238,8 +3312,8 @@ msgstr "Kode bat daukat"
msgid "I have a confirmation code"
msgstr "Baieztapen kode bat daukat"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:260
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:266
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:263
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:269
msgid "I have my own domain"
msgstr "Nire domeinua daukat"
@@ -3260,9 +3334,9 @@ msgstr "Zure herrialdeko legeen arabera oraindik heldua ez bazara, zure gurasoek
msgid "If you delete this list, you won't be able to recover it."
msgstr "Zerrenda hau ezabatzen baduzu, ezin izango duzu berreskuratu."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:246
-msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity – <0>learn more0>."
-msgstr "Zure domeinua baduzu, hori erabil dezakezu handle gisa. Horri esker, zure identitatea auto-egiazta dezakezu - <0>lortu informazio gehiago0> ."
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:250
+msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
+msgstr "Zure domeinua baduzu, hori erabil dezakezu handle gisa. Honek zure nortasuna egiaztatzeko aukera ematen dizu. <0>Lortu informazio gehiago hemen.0>"
#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:658
msgid "If you remove this post, you won't be able to recover it."
@@ -3304,7 +3378,7 @@ msgstr "Mezu desegokiak edo esteka esplizituak"
msgid "Input code sent to your email for password reset"
msgstr "Sartu zure posta elektronikora bidalitako kodea pasahitza berrezartzeko"
-#: src/view/com/modals/DeleteAccount.tsx:247
+#: src/view/com/modals/DeleteAccount.tsx:228
msgid "Input confirmation code for account deletion"
msgstr "Sartu baieztapen kodea kontua ezabatzeko"
@@ -3312,36 +3386,32 @@ msgstr "Sartu baieztapen kodea kontua ezabatzeko"
msgid "Input new password"
msgstr "Idatzi pasahitz berria"
-#: src/view/com/modals/DeleteAccount.tsx:266
+#: src/view/com/modals/DeleteAccount.tsx:247
msgid "Input password for account deletion"
msgstr "Sartu pasahitza kontua ezabatzeko"
-#: src/screens/Login/LoginForm.tsx:270
+#: src/screens/Login/LoginForm.tsx:273
msgid "Input the code which has been emailed to you"
msgstr "Sartu posta elektronikoz bidali zaizun kodea"
-#: src/screens/Login/LoginForm.tsx:200
+#: src/screens/Login/LoginForm.tsx:202
msgid "Input the username or email address you used at signup"
msgstr "Sartu erregistratzean erabili zenuen erabiltzaile-izena edo helbide elektronikoa"
-#: src/screens/Login/LoginForm.tsx:225
+#: src/screens/Login/LoginForm.tsx:227
msgid "Input your password"
msgstr "Sartu zure pasahitza"
-#: src/screens/Signup/StepHandle.tsx:114
-msgid "Input your user handle"
-msgstr "Sartu zure erabiltzaile handle-a"
-
#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49
msgid "Interaction limited"
msgstr "Elkarrekintza mugatua"
+#: src/screens/Login/LoginForm.tsx:144
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:70
-#: src/screens/Login/LoginForm.tsx:142
msgid "Invalid 2FA confirmation code."
msgstr "2FA baieztapen kode baliogabea."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:562
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:580
msgid "Invalid handle. Please try a different one."
msgstr "Handle baliogabea. Mesedez, saiatu beste bat."
@@ -3349,8 +3419,8 @@ msgstr "Handle baliogabea. Mesedez, saiatu beste bat."
msgid "Invalid or unsupported post record"
msgstr "Post erregistro baliogabea edo onartzen ez duena"
-#: src/screens/Login/LoginForm.tsx:88 src/screens/Login/LoginForm.tsx:147
-msgid "Invalid username or password"
+#: src/screens/Login/LoginForm.tsx:90 src/screens/Login/LoginForm.tsx:149
+msgid "Incorrect username or password"
msgstr "Erabiltzaile-izen edo pasahitz baliogabea"
#: src/components/intents/VerifyEmailIntentDialog.tsx:91
@@ -3403,7 +3473,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin
msgstr "Oraintxe bakarrik zaude! Gehitu jende gehiago zure abio multzoari goiko bilaketan."
#. placeholder {0}: videoState.jobId
-#: src/view/com/composer/Composer.tsx:1571
+#: src/view/com/composer/Composer.tsx:1578
msgid "Job ID: {0}"
msgstr "Lan ID: {0}"
@@ -3415,14 +3485,16 @@ msgstr "Lanak"
#: src/screens/StarterPack/StarterPackScreen.tsx:466
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207
+#: src/screens/StarterPack/StarterPackScreen.tsx:456
+#: src/screens/StarterPack/StarterPackScreen.tsx:467
msgid "Join Bluesky"
msgstr "Sartu Bluesky"
-#: src/view/shell/NavSignupCard.tsx:40 src/components/StarterPack/QrCode.tsx:61
+#: src/components/StarterPack/QrCode.tsx:62 src/view/shell/NavSignupCard.tsx:40
msgid "Join the conversation"
msgstr "Bat egin elkarrizketan"
-#: src/screens/Onboarding/state.ts:91 src/screens/Onboarding/index.tsx:21
+#: src/screens/Onboarding/index.tsx:21 src/screens/Onboarding/state.ts:104
msgid "Journalism"
msgstr "Kazetaritza"
@@ -3460,7 +3532,7 @@ msgstr "Etiketak zure edukian"
msgid "Language selection"
msgstr "Hizkuntza hautatzea"
-#: src/Navigation.tsx:164
+#: src/Navigation.tsx:165
msgid "Language Settings"
msgstr "Hizkuntza Ezarpenak"
@@ -3469,15 +3541,16 @@ msgstr "Hizkuntza Ezarpenak"
msgid "Languages"
msgstr "Hizkuntzak"
-#: src/screens/Settings/AppearanceSettings.tsx:173
+#: src/screens/Settings/AppearanceSettings.tsx:172
msgid "Larger"
msgstr "Handiagoa"
-#: src/view/screens/Search/Search.tsx:504 src/screens/Hashtag.tsx:97
+#: src/screens/Hashtag.tsx:95 src/screens/Topic.tsx:77
+#: src/view/screens/Search/Search.tsx:509
msgid "Latest"
msgstr "Azkena"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:250
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:254
msgid "learn more"
msgstr "gehiago ikasi"
@@ -3522,9 +3595,9 @@ msgstr "Utzi"
msgid "Leave chat"
msgstr "Utzi txata"
-#: src/components/dms/LeaveConvoPrompt.tsx:45
#: 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:45
msgid "Leave conversation"
msgstr "Utzi elkarrizketa"
@@ -3548,40 +3621,64 @@ msgstr "Utzidazu aukeratzen"
msgid "Let's get your password reset!"
msgstr "Lor dezagun pasahitza berrezartzea!"
-#: src/screens/Onboarding/StepFinished.tsx:292
+#: src/screens/Onboarding/StepFinished.tsx:296
msgid "Let's go!"
msgstr "Goazen!"
-#: src/screens/Settings/AppearanceSettings.tsx:102
+#: src/screens/Settings/AppearanceSettings.tsx:101
msgid "Light"
msgstr "Argia"
-#: src/components/ProgressGuide/List.tsx:47
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+msgid "Like"
+msgstr "Gogoko"
+
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:311
+msgid "Like ({0, plural, one {# like} other {# likes}})"
+msgstr "Gogoko ({0, plural, one {gogoko #} other {# gogoko}})"
+
+#: src/components/ProgressGuide/List.tsx:63
msgid "Like 10 posts"
msgstr "10 post gogoko egin"
-#: src/state/shell/progress-guide.tsx:157
-#: src/state/shell/progress-guide.tsx:162
+#: src/state/shell/progress-guide.tsx:214
+#: src/state/shell/progress-guide.tsx:219
msgid "Like 10 posts to train the Discover feed"
msgstr "Aurkitu feeda trebatzeko 10 post gogoko egin"
#: src/view/screens/ProfileFeed.tsx:575
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:501
+msgid "Like feed"
+msgstr "Gogoko feeda"
+
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:275
msgid "Like this feed"
msgstr "Feed hau gogoko dut"
#: src/Navigation.tsx:235 src/Navigation.tsx:240
-#: src/components/LikesDialog.tsx:85
+#: src/components/LikesDialog.tsx:85 src/Navigation.tsx:236
+#: src/Navigation.tsx:241
msgid "Liked by"
msgstr "Gogoko du"
#: src/view/screens/ProfileFeedLikedBy.tsx:30
#: src/screens/Profile/ProfileLabelerLikedBy.tsx:29
-#: src/screens/Post/PostLikedBy.tsx:28
+#: src/screens/Post/PostLikedBy.tsx:38
msgid "Liked By"
msgstr "Gogoko Du"
-#: src/view/screens/Profile.tsx:229
+#: src/components/FeedCard.tsx:213 src/view/com/feeds/FeedSourceCard.tsx:303
+msgid "Liked by {0, plural, one {# user} other {# users}}"
+msgstr "Gogoko du {0, plural, one {# erabiltzaileak} other {# erabiltzaileek}}"
+
+#: src/components/LabelingServiceCard/index.tsx:96
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:489
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:309
+msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
+msgstr "Gogoko du {likeCount, plural, one {# erabiltzaileak} other {# erabiltzaileek}}"
+
+#: src/view/screens/Profile.tsx:234
msgid "Likes"
msgstr "Gogoko"
@@ -3589,7 +3686,12 @@ msgstr "Gogoko"
msgid "Likes on this post"
msgstr "Gogoko post honetan"
-#: src/Navigation.tsx:197
+#: src/view/com/post-thread/PostThread.tsx:626
+#: src/view/com/post-thread/PostThread.tsx:631
+msgid "Linear"
+msgstr "Lineala"
+
+#: src/Navigation.tsx:198
msgid "List"
msgstr "Zerrenda"
@@ -3597,29 +3699,37 @@ msgstr "Zerrenda"
msgid "List Avatar"
msgstr "Zerrenda Abatarra"
-#: src/view/screens/ProfileList.tsx:421
+#: src/view/screens/ProfileList.tsx:418
msgid "List blocked"
msgstr "Zerrenda blokeatua"
#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@')
#. placeholder {0}: sanitizeHandle(creator.handle, '@')
-#: src/view/com/feeds/FeedSourceCard.tsx:255 src/components/ListCard.tsx:150
+#: src/components/ListCard.tsx:150 src/view/com/feeds/FeedSourceCard.tsx:255
msgid "List by {0}"
msgstr "{0}-ren Zerrenda"
-#: src/view/screens/ProfileList.tsx:458
+#: src/view/com/profile/ProfileSubpageHeader.tsx:156
+msgid "List by <0/>"
+msgstr "<0/>-ren zerrenda"
+
+#: src/view/com/profile/ProfileSubpageHeader.tsx:154
+msgid "List by you"
+msgstr "Zure zerrenda"
+
+#: src/view/screens/ProfileList.tsx:455
msgid "List deleted"
msgstr "Zerrenda ezabatua"
-#: src/screens/List/ListHiddenScreen.tsx:126
+#: src/screens/List/ListHiddenScreen.tsx:129
msgid "List has been hidden"
msgstr "Zerrenda ezkutatu egin da"
-#: src/view/screens/ProfileList.tsx:169
+#: src/view/screens/ProfileList.tsx:170
msgid "List Hidden"
msgstr "Zerrenda Ezkutua"
-#: src/view/screens/ProfileList.tsx:395
+#: src/view/screens/ProfileList.tsx:392
msgid "List muted"
msgstr "Zerrenda mututua"
@@ -3627,17 +3737,17 @@ msgstr "Zerrenda mututua"
msgid "List Name"
msgstr "Zerrenda Izena"
-#: src/view/screens/ProfileList.tsx:434
+#: src/view/screens/ProfileList.tsx:431
msgid "List unblocked"
msgstr "Zerrenda desblokeatua"
-#: src/view/screens/ProfileList.tsx:408
+#: src/view/screens/ProfileList.tsx:405
msgid "List unmuted"
msgstr "Zerrenda mututu gabe"
-#: src/Navigation.tsx:134 src/view/shell/Drawer.tsx:491
-#: src/view/shell/desktop/LeftNav.tsx:439 src/view/screens/Profile.tsx:225
-#: src/view/screens/Profile.tsx:232 src/view/screens/Lists.tsx:62
+#: src/Navigation.tsx:135 src/view/screens/Lists.tsx:62
+#: src/view/screens/Profile.tsx:230 src/view/screens/Profile.tsx:237
+#: src/view/shell/desktop/LeftNav.tsx:463 src/view/shell/Drawer.tsx:491
msgid "Lists"
msgstr "Zerrendak"
@@ -3645,24 +3755,25 @@ msgstr "Zerrendak"
msgid "Lists blocking this user:"
msgstr "Erabiltzaile hau blokeatzen duten zerrendak:"
-#: src/view/screens/Search/Explore.tsx:131
+#: src/view/screens/Search/Explore.tsx:133
msgid "Load more"
msgstr "Kargatu gehiago"
-#: src/view/screens/Search/Explore.tsx:219
+#: src/view/screens/Search/Explore.tsx:221
msgid "Load more suggested feeds"
msgstr "Kargatu iradokitako feed gehiago"
-#: src/view/screens/Search/Explore.tsx:217
+#: src/view/screens/Search/Explore.tsx:219
msgid "Load more suggested follows"
msgstr "Kargatu iradokitako jarraipen gehiago"
-#: src/view/screens/Notifications.tsx:168
+#: src/view/screens/Notifications.tsx:270
msgid "Load new notifications"
msgstr "Kargatu jakinarazpen berriak"
-#: src/view/screens/ProfileList.tsx:807 src/view/screens/ProfileFeed.tsx:498
-#: src/view/com/feeds/FeedPage.tsx:134 src/screens/Profile/Sections/Feed.tsx:96
+#: src/screens/Profile/ProfileFeed/index.tsx:192
+#: src/screens/Profile/Sections/Feed.tsx:96 src/view/com/feeds/FeedPage.tsx:143
+#: src/view/screens/ProfileList.tsx:849
msgid "Load new posts"
msgstr "Kargatu post berriak"
@@ -3670,7 +3781,7 @@ msgstr "Kargatu post berriak"
msgid "Loading..."
msgstr "Kargatzen..."
-#: src/Navigation.tsx:260
+#: src/Navigation.tsx:261
msgid "Log"
msgstr "Erregistroa"
@@ -3691,11 +3802,11 @@ msgstr "Saioa amaitutako ikusgarritasuna"
msgid "Login to account that is not listed"
msgstr "Hasi saioa zerrendan ez dagoen kontuan"
-#: src/view/shell/desktop/RightNav.tsx:103
-msgid "Logo by <0/>"
-msgstr "<0/>-ren logotipoa"
+#: src/view/shell/desktop/RightNav.tsx:121
+msgid "Logo by @sawaratsuki.bsky.social"
+msgstr "@sawaratsuki.bsky.social-ren logotipoa"
-#: src/view/shell/Drawer.tsx:629
+#: src/view/shell/desktop/RightNav.tsx:118 src/view/shell/Drawer.tsx:629
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "<0>@sawaratsuki.bsky.social0>-ren logotipoa"
@@ -3727,8 +3838,8 @@ msgstr "Egin bat niretzat"
msgid "Make sure this is where you intend to go!"
msgstr "Ziurtatu hori dela joan nahi duzun tokia!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:48
-#: src/screens/Settings/ContentAndMediaSettings.tsx:51
+#: src/screens/Settings/ContentAndMediaSettings.tsx:58
+#: src/screens/Settings/ContentAndMediaSettings.tsx:61
msgid "Manage saved feeds"
msgstr "Kudeatu gordetako feedak"
@@ -3740,7 +3851,7 @@ msgstr "Kudeatu mutututa dauden hitzak eta etiketak"
msgid "Mark as read"
msgstr "Markatu irakurri gisa"
-#: src/view/screens/Profile.tsx:228
+#: src/view/screens/Profile.tsx:233
msgid "Media"
msgstr "Multimedia"
@@ -3756,7 +3867,11 @@ msgstr "aipatutako erabiltzaileak"
msgid "Mentioned users"
msgstr "Aipatutako erabiltzaileak"
-#: src/view/screens/Search/Search.tsx:857 src/components/Menu/index.tsx:95
+#: src/view/screens/Notifications.tsx:99
+msgid "Mentions"
+msgstr "Aipamenak"
+
+#: src/components/Menu/index.tsx:96 src/view/screens/Search/Search.tsx:863
msgid "Menu"
msgstr "Menua"
@@ -3771,7 +3886,7 @@ msgid "Message deleted"
msgstr "Mezua ezabatuta"
#. placeholder {0}: rawError.message
-#: src/view/com/posts/FeedErrorMessage.tsx:201
+#: src/view/com/posts/PostFeedErrorMessage.tsx:201
msgid "Message from server: {0}"
msgstr "Zerbitzariaren mezua: {0}"
@@ -3779,13 +3894,13 @@ msgstr "Zerbitzariaren mezua: {0}"
msgid "Message input field"
msgstr "Mezua sartzeko eremua"
-#: src/screens/Messages/components/MessageInput.web.tsx:59
+#: src/screens/Messages/components/MessageInput.web.tsx:60
#: src/screens/Messages/components/MessageInput.tsx:78
msgid "Message is too long"
msgstr "Mezua luzeegia da"
-#: src/Navigation.tsx:603 src/screens/Messages/ChatList.tsx:260
-#: src/screens/Messages/ChatList.tsx:284
+#: src/Navigation.tsx:609 src/screens/Messages/ChatList.tsx:262
+#: src/screens/Messages/ChatList.tsx:286
msgid "Messages"
msgstr "Mezuak"
@@ -3797,8 +3912,8 @@ msgstr "Kontu Engainagarria"
msgid "Misleading Post"
msgstr "Post engainagarria"
-#: src/Navigation.tsx:139 src/screens/Settings/Settings.tsx:167
-#: src/screens/Settings/Settings.tsx:170 src/screens/Moderation/index.tsx:88
+#: src/Navigation.tsx:140 src/screens/Moderation/index.tsx:88
+#: src/screens/Settings/Settings.tsx:167 src/screens/Settings/Settings.tsx:170
msgid "Moderation"
msgstr "Moderazioa"
@@ -3813,12 +3928,12 @@ msgstr "Moderazio xehetasunak"
msgid "Moderation list by {0}"
msgstr "{0}-ren moderazio zerrenda"
-#: src/view/screens/ProfileList.tsx:901
+#: src/view/com/profile/ProfileSubpageHeader.tsx:169
msgid "Moderation list by <0/>"
msgstr "<0/>-ren moderazio zerrenda"
-#: src/view/screens/ProfileList.tsx:899
#: src/view/com/modals/UserAddRemoveLists.tsx:220
+#: src/view/com/profile/ProfileSubpageHeader.tsx:167
msgid "Moderation list by you"
msgstr "Zure moderazio zerrenda"
@@ -3834,7 +3949,7 @@ msgstr "Moderazio zerrenda eguneratua"
msgid "Moderation lists"
msgstr "Moderazio zerrendak"
-#: src/Navigation.tsx:144 src/view/screens/ModerationModlists.tsx:62
+#: src/Navigation.tsx:145 src/view/screens/ModerationModlists.tsx:62
msgid "Moderation Lists"
msgstr "Moderazio Zerrendak"
@@ -3842,7 +3957,7 @@ msgstr "Moderazio Zerrendak"
msgid "moderation settings"
msgstr "moderazio ezarpenak"
-#: src/Navigation.tsx:250
+#: src/Navigation.tsx:251
msgid "Moderation states"
msgstr "Moderazio-egoerak"
@@ -3855,16 +3970,17 @@ msgstr "Moderazio tresnak"
msgid "Moderator has chosen to set a general warning on the content."
msgstr "Moderatzaileak edukiari buruzko abisu orokor bat ezartzea aukeratu du."
-#: src/view/com/post-thread/PostThreadItem.tsx:633
+#: src/view/com/post-thread/PostThreadItem.tsx:632
msgid "More"
msgstr "Gehiago"
-#: src/view/shell/desktop/Feeds.tsx:54
+#: src/view/shell/desktop/Feeds.tsx:102 src/view/shell/desktop/Feeds.tsx:105
msgid "More feeds"
msgstr "Feed gehiago"
#: src/view/screens/ProfileList.tsx:711
#: src/view/com/profile/ProfileMenu.tsx:179
+#: src/view/screens/ProfileList.tsx:721
msgid "More options"
msgstr "Aukera gehiago"
@@ -3873,14 +3989,16 @@ msgid "Most-liked first"
msgstr "Gogokoenak lehenengo"
#: src/screens/Settings/ThreadPreferences.tsx:91
+#: src/view/com/post-thread/PostThread.tsx:682
+#: src/view/com/post-thread/PostThread.tsx:687
msgid "Most-liked replies first"
msgstr "Erantzun gogokoenak lehenengo"
-#: src/screens/Onboarding/state.ts:92
+#: src/screens/Onboarding/state.ts:105
msgid "Movies"
msgstr "Pelikulak"
-#: src/screens/Onboarding/state.ts:93
+#: src/screens/Onboarding/state.ts:106
msgid "Music"
msgstr "Musika"
@@ -3903,7 +4021,7 @@ msgstr "Mututu {truncatedTag}"
msgid "Mute Account"
msgstr "Mututu Kontua"
-#: src/view/screens/ProfileList.tsx:630
+#: src/view/screens/ProfileList.tsx:627
msgid "Mute accounts"
msgstr "Mututu kontuak"
@@ -3919,11 +4037,11 @@ msgstr "Mututu elkarrizketa"
msgid "Mute in:"
msgstr "Mututu:"
-#: src/view/screens/ProfileList.tsx:736
+#: src/view/screens/ProfileList.tsx:750
msgid "Mute list"
msgstr "Mututu zerrenda"
-#: src/view/screens/ProfileList.tsx:731
+#: src/view/screens/ProfileList.tsx:745
msgid "Mute these accounts?"
msgstr "Kontu hauek mututu?"
@@ -3965,11 +4083,11 @@ msgstr "Mututu hitzak eta etiketak"
msgid "Muted accounts"
msgstr "Mutututako kontuak"
-#: src/Navigation.tsx:149 src/view/screens/ModerationMutedAccounts.tsx:99
+#: src/Navigation.tsx:150 src/view/screens/ModerationMutedAccounts.tsx:100
msgid "Muted Accounts"
msgstr "Mutututako Kontuak"
-#: src/view/screens/ModerationMutedAccounts.tsx:111
+#: src/view/screens/ModerationMutedAccounts.tsx:112
msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private."
msgstr "Mutututako kontuei postak kendu zaizkie zure feedetatik eta jakinarazpenetatik. Mutututakoak guztiz pribatuak dira."
@@ -3982,7 +4100,7 @@ msgstr "\"{0}\"-k mututua"
msgid "Muted words & tags"
msgstr "Mutututako hitzak eta etiketak"
-#: src/view/screens/ProfileList.tsx:733
+#: src/view/screens/ProfileList.tsx:747
msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them."
msgstr "Mututzea pribatua da. Mutututako kontuek zurekin elkarreragin dezakete, baina ez dituzu haien postak ikusiko ezta haien jakinarazpenik jasoko."
@@ -3991,11 +4109,11 @@ msgstr "Mututzea pribatua da. Mutututako kontuek zurekin elkarreragin dezakete,
msgid "My Birthday"
msgstr "Nire Urtebetetzea"
-#: src/view/screens/Feeds.tsx:697
+#: src/view/screens/Feeds.tsx:699
msgid "My Feeds"
msgstr "Nire Feedak"
-#: src/view/shell/desktop/LeftNav.tsx:82
+#: src/view/shell/desktop/LeftNav.tsx:84
msgid "My Profile"
msgstr "Nire Profila"
@@ -4014,7 +4132,7 @@ msgstr "Izena derrigorrezkoa da"
msgid "Name or Description Violates Community Standards"
msgstr "Izenak edo Deskribapenak Komunitatearen Arauak Urratzen ditu"
-#: src/screens/Onboarding/state.ts:94 src/screens/Onboarding/index.tsx:22
+#: src/screens/Onboarding/index.tsx:22 src/screens/Onboarding/state.ts:107
msgid "Nature"
msgstr "Natura"
@@ -4024,7 +4142,7 @@ msgid "Navigate to {0}"
msgstr "Nabigatu {0}-ra"
#: src/view/com/modals/ChangePassword.tsx:169
-#: src/screens/Login/LoginForm.tsx:316
+#: src/screens/Login/LoginForm.tsx:326
#: src/screens/Login/ForgotPasswordForm.tsx:166
msgid "Navigates to the next screen"
msgstr "Hurrengo pantailara nabigatzen da"
@@ -4041,31 +4159,31 @@ msgstr "Aldatu behar duzu?"
msgid "Need to report a copyright violation?"
msgstr "Copyright-urraketa baten berri eman behar al duzu?"
-#: src/screens/Onboarding/StepFinished.tsx:260
+#: src/screens/Onboarding/StepFinished.tsx:264
msgid "Never lose access to your followers or data."
msgstr "Ez galdu inoiz zure jarraitzaile edo datuetarako sarbidea."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:532
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:550
msgid "Nevermind, create a handle for me"
msgstr "Ez dio axola, sortu handle bat niretzako"
-#: src/view/screens/ModerationModlists.tsx:79 src/view/screens/Lists.tsx:77
+#: src/view/screens/Lists.tsx:74 src/view/screens/ModerationModlists.tsx:74
msgctxt "action"
msgid "New"
msgstr "Berria"
-#: src/screens/Messages/ChatList.tsx:267 src/screens/Messages/ChatList.tsx:274
#: src/components/dms/dialogs/NewChatDialog.tsx:65
+#: src/screens/Messages/ChatList.tsx:269 src/screens/Messages/ChatList.tsx:276
msgid "New chat"
msgstr "Txat berria"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:200
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:208
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:355
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:204
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:212
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:358
msgid "New handle"
msgstr "Handle berria"
-#: src/view/screens/ModerationModlists.tsx:71 src/view/screens/Lists.tsx:69
+#: src/view/screens/Lists.tsx:66 src/view/screens/ModerationModlists.tsx:66
msgid "New list"
msgstr "Zerrenda berria"
@@ -4085,18 +4203,18 @@ msgstr "Pasahitz berria"
msgid "New Password"
msgstr "Pasahitz Berria"
-#: src/view/screens/ProfileList.tsx:247 src/view/screens/ProfileList.tsx:286
-#: src/view/screens/ProfileFeed.tsx:432 src/view/screens/Profile.tsx:494
-#: src/view/screens/Notifications.tsx:177 src/view/screens/Feeds.tsx:547
+#: src/screens/Profile/ProfileFeed/index.tsx:209 src/view/screens/Feeds.tsx:549
+#: src/view/screens/Notifications.tsx:165 src/view/screens/Profile.tsx:495
+#: src/view/screens/ProfileList.tsx:250 src/view/screens/ProfileList.tsx:283
msgid "New post"
msgstr "Post berria"
-#: src/view/com/feeds/FeedPage.tsx:145
+#: src/view/com/feeds/FeedPage.tsx:154
msgctxt "action"
msgid "New post"
msgstr "Post berria"
-#: src/view/shell/desktop/LeftNav.tsx:288
+#: src/view/shell/desktop/LeftNav.tsx:309
msgctxt "action"
msgid "New Post"
msgstr "Post Berria"
@@ -4111,27 +4229,29 @@ msgstr "Erabiltzaile Zerrenda berria"
#: src/screens/Settings/ThreadPreferences.tsx:83
#: src/screens/Settings/ThreadPreferences.tsx:86
+#: src/view/com/post-thread/PostThread.tsx:672
+#: src/view/com/post-thread/PostThread.tsx:677
msgid "Newest replies first"
msgstr "Erantzun berrienak lehenengo"
-#: src/screens/Onboarding/state.ts:95 src/screens/Onboarding/index.tsx:20
+#: src/screens/Onboarding/index.tsx:20 src/screens/Onboarding/state.ts:108
msgid "News"
msgstr "Berriak"
-#: 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:325 src/screens/Login/LoginForm.tsx:332
+#: src/screens/Login/SetNewPasswordForm.tsx:168
+#: src/screens/Login/SetNewPasswordForm.tsx:174
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:157
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:165
+#: src/screens/Signup/BackNextButtons.tsx:67
#: src/screens/StarterPack/Wizard/index.tsx:187
#: src/screens/StarterPack/Wizard/index.tsx:191
#: src/screens/StarterPack/Wizard/index.tsx:341
#: src/screens/StarterPack/Wizard/index.tsx:348
-#: src/screens/Signup/BackNextButtons.tsx:67
-#: src/screens/Settings/components/AddAppPasswordDialog.tsx:157
-#: src/screens/Settings/components/AddAppPasswordDialog.tsx:165
-#: src/screens/Login/SetNewPasswordForm.tsx:168
-#: src/screens/Login/SetNewPasswordForm.tsx:174
-#: src/screens/Login/LoginForm.tsx:315 src/screens/Login/LoginForm.tsx:322
-#: src/screens/Login/ForgotPasswordForm.tsx:137
-#: src/screens/Login/ForgotPasswordForm.tsx:143
+#: src/view/com/modals/ChangePassword.tsx:254
+#: src/view/com/modals/ChangePassword.tsx:256
msgid "Next"
msgstr "Hurrengoa"
@@ -4143,12 +4263,8 @@ msgstr "Hurrengo irudia"
msgid "No app passwords yet"
msgstr "Oraindik ez dago aplikazioen pasahitzik"
-#: src/view/screens/ProfileList.tsx:881 src/view/screens/ProfileFeed.tsx:564
-msgid "No description"
-msgstr "Deskribapenik gabe"
-
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:377
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:379
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:380
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:382
msgid "No DNS Panel"
msgstr "DNS Panelik gabe"
@@ -4168,7 +4284,7 @@ msgstr "Ez dago gogokorik oraindik"
#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), )
#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), )
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
-#: src/components/ProfileCard.tsx:338
+#: src/components/ProfileCard.tsx:342
msgid "No longer following {0}"
msgstr "Jada ez da {0} jarraitzen"
@@ -4180,11 +4296,11 @@ msgstr "253 karaktere baino gehiago ez"
msgid "No messages yet"
msgstr "Oraindik ez dago mezurik"
-#: src/screens/Messages/ChatList.tsx:223
+#: src/screens/Messages/ChatList.tsx:225
msgid "No more conversations to show"
msgstr "Ez dago elkarrizketa gehiago erakusteko"
-#: src/view/com/notifications/Feed.tsx:118
+#: src/view/com/notifications/NotificationFeed.tsx:116
msgid "No notifications yet!"
msgstr "Oraindik ez dago jakinarazpenik!"
@@ -4213,7 +4329,8 @@ msgstr "Oraindik ez dago berpostik"
msgid "No result"
msgstr "Ez dago emaitzarik"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:199
+#: src/components/dms/dialogs/SearchablePeopleList.tsx:200
+#: src/components/ProgressGuide/FollowDialog.tsx:235
msgid "No results"
msgstr "Ez dago emaitzarik"
@@ -4221,13 +4338,13 @@ msgstr "Ez dago emaitzarik"
msgid "No results found"
msgstr "Ez da emaitzarik aurkitu"
-#: src/view/screens/Feeds.tsx:469
+#: src/view/screens/Feeds.tsx:470
msgid "No results found for \"{query}\""
msgstr "Ez da emaitzarik aurkitu \"{query}\"-rentzat"
-#: src/view/screens/Search/Search.tsx:221
-#: src/view/screens/Search/Search.tsx:260
-#: src/view/screens/Search/Search.tsx:306
+#: src/view/screens/Search/Search.tsx:228
+#: src/view/screens/Search/Search.tsx:267
+#: src/view/screens/Search/Search.tsx:313
#: src/view/com/modals/ListAddRemoveUsers.tsx:128
msgid "No results found for {query}"
msgstr "Ez da emaitzarik aurkitu {query}-rentzat"
@@ -4245,8 +4362,8 @@ msgstr "Ez, eskerrik asko"
msgid "Nobody"
msgstr "Inor"
+#: src/components/LikedByList.tsx:86 src/components/LikesDialog.tsx:97
#: src/view/com/post-thread/PostLikedBy.tsx:86
-#: src/components/LikesDialog.tsx:97 src/components/LikedByList.tsx:86
msgid "Nobody has liked this yet. Maybe you should be the first!"
msgstr "Inork ez du oraindik hau gogoko. Agian lehena izan beharko zenuke!"
@@ -4266,7 +4383,7 @@ msgstr "Ez da inor aurkitu. Saiatu beste norbait bilatzen."
msgid "Non-sexual Nudity"
msgstr "Biluztasun ez sexuala"
-#: src/Navigation.tsx:129 src/view/screens/Profile.tsx:126
+#: src/Navigation.tsx:130 src/view/screens/Profile.tsx:129
msgid "Not Found"
msgstr "Ez da aurkitu"
@@ -4275,7 +4392,7 @@ msgstr "Ez da aurkitu"
msgid "Not right now"
msgstr "Oraintxe ez"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:350
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:357
#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:686
#: src/view/com/profile/ProfileMenu.tsx:348
msgid "Note about sharing"
@@ -4285,19 +4402,19 @@ msgstr "Partekatzeari buruzko oharra"
msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites."
msgstr "Oharra: Bluesky sare ireki eta publikoa da. Ezarpen honek zure edukiaren ikusgarritasuna mugatzen du Bluesky aplikazioan eta webgunean, eta baliteke beste aplikazio batzuek ezarpen hau ez errespetatzea. Baliteke zure edukia saioa amaitutako erabiltzaileei erakustea beste aplikazio eta webgune batzuek."
-#: src/screens/Messages/ChatList.tsx:178
+#: src/screens/Messages/ChatList.tsx:180
msgid "Nothing here"
msgstr "Hemen ezer ez"
-#: src/screens/Settings/NotificationSettings.tsx:58
+#: src/screens/Settings/NotificationSettings.tsx:64
msgid "Notification filters"
msgstr "Jakinarazpen-iragazkiak"
-#: src/Navigation.tsx:392 src/view/screens/Notifications.tsx:144
+#: src/Navigation.tsx:398 src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "Jakinarazpen-ezarpenak"
-#: src/screens/Settings/NotificationSettings.tsx:40
+#: src/screens/Settings/NotificationSettings.tsx:46
msgid "Notification Settings"
msgstr "Jakinarazpen-Ezarpenak"
@@ -4309,11 +4426,9 @@ msgstr "Jakinarazpen soinuak"
msgid "Notification Sounds"
msgstr "Jakinarazpen Soinuak"
-#: src/Navigation.tsx:598 src/view/shell/Drawer.tsx:444
-#: src/view/shell/desktop/LeftNav.tsx:402
-#: src/view/shell/bottom-bar/BottomBar.tsx:226
-#: src/view/screens/Notifications.tsx:115
-#: src/view/screens/Notifications.tsx:122
+#: src/Navigation.tsx:604 src/view/screens/Notifications.tsx:128
+#: src/view/shell/bottom-bar/BottomBar.tsx:231
+#: src/view/shell/desktop/LeftNav.tsx:426 src/view/shell/Drawer.tsx:444
msgid "Notifications"
msgstr "Jakinarazpenak"
@@ -4347,22 +4462,25 @@ msgstr "Ai ez!"
msgid "Oh no! Something went wrong."
msgstr "Ai ez! Zerbait gaizki joan da."
-#: src/screens/Settings/AppIconSettings.tsx:89
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:347
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:352
+#: src/screens/Settings/AppIconSettings/index.tsx:48
+#: src/screens/Settings/AppIconSettings/index.tsx:229
msgid "OK"
msgstr "Ados"
-#: src/view/com/post-thread/PostThreadItem.tsx:865
+#: src/view/com/post-thread/PostThreadItem.tsx:864
#: src/screens/Login/PasswordUpdatedForm.tsx:37
msgid "Okay"
msgstr "Ados"
#: src/screens/Settings/ThreadPreferences.tsx:75
#: src/screens/Settings/ThreadPreferences.tsx:78
+#: src/view/com/post-thread/PostThread.tsx:662
+#: src/view/com/post-thread/PostThread.tsx:667
msgid "Oldest replies first"
msgstr "Erantzun zaharrenak lehenik"
-#: src/components/StarterPack/QrCode.tsx:75
+#: src/components/StarterPack/QrCode.tsx:76
msgid "on<0><1/><2><3/>2>0>"
msgstr "<0><1/><2><3/>2>0>-n"
@@ -4407,17 +4525,17 @@ msgstr "WebVTT (.vtt) fitxategiak soilik onartzen dira"
msgid "Oops, something went wrong!"
msgstr "Arazoren bat izan da!"
-#: src/view/screens/Profile.tsx:126
-#: src/screens/Settings/NotificationSettings.tsx:48
-#: src/screens/Settings/AppPasswords.tsx:59
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:100
#: src/components/Lists.tsx:167
#: src/components/StarterPack/ProfileStarterPacks.tsx:322
#: src/components/StarterPack/ProfileStarterPacks.tsx:331
+#: src/screens/Settings/AppPasswords.tsx:59
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:104
+#: src/screens/Settings/NotificationSettings.tsx:54
+#: src/view/screens/Profile.tsx:129
msgid "Oops!"
msgstr "Ups!"
-#: src/screens/Onboarding/StepFinished.tsx:256
+#: src/screens/Onboarding/StepFinished.tsx:260
msgid "Open"
msgstr "Ireki"
@@ -4438,17 +4556,22 @@ msgstr "Ireki handle aldaketa elkarrizketa-koadroa"
msgid "Open conversation options"
msgstr "Ireki elkarrizketa aukerak"
-#: src/components/Layout/Header/index.tsx:148
+#: src/components/Layout/Header/index.tsx:145
msgid "Open drawer menu"
msgstr "Ireki marrazki menua"
-#: src/view/com/composer/Composer.tsx:1221
-#: src/view/com/composer/Composer.tsx:1222
-#: src/screens/Messages/components/MessageInput.web.tsx:165
+#: src/screens/Messages/components/MessageInput.web.tsx:181
+#: src/view/com/composer/Composer.tsx:1228
+#: src/view/com/composer/Composer.tsx:1229
msgid "Open emoji picker"
msgstr "Ireki emoji-hautatzailea"
-#: src/view/screens/ProfileFeed.tsx:300
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:190
+msgid "Open feed info screen"
+msgstr "Ireki feedaren informazio pantaila"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:290
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:295
msgid "Open feed options menu"
msgstr "Ireki feed aukeren menua"
@@ -4476,7 +4599,7 @@ msgstr "Ireki mutututako hitzen eta etiketen ezarpenak"
msgid "Open post options menu"
msgstr "Ireki post aukeren menua"
-#: src/screens/StarterPack/StarterPackScreen.tsx:552
+#: src/screens/StarterPack/StarterPackScreen.tsx:553
msgid "Open starter pack menu"
msgstr "Ireki abio multzoaren menua"
@@ -4534,7 +4657,7 @@ msgstr "GIF hautatzeko elkarrizketa-koadroa irekitzen du"
msgid "Opens list of invite codes"
msgstr "Gonbidapen kodeen zerrenda irekitzen du"
-#: src/screens/Login/LoginForm.tsx:231
+#: src/screens/Login/LoginForm.tsx:233
msgid "Opens password reset form"
msgstr "Pasahitza berrezartzeko formularioa irekitzen du"
@@ -4542,8 +4665,8 @@ msgstr "Pasahitza berrezartzeko formularioa irekitzen du"
msgid "Opens the linked website"
msgstr "Estekatutako webgunea irekitzen du"
+#: src/view/com/notifications/NotificationFeedItem.tsx:679
#: src/view/com/util/UserAvatar.tsx:436
-#: src/view/com/notifications/FeedItem.tsx:678
msgid "Opens this profile"
msgstr "Profil hau irekitzen du"
@@ -4594,7 +4717,7 @@ msgstr "Beste bat..."
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr "Gure moderatzaileek salaketak berrikusi dituzte eta Bluesky-ko txatetarako sarbidea desgaitzea erabaki dute."
-#: src/view/screens/NotFound.tsx:47 src/components/Lists.tsx:184
+#: src/components/Lists.tsx:184 src/view/screens/NotFound.tsx:47
msgid "Page not found"
msgstr "Orria ez da aurkitu"
@@ -4602,12 +4725,12 @@ msgstr "Orria ez da aurkitu"
msgid "Page Not Found"
msgstr "Orria Ez da Aurkitu"
-#: src/view/com/modals/DeleteAccount.tsx:258
-#: src/view/com/modals/DeleteAccount.tsx:265
-#: src/screens/Signup/StepInfo/index.tsx:192
+#: src/screens/Login/LoginForm.tsx:212
#: src/screens/Settings/AccountSettings.tsx:117
#: src/screens/Settings/AccountSettings.tsx:121
-#: src/screens/Login/LoginForm.tsx:210
+#: src/screens/Signup/StepInfo/index.tsx:192
+#: src/view/com/modals/DeleteAccount.tsx:239
+#: src/view/com/modals/DeleteAccount.tsx:246
msgid "Password"
msgstr "Pasahitza"
@@ -4639,12 +4762,12 @@ msgid "People"
msgstr "Jendea"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:184
+#: src/Navigation.tsx:185
msgid "People followed by @{0}"
msgstr "@{0}-k jarraitzen duen jendea"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:177
+#: src/Navigation.tsx:178
msgid "People following @{0}"
msgstr "@{0}-ri jarraitzen dion jendea"
@@ -4660,11 +4783,11 @@ msgstr "Ukatu egin da kamerara sartzeko baimena. Mesedez, gaitu zure sistemaren
msgid "Person toggle"
msgstr "Pertsona txandakatzea"
-#: src/screens/Onboarding/state.ts:96 src/screens/Onboarding/index.tsx:28
+#: src/screens/Onboarding/index.tsx:28 src/screens/Onboarding/state.ts:109
msgid "Pets"
msgstr "Etxe-animaliak"
-#: src/screens/Onboarding/state.ts:97
+#: src/screens/Onboarding/state.ts:110
msgid "Photography"
msgstr "Argazkia"
@@ -4672,28 +4795,38 @@ msgstr "Argazkia"
msgid "Pictures meant for adults."
msgstr "Helduentzako pentsatutako irudiak."
-#: src/view/screens/ProfileList.tsx:675 src/view/screens/ProfileFeed.tsx:292
-msgid "Pin to home"
-msgstr "Ainguratu etxera"
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:519
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:526
+msgid "Pin feed"
+msgstr "Ainguratu feeda"
-#: src/view/screens/ProfileFeed.tsx:295
+#: src/view/screens/ProfileList.tsx:685
+msgid "Pin to home"
+msgstr "Ainguratu hasierara"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:336
msgid "Pin to Home"
-msgstr "Ainguratu Etxera"
+msgstr "Ainguratu Hasierara"
#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:380
#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:387
msgid "Pin to your profile"
msgstr "Ainguratu zure profilera"
-#: src/view/com/posts/FeedItem.tsx:363
+#: src/view/com/posts/PostFeedItem.tsx:363
msgid "Pinned"
msgstr "Ainguratua"
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:162
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:174
+msgid "Pinned {0} to Home"
+msgstr "{0} Hasierara ainguratua"
+
#: src/view/screens/SavedFeeds.tsx:123
msgid "Pinned Feeds"
msgstr "Ainguratutako Feedak"
-#: src/view/screens/ProfileList.tsx:354
+#: src/view/screens/ProfileList.tsx:351
msgid "Pinned to your feeds"
msgstr "Ainguratua zure feedetara"
@@ -4758,7 +4891,7 @@ msgstr "Mesedez, sartu zure helbide elektronikoa."
msgid "Please enter your invite code."
msgstr "Mesedez, sartu zure gonbidapen kodea."
-#: src/view/com/modals/DeleteAccount.tsx:254
+#: src/view/com/modals/DeleteAccount.tsx:235
msgid "Please enter your password as well:"
msgstr "Mesedez, sartu zure pasahitza ere:"
@@ -4781,7 +4914,7 @@ msgstr "Hasi saioa @{0} gisa"
msgid "Please Verify Your Email"
msgstr "Mesedez, Egiaztatu Zure Posta Elektronikoa"
-#: src/screens/Onboarding/state.ts:98 src/screens/Onboarding/index.tsx:34
+#: src/screens/Onboarding/index.tsx:34 src/screens/Onboarding/state.ts:111
msgid "Politics"
msgstr "Politika"
@@ -4789,17 +4922,17 @@ msgstr "Politika"
msgid "Porn"
msgstr "Pornografia"
-#: src/view/com/post-thread/PostThread.tsx:489
+#: src/view/com/post-thread/PostThread.tsx:536
msgctxt "description"
msgid "Post"
msgstr "Posta"
-#: src/view/com/composer/Composer.tsx:937
+#: src/view/com/composer/Composer.tsx:944
msgctxt "action"
msgid "Post"
msgstr "Posteatu"
-#: src/view/com/composer/Composer.tsx:935
+#: src/view/com/composer/Composer.tsx:942
msgctxt "action"
msgid "Post All"
msgstr "Posteatu Dena"
@@ -4810,8 +4943,8 @@ msgid "Post by {0}"
msgstr "{0}-ren posta"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:203 src/Navigation.tsx:210 src/Navigation.tsx:217
-#: src/Navigation.tsx:224
+#: src/Navigation.tsx:204 src/Navigation.tsx:211 src/Navigation.tsx:218
+#: src/Navigation.tsx:225
msgid "Post by @{0}"
msgstr "@{0}-ren posta"
@@ -4823,7 +4956,7 @@ msgstr "Posta ezabatu da"
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "Ezin izan da posta kargatu. Egiaztatu Interneteko konexioa eta saiatu berriro."
-#: src/view/com/post-thread/PostThread.tsx:220
+#: src/view/com/post-thread/PostThread.tsx:266
msgid "Post hidden"
msgstr "Post ezkutua"
@@ -4849,8 +4982,8 @@ msgstr "Postaren hizkuntza"
msgid "Post Languages"
msgstr "Postaren Hizkuntzak"
-#: src/view/com/post-thread/PostThread.tsx:215
-#: src/view/com/post-thread/PostThread.tsx:227
+#: src/view/com/post-thread/PostThread.tsx:261
+#: src/view/com/post-thread/PostThread.tsx:273
msgid "Post not found"
msgstr "Posta ez da aurkitu"
@@ -4875,7 +5008,7 @@ msgstr "Postak"
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 "Postak mututu daitezke testuaren, etiketen edo bietan oinarrituta. Post askotan agertzen diren hitz arruntak saihestea gomendatzen dugu, postik ez erakustea eragin baitezake."
-#: src/view/com/posts/FeedErrorMessage.tsx:68
+#: src/view/com/posts/PostFeedErrorMessage.tsx:68
msgid "Posts hidden"
msgstr "Post ezkutuak"
@@ -4895,9 +5028,9 @@ msgstr "Sakatu berriro konektatzen saiatzeko"
msgid "Press to change hosting provider"
msgstr "Sakatu ostalaritza-hornitzailea aldatzeko"
-#: src/screens/Signup/BackNextButtons.tsx:47
+#: src/components/Error.tsx:60 src/components/Lists.tsx:93
#: src/screens/Messages/components/MessageListError.tsx:24
-#: src/components/Lists.tsx:93 src/components/Error.tsx:60
+#: src/screens/Signup/BackNextButtons.tsx:47
msgid "Press to retry"
msgstr "Sakatu berriro saiatzeko"
@@ -4918,11 +5051,12 @@ msgstr "Lehen Hizkuntza"
msgid "Prioritize your Follows"
msgstr "Lehenetsi zure Jarraipenak"
-#: src/screens/Settings/NotificationSettings.tsx:61
+#: src/screens/Settings/NotificationSettings.tsx:67
msgid "Priority notifications"
msgstr "Lehentasunezko jakinarazpenak"
-#: src/view/shell/desktop/RightNav.tsx:80
+#: src/view/shell/desktop/RightNav.tsx:101
+#: src/view/shell/desktop/RightNav.tsx:102
msgid "Privacy"
msgstr "Pribatutasuna"
@@ -4930,15 +5064,15 @@ msgstr "Pribatutasuna"
msgid "Privacy and security"
msgstr "Pribatutasuna eta segurtasuna"
-#: src/Navigation.tsx:346
+#: src/Navigation.tsx:347
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36
msgid "Privacy and Security"
msgstr "Pribatutasuna eta Segurtasuna"
-#: src/Navigation.tsx:270 src/view/shell/Drawer.tsx:624
-#: src/view/shell/Drawer.tsx:625 src/view/screens/PrivacyPolicy.tsx:31
#: src/screens/Settings/AboutSettings.tsx:45
#: src/screens/Settings/AboutSettings.tsx:48
+#: src/view/screens/PrivacyPolicy.tsx:31 src/view/shell/Drawer.tsx:624
+#: src/view/shell/Drawer.tsx:625
msgid "Privacy Policy"
msgstr "Pribatutasun Politika"
@@ -4946,17 +5080,17 @@ msgstr "Pribatutasun Politika"
msgid "Processing video..."
msgstr "Bideoa prozesatzen..."
-#: src/screens/Login/ForgotPasswordForm.tsx:149 src/lib/api/index.ts:59
+#: src/lib/api/index.ts:59 src/screens/Login/ForgotPasswordForm.tsx:149
msgid "Processing..."
msgstr "Prozesatzen..."
-#: src/view/screens/Profile.tsx:361 src/view/screens/DebugMod.tsx:913
+#: src/view/screens/DebugMod.tsx:919 src/view/screens/Profile.tsx:362
msgid "profile"
msgstr "profila"
-#: src/view/shell/Drawer.tsx:71 src/view/shell/Drawer.tsx:516
-#: src/view/shell/desktop/LeftNav.tsx:457
-#: src/view/shell/bottom-bar/BottomBar.tsx:271
+#: src/view/shell/bottom-bar/BottomBar.tsx:276
+#: src/view/shell/desktop/LeftNav.tsx:481 src/view/shell/Drawer.tsx:71
+#: src/view/shell/Drawer.tsx:516
msgid "Profile"
msgstr "Profila"
@@ -4965,17 +5099,17 @@ msgstr "Profila"
msgid "Profile updated"
msgstr "Profila eguneratu da"
-#: src/screens/Onboarding/StepFinished.tsx:242
+#: src/screens/Onboarding/StepFinished.tsx:246
msgid "Public"
msgstr "Publikoa"
-#: src/view/screens/ModerationModlists.tsx:65
-msgid "Public, shareable lists of users to mute or block in bulk."
+#: src/view/com/lists/MyLists.tsx:77
+msgid "Public, sharable lists of users to mute or block in bulk."
msgstr "Erabiltzaileen zerrenda publiko eta partekagarriak mututzeko edo blokeatzeko modu masiboan."
-#: src/view/screens/Lists.tsx:65
-msgid "Public, shareable lists which can drive feeds."
-msgstr "Zerrenda publikoak eta partekagarriak, feedak bultzatu ditzaketenak."
+#: src/view/com/lists/MyLists.tsx:72
+msgid "Public, sharable lists which can be used to drive feeds."
+msgstr "Feedak gidatzeko erabil daitezkeen zerrenda publikoak eta partekagarriak."
#: src/components/StarterPack/QrCodeDialog.tsx:128
msgid "QR code copied to your clipboard!"
@@ -4991,8 +5125,8 @@ msgstr "QR kodea gorde da zure kameran!"
#: src/view/com/util/post-ctrls/RepostButton.web.tsx:85
#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92
-#: src/view/com/util/post-ctrls/RepostButton.tsx:168
-#: src/view/com/util/post-ctrls/RepostButton.tsx:191
+#: src/view/com/util/post-ctrls/RepostButton.tsx:178
+#: src/view/com/util/post-ctrls/RepostButton.tsx:201
msgid "Quote post"
msgstr "Posta aipatu"
@@ -5006,20 +5140,16 @@ msgstr "Aipatutako posta behar bezala kendu da"
#: src/view/com/util/post-ctrls/RepostButton.web.tsx:84
#: src/view/com/util/post-ctrls/RepostButton.web.tsx:91
-#: src/view/com/util/post-ctrls/RepostButton.tsx:167
-#: src/view/com/util/post-ctrls/RepostButton.tsx:189
+#: src/view/com/util/post-ctrls/RepostButton.tsx:177
+#: src/view/com/util/post-ctrls/RepostButton.tsx:199
msgid "Quote posts disabled"
msgstr "Post aipamenak desgaituta daude"
-#: src/components/dialogs/PostInteractionSettingsDialog.tsx:314
-msgid "Quote posts enabled"
-msgstr "Post aipamenak gaituta daude"
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:299
msgid "Quote settings"
msgstr "Aipamen ezarpenak"
-#: src/screens/Post/PostQuotes.tsx:31
+#: src/screens/Post/PostQuotes.tsx:38
msgid "Quotes"
msgstr "Aipamenak"
@@ -5029,10 +5159,12 @@ msgstr "Post honen aipamenak"
#: src/screens/Settings/ThreadPreferences.tsx:99
#: src/screens/Settings/ThreadPreferences.tsx:102
+#: src/view/com/post-thread/PostThread.tsx:692
+#: src/view/com/post-thread/PostThread.tsx:697
msgid "Random (aka \"Poster's Roulette\")"
msgstr "Ausazko (\"Poster-en erruleta\" bezala ezagutua)"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:565
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:583
msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again."
msgstr "Saiakera muga gainditu da. Gehiegitan saiatu zara handle-a aldatzen denbora laburrean. Mesedez, itxaron minutu bat berriro saiatu aurretik."
@@ -5063,30 +5195,30 @@ msgstr "Irakurri Bluesky Zerbitzu-Baldintzak"
msgid "Reason:"
msgstr "Arrazoia:"
-#: src/view/screens/Search/Search.tsx:1033
+#: src/view/screens/Search/Search.tsx:1041
msgid "Recent Searches"
msgstr "Azken Bilaketak"
+#: src/screens/Search/components/ExploreRecommendations.tsx:50
+msgid "Recommended"
+msgstr "Gomendatua"
+
#: src/screens/Messages/components/MessageListError.tsx:20
msgid "Reconnect"
msgstr "Berriro konektatu"
-#: src/view/screens/Notifications.tsx:116
-msgid "Refresh notifications"
-msgstr "Freskatu jakinarazpenak"
-
#: src/screens/Messages/ChatList.tsx:163
msgid "Reload conversations"
msgstr "Berriz kargatu elkarrizketak"
-#: src/view/com/posts/FeedErrorMessage.tsx:213
-#: src/view/com/modals/UserAddRemoveLists.tsx:235
-#: src/view/com/modals/ListAddRemoveUsers.tsx:269
-#: src/view/com/feeds/FeedSourceCard.tsx:319
-#: src/screens/Settings/Settings.tsx:466 src/components/FeedCard.tsx:316
-#: src/components/dialogs/MutedWords.tsx:438
+#: src/components/dialogs/MutedWords.tsx:438 src/components/FeedCard.tsx:315
#: src/components/StarterPack/Wizard/WizardListCard.tsx:101
#: src/components/StarterPack/Wizard/WizardListCard.tsx:108
+#: src/screens/Settings/Settings.tsx:466
+#: src/view/com/feeds/FeedSourceCard.tsx:322
+#: src/view/com/modals/ListAddRemoveUsers.tsx:269
+#: src/view/com/modals/UserAddRemoveLists.tsx:235
+#: src/view/com/posts/PostFeedErrorMessage.tsx:213
msgid "Remove"
msgstr "Kendu"
@@ -5116,22 +5248,23 @@ msgstr "Kendu kapsulatzea"
#: 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/PostFeedErrorMessage.tsx:169
msgid "Remove feed"
msgstr "Kendu feeda"
-#: src/view/com/posts/FeedErrorMessage.tsx:210
+#: src/view/com/posts/PostFeedErrorMessage.tsx:210
msgid "Remove feed?"
msgstr "Feeda kendu?"
-#: src/view/screens/SavedFeeds.tsx:342 src/view/screens/ProfileList.tsx:501
-#: src/view/screens/ProfileFeed.tsx:336 src/view/screens/ProfileFeed.tsx:342
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:318
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:324
#: src/view/com/feeds/FeedSourceCard.tsx:190
#: src/view/com/feeds/FeedSourceCard.tsx:268
+#: src/view/screens/ProfileList.tsx:498 src/view/screens/SavedFeeds.tsx:342
msgid "Remove from my feeds"
msgstr "Kendu nire feedetatik"
-#: src/view/com/feeds/FeedSourceCard.tsx:314 src/components/FeedCard.tsx:311
+#: src/components/FeedCard.tsx:310 src/view/com/feeds/FeedSourceCard.tsx:317
msgid "Remove from my feeds?"
msgstr "Nire feedetatik kendu?"
@@ -5139,7 +5272,7 @@ msgstr "Nire feedetatik kendu?"
msgid "Remove from quick access?"
msgstr "Sarrera azkarretik kendu?"
-#: src/screens/List/ListHiddenScreen.tsx:156
+#: src/screens/List/ListHiddenScreen.tsx:167
msgid "Remove from saved feeds"
msgstr "Kendu feed gordetatik"
@@ -5151,19 +5284,19 @@ msgstr "Kendu irudia"
msgid "Remove mute word from your list"
msgstr "Kendu hitz mututua zure zerrendatik"
-#: src/view/screens/Search/Search.tsx:1077
+#: src/view/screens/Search/Search.tsx:1089
msgid "Remove profile"
msgstr "Kendu profila"
-#: src/view/screens/Search/Search.tsx:1079
+#: src/view/screens/Search/Search.tsx:1091
msgid "Remove profile from search history"
msgstr "Kendu profila bilaketa-historitik"
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:287
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:285
msgid "Remove quote"
msgstr "Kendu aipamena"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:145
+#: src/view/com/util/post-ctrls/RepostButton.tsx:165
#: src/view/com/util/post-ctrls/RepostButton.tsx:155
msgid "Remove repost"
msgstr "Kendu berposta"
@@ -5172,7 +5305,7 @@ msgstr "Kendu berposta"
msgid "Remove subtitle file"
msgstr "Kendu azpitituluen fitxategia"
-#: src/view/com/posts/FeedErrorMessage.tsx:211
+#: src/view/com/posts/PostFeedErrorMessage.tsx:211
msgid "Remove this feed from your saved feeds"
msgstr "Kendu feed hau gordetako zure feedetatik"
@@ -5194,16 +5327,17 @@ msgid "Removed from my feeds"
msgstr "Nire feedetatik kenduta"
#: src/screens/List/ListHiddenScreen.tsx:94
-#: src/screens/List/ListHiddenScreen.tsx:160
+#: src/screens/List/ListHiddenScreen.tsx:171
msgid "Removed from saved feeds"
msgstr "Gordetako feedetatik kenduta"
-#: src/view/screens/ProfileList.tsx:385 src/view/screens/ProfileFeed.tsx:196
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:126
#: src/view/com/posts/FeedShutdownMsg.tsx:44
+#: src/view/screens/ProfileList.tsx:382
msgid "Removed from your feeds"
msgstr "Zure feedetatik kenduta"
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:288
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:286
msgid "Removes quoted post"
msgstr "Aipatutako posta kentzen du"
@@ -5212,7 +5346,7 @@ msgstr "Aipatutako posta kentzen du"
msgid "Replace with Discover"
msgstr "Ordeztu Aurkitu-gatik"
-#: src/view/screens/Profile.tsx:227
+#: src/view/screens/Profile.tsx:232
msgid "Replies"
msgstr "Erantzunak"
@@ -5224,11 +5358,15 @@ msgstr "Erantzunak desgaituta daude"
msgid "Replies to this post are disabled."
msgstr "Mezu honen erantzunak desgaituta daude."
-#: src/view/com/composer/Composer.tsx:933
+#: src/view/com/composer/Composer.tsx:940
msgctxt "action"
msgid "Reply"
msgstr "Erantzun"
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:263
+msgid "Reply ({0, plural, one {# reply} other {# replies}})"
+msgstr "Erantzuna ({0, plural, one {erantzun #} other {# erantzun}})"
+
#: src/lib/moderation/useModerationCauseDescription.ts:123
#: src/components/moderation/ModerationDetailsDialog.tsx:114
msgid "Reply Hidden by Thread Author"
@@ -5247,22 +5385,26 @@ msgstr "Erantzunaren ezarpenak"
msgid "Reply settings are chosen by the author of the thread"
msgstr "Erantzun ezarpenak hariaren egileak aukeratzen ditu"
-#: src/view/com/posts/FeedItem.tsx:553 src/view/com/post/Post.tsx:204
+#: src/view/com/post-thread/PostThread.tsx:648
+msgid "Reply sorting"
+msgstr "Erantzunak ordenatzea"
+
+#: src/view/com/post/Post.tsx:204 src/view/com/posts/PostFeedItem.tsx:553
msgctxt "description"
msgid "Reply to <0><1/>0>"
msgstr "<0><1/>0>-ri erantzun"
-#: src/view/com/posts/FeedItem.tsx:544
+#: src/view/com/posts/PostFeedItem.tsx:544
msgctxt "description"
msgid "Reply to a blocked post"
msgstr "Erantzun blokeatutako post bati"
-#: src/view/com/posts/FeedItem.tsx:546
+#: src/view/com/posts/PostFeedItem.tsx:546
msgctxt "description"
msgid "Reply to a post"
msgstr "Post bati erantzun"
-#: src/view/com/posts/FeedItem.tsx:550 src/view/com/post/Post.tsx:202
+#: src/view/com/post/Post.tsx:202 src/view/com/posts/PostFeedItem.tsx:550
msgctxt "description"
msgid "Reply to you"
msgstr "Zuri erantzun"
@@ -5286,8 +5428,8 @@ msgstr "Salatu"
msgid "Report Account"
msgstr "Salatu kontua"
-#: src/components/dms/ReportConversationPrompt.tsx:17
#: src/components/dms/ConvoMenu.tsx:197 src/components/dms/ConvoMenu.tsx:200
+#: src/components/dms/ReportConversationPrompt.tsx:17
msgid "Report conversation"
msgstr "Salatu elkarrizketa"
@@ -5295,11 +5437,12 @@ msgstr "Salatu elkarrizketa"
msgid "Report dialog"
msgstr "Salaketaren elkarrizketa-koadroa"
-#: src/view/screens/ProfileFeed.tsx:353 src/view/screens/ProfileFeed.tsx:355
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:548
msgid "Report feed"
msgstr "Salatu feeda"
-#: src/view/screens/ProfileList.tsx:543
+#: src/view/screens/ProfileList.tsx:540
msgid "Report List"
msgstr "Salatu Zerrenda"
@@ -5312,8 +5455,8 @@ msgstr "Salatu mezua"
msgid "Report post"
msgstr "Salatu posta"
-#: src/screens/StarterPack/StarterPackScreen.tsx:605
-#: src/screens/StarterPack/StarterPackScreen.tsx:608
+#: src/screens/StarterPack/StarterPackScreen.tsx:606
+#: src/screens/StarterPack/StarterPackScreen.tsx:609
msgid "Report starter pack"
msgstr "Salatu abio multzoa"
@@ -5352,34 +5495,38 @@ msgstr "Salatu erabiltzaile hau"
msgid "Repost"
msgstr "Berposta"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:68
-#: src/view/com/util/post-ctrls/RepostButton.tsx:146
-#: src/view/com/util/post-ctrls/RepostButton.tsx:157
+#: src/view/com/util/post-ctrls/RepostButton.tsx:156
+#: src/view/com/util/post-ctrls/RepostButton.tsx:167
msgctxt "action"
msgid "Repost"
msgstr "Berpostatu"
+#: src/view/com/util/post-ctrls/RepostButton.tsx:74
+msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
+msgstr "Berposta ({0, plural, one {berpost #} other {# berpost}})"
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:548
+#: src/view/com/util/post-ctrls/RepostButton.tsx:148
#: src/view/com/util/post-ctrls/RepostButton.web.tsx:49
#: src/view/com/util/post-ctrls/RepostButton.web.tsx:104
-#: src/view/com/util/post-ctrls/RepostButton.tsx:138
-#: src/screens/StarterPack/StarterPackScreen.tsx:547
msgid "Repost or quote post"
msgstr "Berpostatu edo aipatu posta"
-#: src/screens/Post/PostRepostedBy.tsx:31
+#: src/screens/Post/PostRepostedBy.tsx:38
msgid "Reposted By"
msgstr "Nork berpostatua"
#. placeholder {0}: sanitizeDisplayName( reason.by.displayName || reason.by.handle, )
-#: src/view/com/posts/FeedItem.tsx:303
+#: src/view/com/posts/PostFeedItem.tsx:303
msgid "Reposted by {0}"
msgstr "{0}-k berpostatua"
-#: src/view/com/posts/FeedItem.tsx:322
+#: src/view/com/posts/PostFeedItem.tsx:322
msgid "Reposted by <0><1/>0>"
msgstr "<0><1/>0>-k berpostatua"
-#: src/view/com/posts/FeedItem.tsx:301 src/view/com/posts/FeedItem.tsx:320
+#: src/view/com/posts/PostFeedItem.tsx:301
+#: src/view/com/posts/PostFeedItem.tsx:320
msgid "Reposted by you"
msgstr "Zuk berpostatua"
@@ -5445,33 +5592,34 @@ msgstr "Berrezarri sartze-egoera"
msgid "Reset password"
msgstr "Berrezarri pasahitza"
-#: src/screens/Login/LoginForm.tsx:296
+#: src/screens/Login/LoginForm.tsx:306
msgid "Retries login"
msgstr "Saioa hasi berriro"
-#: src/view/com/util/error/ErrorScreen.tsx:76
+#: src/view/com/util/error/ErrorScreen.tsx:99
#: src/view/com/util/error/ErrorMessage.tsx:57
msgid "Retries the last action, which errored out"
msgstr "Azken ekintza berriro saiatzen da, errorea izan duena"
-#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55
-#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57
-#: src/view/com/util/error/ErrorScreen.tsx:74
-#: src/view/com/util/error/ErrorMessage.tsx:55
-#: src/screens/Signup/BackNextButtons.tsx:53
+#: src/components/dms/MessageItem.tsx:245 src/components/Error.tsx:65
+#: src/components/Lists.tsx:104
+#: src/components/StarterPack/ProfileStarterPacks.tsx:336
+#: src/screens/Login/LoginForm.tsx:305 src/screens/Login/LoginForm.tsx:312
+#: src/screens/Messages/ChatList.tsx:169
+#: src/screens/Messages/components/MessageListError.tsx:25
#: src/screens/Onboarding/StepInterests/index.tsx:217
#: src/screens/Onboarding/StepInterests/index.tsx:220
-#: src/screens/Messages/components/MessageListError.tsx:25
-#: src/screens/Login/LoginForm.tsx:295 src/screens/Login/LoginForm.tsx:302
-#: src/components/Lists.tsx:104 src/components/Error.tsx:65
-#: src/components/dms/MessageItem.tsx:245
-#: src/components/StarterPack/ProfileStarterPacks.tsx:336
+#: src/screens/Signup/BackNextButtons.tsx:53
+#: src/view/com/util/error/ErrorMessage.tsx:55
+#: src/view/com/util/error/ErrorScreen.tsx:97
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57
msgid "Retry"
msgstr "Saiatu berriro"
-#: src/view/screens/ProfileList.tsx:1028
-#: src/screens/StarterPack/StarterPackScreen.tsx:751
-#: src/screens/List/ListHiddenScreen.tsx:205 src/components/Error.tsx:73
+#: src/components/Error.tsx:73 src/screens/List/ListHiddenScreen.tsx:216
+#: src/screens/StarterPack/StarterPackScreen.tsx:752
+#: src/view/screens/ProfileList.tsx:1010
msgid "Return to previous page"
msgstr "Itzuli aurreko orrialdera"
@@ -5479,30 +5627,31 @@ msgstr "Itzuli aurreko orrialdera"
msgid "Returns to home page"
msgstr "Hasierako orrira itzultzen da"
-#: src/view/screens/ProfileFeed.tsx:113 src/view/screens/NotFound.tsx:60
+#: src/screens/Profile/ProfileFeed/index.tsx:83
+#: src/view/screens/NotFound.tsx:60
msgid "Returns to previous page"
msgstr "Aurreko orrialdera itzultzen da"
-#: src/view/screens/SavedFeeds.tsx:109 src/view/com/modals/EditProfile.tsx:219
-#: src/view/com/modals/CreateOrEditList.tsx:317
-#: src/view/com/composer/GifAltText.tsx:190
-#: src/view/com/composer/GifAltText.tsx:199
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:150
-#: src/view/com/composer/photos/ImageAltTextDialog.tsx:160
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:77
-#: src/view/com/composer/photos/EditImageDialog.web.tsx:83
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:241
-#: src/screens/Profile/Header/EditProfileDialog.tsx:238
-#: src/screens/Profile/Header/EditProfileDialog.tsx:252
+#: src/components/dialogs/BirthDateSettings.tsx:124
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:438
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:444
-#: src/components/dialogs/BirthDateSettings.tsx:124
#: src/components/StarterPack/QrCodeDialog.tsx:185
+#: src/screens/Profile/Header/EditProfileDialog.tsx:238
+#: src/screens/Profile/Header/EditProfileDialog.tsx:252
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:245
+#: src/view/com/composer/GifAltText.tsx:190
+#: src/view/com/composer/GifAltText.tsx:199
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:77
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:83
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:150
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:160
+#: src/view/com/modals/CreateOrEditList.tsx:317
+#: src/view/com/modals/EditProfile.tsx:219 src/view/screens/SavedFeeds.tsx:109
msgid "Save"
msgstr "Gorde"
#: src/view/com/modals/CreateOrEditList.tsx:325
-#: src/view/com/lightbox/ImageViewing/index.tsx:591
+#: src/view/com/lightbox/ImageViewing/index.tsx:622
msgctxt "action"
msgid "Save"
msgstr "Gorde"
@@ -5528,7 +5677,7 @@ msgstr "Gorde irudia"
msgid "Save image crop"
msgstr "Gorde irudiaren mozketa"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:227
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:231
msgid "Save new handle"
msgstr "Gorde handle berria"
@@ -5536,7 +5685,8 @@ msgstr "Gorde handle berria"
msgid "Save QR code"
msgstr "Gorde QR kodea"
-#: src/view/screens/ProfileFeed.tsx:337 src/view/screens/ProfileFeed.tsx:343
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
msgid "Save to my feeds"
msgstr "Gorde nire feedetan"
@@ -5548,7 +5698,8 @@ msgstr "Gordetako Feedak"
msgid "Saved to your camera roll"
msgstr "Zure kameran gordeta"
-#: src/view/screens/ProfileList.tsx:365 src/view/screens/ProfileFeed.tsx:205
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:135
+#: src/view/screens/ProfileList.tsx:362
msgid "Saved to your feeds"
msgstr "Zure feedetan gordeta"
@@ -5560,36 +5711,46 @@ msgstr "Zure profilean edozein aldaketa gordetzen du"
msgid "Saves image crop settings"
msgstr "Irudi mozketa ezarpenak gordetzen ditu"
-#: src/view/com/notifications/FeedItem.tsx:539
-#: src/view/com/notifications/FeedItem.tsx:564
-#: src/components/NewskieDialog.tsx:105 src/components/dms/ChatEmptyPill.tsx:33
+#: src/components/dms/ChatEmptyPill.tsx:33 src/components/NewskieDialog.tsx:105
+#: src/view/com/notifications/NotificationFeedItem.tsx:540
+#: src/view/com/notifications/NotificationFeedItem.tsx:565
msgid "Say hello!"
msgstr "Esan kaixo!"
-#: src/screens/Onboarding/state.ts:99 src/screens/Onboarding/index.tsx:33
+#: src/screens/Onboarding/index.tsx:33 src/screens/Onboarding/state.ts:112
msgid "Science"
msgstr "Zientzia"
-#: src/view/screens/ProfileList.tsx:985
+#: src/view/screens/ProfileList.tsx:967
msgid "Scroll to top"
msgstr "Joan gora"
-#: src/Navigation.tsx:593 src/view/shell/Drawer.tsx:365
-#: src/view/shell/desktop/LeftNav.tsx:383
-#: src/view/shell/bottom-bar/BottomBar.tsx:178
-#: src/view/screens/Search/Search.tsx:571
-#: src/view/com/modals/ListAddRemoveUsers.tsx:76
#: src/components/forms/SearchInput.tsx:34
-#: src/components/forms/SearchInput.tsx:36
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:484
+#: src/components/forms/SearchInput.tsx:36 src/Navigation.tsx:599
+#: src/view/com/modals/ListAddRemoveUsers.tsx:76
+#: src/view/screens/Search/Search.tsx:577
+#: src/view/shell/bottom-bar/BottomBar.tsx:183
+#: src/view/shell/desktop/LeftNav.tsx:407 src/view/shell/Drawer.tsx:365
msgid "Search"
msgstr "Bilatu"
+#: src/components/ProgressGuide/FollowDialog.tsx:745
+msgid "Search by name or interest"
+msgstr "Bilatu izenaren edo interesaren arabera"
+
+#: src/view/screens/Feeds.tsx:441
+msgid "Search feeds"
+msgstr "Bilatu feedak"
+
+#: src/components/ProgressGuide/FollowDialog.tsx:575
+msgid "Search for \"{interestsDisplayName}\"{activeText}"
+msgstr "Bilatu \"{interestsDisplayName}\"{activeText}"
+
#: src/view/shell/desktop/Search.tsx:201
msgid "Search for \"{query}\""
msgstr "Bilatu \"{query}\""
-#: src/view/screens/Search/Search.tsx:981
+#: src/view/screens/Search/Search.tsx:987
msgid "Search for \"{searchText}\""
msgstr "Bilatu \"{searchText}\""
@@ -5605,8 +5766,10 @@ msgstr "Bilatu erabiltzaileak"
msgid "Search GIFs"
msgstr "Bilatu GIF-ak"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:504
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:505
+#: src/components/dms/dialogs/SearchablePeopleList.tsx:507
+#: src/components/dms/dialogs/SearchablePeopleList.tsx:508
+#: src/components/ProgressGuide/FollowDialog.tsx:764
+#: src/components/ProgressGuide/FollowDialog.tsx:765
msgid "Search profiles"
msgstr "Bilatu profilak"
@@ -5642,7 +5805,7 @@ msgstr "Ikusi Bluesky-n lanpostuak"
msgid "See this guide"
msgstr "Ikus gida hau"
-#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:190
+#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:194
msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause"
msgstr "Bilaketa graduatzailea. Erabili gezi-teklak aurrera eta atzera bilatzeko, eta espazioa erreproduzitzeko/pausoa egiteko"
@@ -5756,11 +5919,11 @@ msgstr "Bidali baieztapen mezu elektronikoa"
msgid "Send Confirmation Email"
msgstr "Bidali Baieztapen Mezu Elektronikoa"
-#: src/view/com/modals/DeleteAccount.tsx:149
+#: src/view/com/modals/DeleteAccount.tsx:145
msgid "Send email"
msgstr "Bidali mezu elektronikoa"
-#: src/view/com/modals/DeleteAccount.tsx:162
+#: src/view/com/modals/DeleteAccount.tsx:158
msgctxt "action"
msgid "Send Email"
msgstr "Bidali Mezu Elektronikoa"
@@ -5769,7 +5932,7 @@ msgstr "Bidali Mezu Elektronikoa"
msgid "Send feedback"
msgstr "Bidali iritzia"
-#: src/screens/Messages/components/MessageInput.web.tsx:219
+#: src/screens/Messages/components/MessageInput.web.tsx:235
#: src/screens/Messages/components/MessageInput.tsx:173
msgid "Send message"
msgstr "Bidali mezua"
@@ -5800,7 +5963,7 @@ msgstr "Bidali egiaztapen-mezu elektronikoa"
msgid "Send via direct message"
msgstr "Bidali mezu zuzenaren bidez"
-#: src/view/com/modals/DeleteAccount.tsx:151
+#: src/view/com/modals/DeleteAccount.tsx:147
msgid "Sends email with confirmation code for account deletion"
msgstr "Kontua ezabatzeko baieztapen-kodea duen mezu elektronikoa bidaltzen du"
@@ -5808,6 +5971,10 @@ msgstr "Kontua ezabatzeko baieztapen-kodea duen mezu elektronikoa bidaltzen du"
msgid "Server address"
msgstr "Zerbitzariaren helbidea"
+#: src/screens/Settings/AppIconSettings/index.tsx:178
+msgid "Set app icon to {0}"
+msgstr "Ezarri {0} aplikazio ikono gisa"
+
#: src/screens/Moderation/index.tsx:290
msgid "Set birthdate"
msgstr "Ezarri jaiotze-data"
@@ -5816,7 +5983,7 @@ msgstr "Ezarri jaiotze-data"
msgid "Set new password"
msgstr "Ezarri pasahitz berria"
-#: src/screens/Onboarding/Layout.tsx:48
+#: src/screens/Onboarding/Layout.tsx:47
msgid "Set up your account"
msgstr "Konfiguratu zure kontua"
@@ -5824,8 +5991,8 @@ msgstr "Konfiguratu zure kontua"
msgid "Sets email for password reset"
msgstr "Pasahitza berrezartzeko posta elektronikoa ezartzen du"
-#: src/Navigation.tsx:159 src/view/shell/Drawer.tsx:529
-#: src/view/shell/desktop/LeftNav.tsx:475 src/screens/Settings/Settings.tsx:80
+#: src/Navigation.tsx:160 src/screens/Settings/Settings.tsx:80
+#: src/view/shell/desktop/LeftNav.tsx:499 src/view/shell/Drawer.tsx:529
msgid "Settings"
msgstr "Ezarpenak"
@@ -5837,19 +6004,19 @@ msgstr "Sexu-jarduera edo biluztasun erotikoa."
msgid "Sexually Suggestive"
msgstr "Sexu Lizuna"
-#: src/view/screens/ProfileList.tsx:486
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:339
+#: src/components/StarterPack/QrCodeDialog.tsx:175 src/screens/Hashtag.tsx:126
+#: src/screens/StarterPack/StarterPackScreen.tsx:423
+#: src/screens/StarterPack/StarterPackScreen.tsx:595 src/screens/Topic.tsx:102
+#: src/view/com/profile/ProfileMenu.tsx:195
+#: src/view/com/profile/ProfileMenu.tsx:204
#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:434
#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:443
-#: src/view/com/profile/ProfileMenu.tsx:195
-#: src/view/com/profile/ProfileMenu.tsx:204 src/screens/Hashtag.tsx:124
-#: src/screens/StarterPack/StarterPackScreen.tsx:422
-#: src/screens/StarterPack/StarterPackScreen.tsx:594
-#: src/components/StarterPack/QrCodeDialog.tsx:175
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:346
+#: src/view/screens/ProfileList.tsx:483
msgid "Share"
msgstr "Partekatu"
-#: src/view/com/lightbox/ImageViewing/index.tsx:600
+#: src/view/com/lightbox/ImageViewing/index.tsx:631
msgctxt "action"
msgid "Share"
msgstr "Partekatu"
@@ -5862,17 +6029,13 @@ msgstr "Partekatu istorio polit bat!"
msgid "Share a fun fact!"
msgstr "Partekatu datu dibertigarri bat!"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:355
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:362
#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:691
#: src/view/com/profile/ProfileMenu.tsx:353
msgid "Share anyway"
msgstr "Partekatu hala ere"
-#: src/view/screens/ProfileFeed.tsx:363 src/view/screens/ProfileFeed.tsx:365
-msgid "Share feed"
-msgstr "Partekatu feeda"
-
-#: src/screens/StarterPack/StarterPackScreen.tsx:598
+#: src/screens/StarterPack/StarterPackScreen.tsx:599
#: src/components/StarterPack/ShareDialog.tsx:123
#: src/components/StarterPack/ShareDialog.tsx:130
msgid "Share link"
@@ -5892,7 +6055,11 @@ msgstr "Partekatu estekaren elkarrizketa-koadroa"
msgid "Share QR code"
msgstr "Partekatu QR kodea"
-#: src/screens/StarterPack/StarterPackScreen.tsx:415
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:470
+msgid "Share this feed"
+msgstr "Partekatu feed hau"
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:416
msgid "Share this starter pack"
msgstr "Partekatu abio multzo hau"
@@ -5904,7 +6071,7 @@ msgstr "Partekatu abio multzo hau eta lagundu jendea zure Bluesky komunitatean s
msgid "Share your favorite feed!"
msgstr "Partekatu zure feed gogokoena!"
-#: src/Navigation.tsx:255
+#: src/Navigation.tsx:256
msgid "Shared Preferences Tester"
msgstr "Partekatutako Hobespenen Probatzailea"
@@ -5922,7 +6089,7 @@ msgstr "Erakutsi"
msgid "Show alt text"
msgstr "Erakutsi aukerazko testua"
-#: src/screens/List/ListHiddenScreen.tsx:176
+#: src/screens/List/ListHiddenScreen.tsx:187
#: src/components/moderation/ScreenHider.tsx:172
#: src/components/moderation/ScreenHider.tsx:175
msgid "Show anyway"
@@ -5941,7 +6108,7 @@ msgstr "Erakutsi bereizgarria eta iragazkia feedetatik"
msgid "Show hidden replies"
msgstr "Erakutsi erantzun ezkutuak"
-#: src/view/com/post-thread/PostThreadItem.tsx:806
+#: src/view/com/post-thread/PostThreadItem.tsx:805
msgid "Show information about when this post was created"
msgstr "Erakutsi post hau noiz sortu zenari buruzko informazioa"
@@ -5950,12 +6117,12 @@ msgstr "Erakutsi post hau noiz sortu zenari buruzko informazioa"
msgid "Show less like this"
msgstr "Erakutsi honelako gutxiago"
-#: src/screens/List/ListHiddenScreen.tsx:172
+#: src/screens/List/ListHiddenScreen.tsx:183
msgid "Show list anyway"
msgstr "Erakutsi zerrenda hala ere"
-#: src/view/com/posts/FeedItem.tsx:509
-#: src/view/com/post-thread/PostThreadItem.tsx:593
+#: src/view/com/posts/PostFeedItem.tsx:509
+#: src/view/com/post-thread/PostThreadItem.tsx:592
#: src/view/com/post/Post.tsx:242
msgid "Show More"
msgstr "Erakutsi gehiago"
@@ -5983,14 +6150,18 @@ msgstr "Erakutsi post aipatuak"
msgid "Show replies"
msgstr "Erakutsi erantzunak"
+#: src/view/com/post-thread/PostThread.tsx:622
+msgid "Show replies as"
+msgstr "Erakutsi erantzunak honela"
+
+#: src/screens/Settings/ThreadPreferences.tsx:151
+msgid "Show replies as threaded"
+msgstr "Erakutsi erantzunak hari gisa"
+
#: src/screens/Settings/ThreadPreferences.tsx:126
msgid "Show replies by people you follow before all other replies"
msgstr "Erakutsi jarraitzen duzun jendearen erantzunak gainerako erantzunen aurretik"
-#: src/screens/Settings/ThreadPreferences.tsx:151
-msgid "Show replies in a threaded view"
-msgstr "Erakutsi erantzunak hari ikuspegi batean"
-
#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:539
#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:549
msgid "Show reply for everyone"
@@ -6006,8 +6177,8 @@ msgstr "Erakutsi berpostak"
msgid "Show samples of your saved feeds in your Following feed"
msgstr "Erakutsi gordetako feeden laginak zure Jarraitzen feedean"
-#: src/components/moderation/PostHider.tsx:79
#: src/components/moderation/ContentHider.tsx:152
+#: src/components/moderation/PostHider.tsx:79
msgid "Show the content"
msgstr "Erakutsi edukia"
@@ -6019,19 +6190,19 @@ msgstr "Erakutsi abisua"
msgid "Show warning and filter from feeds"
msgstr "Erakutsi feedetako abisua eta iragazkia"
-#: src/view/shell/NavSignupCard.tsx:57 src/view/shell/NavSignupCard.tsx:62
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:205
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:208
-#: 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/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:165 src/view/com/auth/SplashScreen.tsx:61
+#: src/view/com/auth/SplashScreen.tsx:69
#: src/view/com/auth/SplashScreen.web.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:131
-#: src/view/com/auth/SplashScreen.tsx:61 src/view/com/auth/SplashScreen.tsx:69
-#: src/screens/Login/index.tsx:97 src/screens/Login/index.tsx:116
-#: src/screens/Login/LoginForm.tsx:163 src/components/dialogs/Signin.tsx:97
-#: src/components/dialogs/Signin.tsx:99
+#: src/view/shell/bottom-bar/BottomBar.tsx:316
+#: src/view/shell/bottom-bar/BottomBar.tsx:317
+#: src/view/shell/bottom-bar/BottomBar.tsx:319
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:212
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:213
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:215
+#: src/view/shell/NavSignupCard.tsx:57 src/view/shell/NavSignupCard.tsx:62
msgid "Sign in"
msgstr "Hasi saioa"
@@ -6061,22 +6232,11 @@ msgstr "Amaitu saioa"
msgid "Sign out?"
msgstr "Saioa amaitu?"
-#: src/view/shell/NavSignupCard.tsx:47 src/view/shell/NavSignupCard.tsx:52
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:195
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:196
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:198
-#: src/view/shell/bottom-bar/BottomBar.tsx:301
-#: src/view/shell/bottom-bar/BottomBar.tsx:302
-#: src/view/shell/bottom-bar/BottomBar.tsx:304
-msgid "Sign up"
-msgstr "Izena eman"
-
#: src/lib/moderation/useGlobalLabelStrings.ts:28
#: src/components/moderation/ScreenHider.tsx:91
msgid "Sign-in Required"
msgstr "Saioa hasi behar da"
-#. placeholder {0}: account.handle
#: src/screens/Login/ChooseAccountForm.tsx:53
#: src/lib/hooks/useAccountSwitcher.ts:41
msgid "Signed in as @{0}"
@@ -6087,7 +6247,7 @@ msgstr "@{0} gisa hasi duzu saioa"
msgid "Signup without a starter pack"
msgstr "Eman izena abio multzorik gabe"
-#: src/components/FeedInterstitials.tsx:316
+#: src/components/FeedInterstitials.tsx:314
msgid "Similar accounts"
msgstr "Antzeko kontuak"
@@ -6100,15 +6260,15 @@ msgstr "Saltatu"
msgid "Skip this flow"
msgstr "Saltatu fluxu hau"
-#: src/screens/Settings/AppearanceSettings.tsx:165
+#: src/screens/Settings/AppearanceSettings.tsx:164
msgid "Smaller"
msgstr "Txikiagoa"
-#: src/screens/Onboarding/state.ts:87 src/screens/Onboarding/index.tsx:37
+#: src/screens/Onboarding/index.tsx:37 src/screens/Onboarding/state.ts:100
msgid "Software Dev"
msgstr "Software Garatzailea"
-#: src/components/FeedInterstitials.tsx:447
+#: src/components/FeedInterstitials.tsx:445
msgid "Some other feeds you might like"
msgstr "Gustatuko litzaizukeen beste feed batzuk"
@@ -6126,16 +6286,20 @@ msgid "Something went wrong, please try again"
msgstr "Arazoren bat izan da. Mesedez, saiatu berriro"
#: src/screens/Profile/Sections/Labels.tsx:88
-#: src/screens/Moderation/index.tsx:96 src/components/ReportDialog/index.tsx:54
+#: src/components/ReportDialog/index.tsx:54 src/screens/Moderation/index.tsx:96
msgid "Something went wrong, please try again."
msgstr "Arazoren bat izan da. Mesedez, saiatu berriro."
-#: src/screens/Settings/NotificationSettings.tsx:49
+#: src/screens/Settings/NotificationSettings.tsx:55
#: src/components/Lists.tsx:168
msgid "Something went wrong!"
msgstr "Arazoren bat izan da!"
-#: src/App.web.tsx:94 src/App.native.tsx:118
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:538
+msgid "Something wrong? Let us know."
+msgstr "Zerbait gaizki? Jakinaraziguzu."
+
+#: src/App.native.tsx:122 src/App.web.tsx:97
msgid "Sorry! Your session expired. Please log in again."
msgstr "Barkatu! Zure saioa iraungi da. Mesedez, hasi saioa berriro."
@@ -6152,8 +6316,8 @@ msgid "Sort replies to the same post by:"
msgstr "Ordenatu post bereko erantzunak honela:"
#: src/components/moderation/LabelsOnMeDialog.tsx:168
-msgid "Source: "
-msgstr "Iturria: "
+msgid "Source:"
+msgstr "Iturria:"
#: src/lib/moderation/useReportOptions.ts:72
#: src/lib/moderation/useReportOptions.ts:85
@@ -6164,7 +6328,7 @@ msgstr "Spama"
msgid "Spam; excessive mentions or replies"
msgstr "Spama; gehiegizko aipamen edo erantzunak"
-#: src/screens/Onboarding/state.ts:100 src/screens/Onboarding/index.tsx:27
+#: src/screens/Onboarding/index.tsx:27 src/screens/Onboarding/state.ts:113
msgid "Sports"
msgstr "Kirolak"
@@ -6172,11 +6336,19 @@ msgstr "Kirolak"
msgid "Start a new chat"
msgstr "Txat berria hasi"
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:350
+#: src/view/screens/ProfileList.tsx:817 src/view/screens/ProfileList.tsx:938
+msgid "Start adding people"
+msgstr "Hasi jendea gehitzen"
+
+#: src/view/screens/ProfileList.tsx:824 src/view/screens/ProfileList.tsx:945
+msgid "Start adding people!"
+msgstr "Hasi jendea gehitzen!"
+
+#: src/components/dms/dialogs/SearchablePeopleList.tsx:353
msgid "Start chat with {displayName}"
msgstr "Txat berria hasi {displayName}-rekin"
-#: src/Navigation.tsx:402 src/Navigation.tsx:407
+#: src/Navigation.tsx:408 src/Navigation.tsx:413
#: src/screens/StarterPack/Wizard/index.tsx:186
msgid "Starter Pack"
msgstr "Abio Multzoa"
@@ -6186,15 +6358,20 @@ msgstr "Abio Multzoa"
msgid "Starter pack by {0}"
msgstr "{0}-ren abio multzoa"
+#: src/view/com/profile/ProfileSubpageHeader.tsx:182
+msgid "Starter pack by <0/>"
+msgstr "<0/>-ren abio multzoa"
+
#: src/components/StarterPack/StarterPackCard.tsx:80
+#: src/view/com/profile/ProfileSubpageHeader.tsx:180
msgid "Starter pack by you"
msgstr "Zure abio multzoa"
-#: src/screens/StarterPack/StarterPackScreen.tsx:715
+#: src/screens/StarterPack/StarterPackScreen.tsx:716
msgid "Starter pack is invalid"
msgstr "Abio multzoa ez da zuzena"
-#: src/view/screens/Profile.tsx:231
+#: src/view/screens/Profile.tsx:236
msgid "Starter Packs"
msgstr "Abio Multzoak"
@@ -6217,7 +6394,7 @@ msgstr "{0}/{1} urratsa"
msgid "Storage cleared, you need to restart the app now."
msgstr "Biltegia garbitu da, aplikazioa berrabiarazi behar duzu orain."
-#: src/Navigation.tsx:245 src/screens/Settings/Settings.tsx:324
+#: src/Navigation.tsx:246 src/screens/Settings/Settings.tsx:324
msgid "Storybook"
msgstr "Ipuin liburua"
@@ -6228,7 +6405,7 @@ msgstr "Ipuin liburua"
msgid "Submit"
msgstr "Bidali"
-#: src/view/screens/ProfileList.tsx:702
+#: src/view/screens/ProfileList.tsx:712
msgid "Subscribe"
msgstr "Harpidetu"
@@ -6245,7 +6422,7 @@ msgstr "Harpidetu Etiketatzailera"
msgid "Subscribe to this labeler"
msgstr "Harpidetu etiketatzaile honetara"
-#: src/view/screens/ProfileList.tsx:698
+#: src/view/screens/ProfileList.tsx:708
msgid "Subscribe to this list"
msgstr "Harpidetu zerrenda honetara"
@@ -6253,11 +6430,11 @@ msgstr "Harpidetu zerrenda honetara"
msgid "Success!"
msgstr "Arrakasta!"
-#: src/view/screens/Search/Explore.tsx:332
+#: src/view/screens/Search/Explore.tsx:353
msgid "Suggested accounts"
msgstr "Iradokitako kontuak"
-#: src/components/FeedInterstitials.tsx:318
+#: src/components/FeedInterstitials.tsx:316
msgid "Suggested for you"
msgstr "Zuretzat proposatua"
@@ -6266,7 +6443,7 @@ msgstr "Zuretzat proposatua"
msgid "Suggestive"
msgstr "Lizuna"
-#: src/Navigation.tsx:265 src/view/screens/Support.tsx:31
+#: src/Navigation.tsx:266 src/view/screens/Support.tsx:31
#: src/view/screens/Support.tsx:34
msgid "Support"
msgstr "Laguntza"
@@ -6281,8 +6458,8 @@ msgstr "Aldatu kontua"
msgid "Switch Account"
msgstr "Kontua Aldatu"
-#: src/screens/Settings/AppearanceSettings.tsx:98
-#: src/screens/Settings/AppearanceSettings.tsx:148
+#: src/screens/Settings/AppearanceSettings.tsx:97
+#: src/screens/Settings/AppearanceSettings.tsx:147
msgid "System"
msgstr "Sistema"
@@ -6300,11 +6477,15 @@ msgstr "Etiketa-menua: {displayTag}"
msgid "Tags only"
msgstr "Etiketak soilik"
-#: src/screens/Settings/AppIconSettings.tsx:42
-#: src/screens/Settings/AppIconSettings.tsx:76
+#: src/screens/Settings/AppIconSettings/index.tsx:216
msgid "Tap to change app icon"
msgstr "Sakatu aplikazioaren ikonoa aldatzeko"
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:138
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:174
+msgid "Tap to close the emoji picker"
+msgstr "Sakatu emoji-hautatzailea ixteko"
+
#: src/components/ProgressGuide/Toast.tsx:156
msgid "Tap to dismiss"
msgstr "Sakatu baztertzeko"
@@ -6326,15 +6507,19 @@ msgstr "Sakatu soinua aldatzeko"
msgid "Tap to view full image"
msgstr "Sakatu irudi osoa ikusteko"
-#: src/state/shell/progress-guide.tsx:166
+#: src/state/shell/progress-guide.tsx:233
+msgid "Task complete - 10 follows!"
+msgstr "Ataza amaituta - 10-ek jarraitzen dute!"
+
+#: src/state/shell/progress-guide.tsx:223
msgid "Task complete - 10 likes!"
msgstr "Ataza amaituta - 10-ek gogoko dute!"
-#: src/components/ProgressGuide/List.tsx:48
+#: src/components/ProgressGuide/List.tsx:64
msgid "Teach our algorithm what you like"
msgstr "Irakatsi gure algoritmoari gustatzen zaizuna"
-#: src/screens/Onboarding/state.ts:101 src/screens/Onboarding/index.tsx:36
+#: src/screens/Onboarding/index.tsx:36 src/screens/Onboarding/state.ts:114
msgid "Tech"
msgstr "Teknologia"
@@ -6350,14 +6535,15 @@ msgstr "Kontaiguzu zure buruari buruz pixka bat"
msgid "Tell us a little more"
msgstr "Kontaiguzu apur bat gehiago"
-#: src/view/shell/desktop/RightNav.tsx:89
+#: src/view/shell/desktop/RightNav.tsx:107
+#: src/view/shell/desktop/RightNav.tsx:108
msgid "Terms"
msgstr "Baldintzak"
-#: src/Navigation.tsx:275 src/view/shell/Drawer.tsx:617
-#: src/view/shell/Drawer.tsx:619 src/view/screens/TermsOfService.tsx:31
#: src/screens/Settings/AboutSettings.tsx:37
#: src/screens/Settings/AboutSettings.tsx:40
+#: src/view/screens/TermsOfService.tsx:31 src/view/shell/Drawer.tsx:617
+#: src/view/shell/Drawer.tsx:619
msgid "Terms of Service"
msgstr "Zerbitzu-Baldintzak"
@@ -6390,7 +6576,7 @@ msgstr "Eskerrik asko. Zure salaketa bidali da."
msgid "Thanks, you have successfully verified your email address. You can close this dialog."
msgstr "Eskerrik asko, zure helbide elektronikoa behar bezala egiaztatu duzu. Leiho hau itxi dezakezu."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:467
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:470
msgid "That contains the following:"
msgstr "Horrek honako hauek ditu:"
@@ -6416,7 +6602,8 @@ msgstr "Hori da guztia, lagunok!"
msgid "The account will be able to interact with you after unblocking."
msgstr "Kontua zurekin elkarreragin ahal izango du desblokeatu ondoren."
-#: src/screens/Settings/AppIconSettings.tsx:82
+#: src/screens/Settings/AppIconSettings/index.tsx:41
+#: src/screens/Settings/AppIconSettings/index.tsx:222
msgid "The app will be restarted"
msgstr "Aplikazioa berrabiaraziko da"
@@ -6441,8 +6628,7 @@ msgstr "Copyright-politika <0/>ra eraman da"
msgid "The Discover feed"
msgstr "Ezagutu feeda"
-#: src/state/shell/progress-guide.tsx:167
-#: src/state/shell/progress-guide.tsx:172
+#: src/state/shell/progress-guide.tsx:224
msgid "The Discover feed now knows what you like"
msgstr "Ezagutu feedak badaki zer gustatzen zaizun"
@@ -6462,12 +6648,12 @@ msgstr "Etiketa hauek aplikatu zaizkio zure konturi."
msgid "The following labels were applied to your content."
msgstr "Etiketa hauek aplikatu zaizkio zure edukiari."
-#: src/screens/Onboarding/Layout.tsx:58
+#: src/screens/Onboarding/Layout.tsx:57
msgid "The following steps will help customize your Bluesky experience."
msgstr "Hurrengo urratsek Bluesky esperientzia pertsonalizatzen lagunduko dizute."
-#: src/view/com/post-thread/PostThread.tsx:216
-#: src/view/com/post-thread/PostThread.tsx:228
+#: src/view/com/post-thread/PostThread.tsx:262
+#: src/view/com/post-thread/PostThread.tsx:274
msgid "The post may have been deleted."
msgstr "Baliteke posta ezabatu izana."
@@ -6483,7 +6669,7 @@ msgstr "Aukeratutako bideoa 50 MB baino handiagoa da."
msgid "The server appears to be experiencing issues. Please try again in a few moments."
msgstr "Zerbitzariak arazoak dituela dirudi. Mesedez, saiatu berriro une batzuk barru."
-#: src/screens/StarterPack/StarterPackScreen.tsx:725
+#: src/screens/StarterPack/StarterPackScreen.tsx:726
msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead."
msgstr "Ikusten saiatzen ari zaren abio multzoa ez da zuzena. Horren ordez, abio multzo hau ezaba dezakezu."
@@ -6499,7 +6685,7 @@ msgstr "Zerbitzu Baldintzak hona eraman da"
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 "Eman duzun egiaztapen-kodea ez da zuzena. Mesedez, ziurtatu egiaztapen-esteka zuzena erabili duzula edo eskatu berri bat."
-#: src/screens/Settings/AppearanceSettings.tsx:152
+#: src/screens/Settings/AppearanceSettings.tsx:151
msgid "Theme"
msgstr "Gaia"
@@ -6511,12 +6697,13 @@ msgstr "Ez dago kontua desaktibatzeko denbora-mugarik, itzuli edonoiz."
msgid "There was an issue connecting to Tenor."
msgstr "Arazo bat izan da Tenor-era konektatzean."
-#: src/view/screens/SavedFeeds.tsx:85 src/view/screens/ProfileList.tsx:368
-#: src/view/screens/ProfileList.tsx:387 src/view/screens/ProfileFeed.tsx:239
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:177
+#: src/view/screens/ProfileList.tsx:365 src/view/screens/ProfileList.tsx:384
+#: src/view/screens/SavedFeeds.tsx:85
msgid "There was an issue contacting the server"
msgstr "Arazo bat izan da zerbitzariarekin harremanetan jartzeko"
-#: src/view/screens/ProfileFeed.tsx:545
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:415
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:112
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "Arazo bat izan da zerbitzariarekin harremanetan jartzeko. Mesedez, egiaztatu Interneteko konexioa eta saiatu berriro."
@@ -6526,15 +6713,15 @@ msgstr "Arazo bat izan da zerbitzariarekin harremanetan jartzeko. Mesedez, egiaz
msgid "There was an issue contacting your server"
msgstr "Arazo bat izan da zure zerbitzariarekin harremanetan jartzeko"
-#: src/view/com/notifications/Feed.tsx:126
+#: src/view/com/notifications/NotificationFeed.tsx:124
msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "Arazo bat izan da jakinarazpenak eskuratzean. Sakatu hemen berriro saiatzeko."
-#: src/view/com/posts/Feed.tsx:458
+#: src/view/com/posts/PostFeed.tsx:486
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "Arazo bat izan da postak eskuratzean. Sakatu hemen berriro saiatzeko."
-#: src/view/com/lists/ListMembers.tsx:169
+#: src/view/com/lists/ListMembers.tsx:165
msgid "There was an issue fetching the list. Tap here to try again."
msgstr "Arazo bat izan da zerrenda eskuratzean. Sakatu hemen berriro saiatzeko."
@@ -6547,11 +6734,11 @@ msgstr "Arazo bat izan da aplikazio pasahitzak eskuratzean"
msgid "There was an issue fetching your lists. Tap here to try again."
msgstr "Arazo bat izan da zure zerrendak eskuratzean. Sakatu hemen berriro saiatzeko."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:101
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:105
msgid "There was an issue fetching your service info"
msgstr "Arazo bat izan da zure zerbitzu informazioa eskuratzean"
-#: src/view/com/posts/FeedErrorMessage.tsx:145
+#: src/view/com/posts/PostFeedErrorMessage.tsx:145
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr "Arazo bat izan da feed hau kentzean. Egiaztatu Interneteko konexioa eta saiatu berriro."
@@ -6560,34 +6747,33 @@ msgstr "Arazo bat izan da feed hau kentzean. Egiaztatu Interneteko konexioa eta
msgid "There was an issue sending your report. Please check your internet connection."
msgstr "Arazo bat izan da zure salaketa bidaltzean. Mesedez, egiaztatu zure Interneteko konexioa."
-#: src/view/screens/ProfileFeed.tsx:210
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:140
#: src/view/com/posts/FeedShutdownMsg.tsx:52
#: src/view/com/posts/FeedShutdownMsg.tsx:71
msgid "There was an issue updating your feeds, please check your internet connection and try again."
msgstr "Arazo bat izan da feedak eguneratzean. Egiaztatu Interneteko konexioa eta saiatu berriro."
-#. placeholder {0}: e.toString()
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:364
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:107
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:141
+#: 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
-#: src/view/com/post-thread/PostThreadFollowBtn.tsx:91
-#: src/view/com/post-thread/PostThreadFollowBtn.tsx:102
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:107
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:141
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:364
msgid "There was an issue! {0}"
msgstr "Arazo bat egon da! {0}"
-#: src/view/screens/ProfileList.tsx:399 src/view/screens/ProfileList.tsx:412
-#: src/view/screens/ProfileList.tsx:425 src/view/screens/ProfileList.tsx:438
+#: 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/components/dialogs/PostInteractionSettingsDialog.tsx:182
+#: src/view/screens/ProfileList.tsx:396 src/view/screens/ProfileList.tsx:409
+#: src/view/screens/ProfileList.tsx:422 src/view/screens/ProfileList.tsx:435
msgid "There was an issue. Please check your internet connection and try again."
msgstr "Arazo bat egon da. Mesedez, egiaztatu Interneteko konexioa eta saiatu berriro."
@@ -6646,7 +6832,7 @@ msgstr "Eduki hau {0}-k dauka. Kanpoko multimedia gaitu nahi duzu?"
msgid "This content is not available because one of the users involved has blocked the other."
msgstr "Eduki hau ez dago erabilgarri inplikatutako erabiltzaileetako batek bestea blokeatu duelako."
-#: src/view/com/posts/FeedErrorMessage.tsx:114
+#: src/view/com/posts/PostFeedErrorMessage.tsx:114
msgid "This content is not viewable without a Bluesky account."
msgstr "Eduki hau ezin da ikusi Bluesky konturik gabe."
@@ -6662,7 +6848,7 @@ msgstr "Ezaugarri hau beta-n dago. Biltegien esportazioei buruzko informazio geh
msgid "This feature is not available while using an App Password. Please sign in with your main password."
msgstr "Ezaugarri hau ez dago erabilgarri aplikazioaren pasahitza erabiltzen duzun bitartean. Mesedez, hasi saioa zure pasahitz nagusiarekin."
-#: src/view/com/posts/FeedErrorMessage.tsx:120
+#: src/view/com/posts/PostFeedErrorMessage.tsx:120
msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later."
msgstr "Feed honek trafiko handia jasotzen ari da eta aldi baterako ez dago erabilgarri. Mesedez, saiatu berriro geroago."
@@ -6670,8 +6856,9 @@ msgstr "Feed honek trafiko handia jasotzen ari da eta aldi baterako ez dago erab
msgid "This feed is empty! You may need to follow more users or tune your language settings."
msgstr "Feed hau hutsik dago! Baliteke erabiltzaile gehiago jarraitu behar izatea edo hizkuntza-ezarpenak doitzea."
-#: src/view/screens/ProfileList.tsx:787 src/view/screens/ProfileFeed.tsx:477
#: src/components/StarterPack/Main/PostsList.tsx:36
+#: src/screens/Profile/ProfileFeed/index.tsx:170
+#: src/view/screens/ProfileList.tsx:814
msgid "This feed is empty."
msgstr "Feed hau hutsik dago."
@@ -6679,7 +6866,7 @@ msgstr "Feed hau hutsik dago."
msgid "This feed is no longer online. We are showing <0>Discover0> instead."
msgstr "Feed hau jada ez dago sarean. <0>Ezagutu0> erakusten ari gara horren ordez."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:558
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:576
msgid "This handle is reserved. Please try a different one."
msgstr "Handle hau erreserbatuta dago. Mesedez, saiatu beste bat."
@@ -6713,21 +6900,19 @@ msgid "This link is taking you to the following website:"
msgstr "Esteka honek honako webgunera eramaten zaitu:"
#. placeholder {0}: isOwner ? _(msg`you`) : sanitizeHandle(list.creator.handle, '@')
-#: src/screens/List/ListHiddenScreen.tsx:136
+#: src/screens/List/ListHiddenScreen.tsx:146
msgid "This list - created by <0>{0}0> - contains possible violations of Bluesky's community guidelines in its name or description."
msgstr "Zerrenda hau - <0>{0}0>-k sortua- Bluesky komunitatearen jarraibideen urraketa posibleak ditu bere izenean edo deskribapenean."
-#: src/view/screens/ProfileList.tsx:965
-msgid "This list is empty!"
-msgstr "Zerrenda hau hutsik dago!"
+#: src/view/screens/ProfileList.tsx:933
+msgid "This list is empty."
+msgstr "Zerrenda hau hutsik dago."
#: src/screens/Profile/ErrorState.tsx:40
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
msgstr "Moderazio-zerbitzu hau ez dago erabilgarri. Ikus behean xehetasun gehiagorako. Arazo honek jarraitzen badu, jarri gurekin harremanetan."
-#. placeholder {0}: niceDate(i18n, createdAt)
-#. placeholder {1}: niceDate(i18n, indexedAt)
-#: src/view/com/post-thread/PostThreadItem.tsx:846
+#: src/view/com/post-thread/PostThreadItem.tsx:845
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Post honek <0>{0}0>-n sortu dela dio, baina Bluesky-k <1>{1}1>-n ikusi zuen lehen aldiz."
@@ -6735,7 +6920,7 @@ msgstr "Post honek <0>{0}0>-n sortu dela dio, baina Bluesky-k <1>{1}1>-n iku
msgid "This post has been deleted."
msgstr "Post hau ezabatu da."
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:352
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:359
#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:688
msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in."
msgstr "Post hau saioa hasitako erabiltzaileek soilik ikus dezakete. Saioa hasita ez dagoen jendearentzat ez da ikusgai egongo."
@@ -6760,7 +6945,7 @@ msgstr "Erantzun hau zure hariaren beheko aldean ezkutuko atal batean ordenatuko
msgid "This service has not provided terms of service or a privacy policy."
msgstr "Zerbitzu honek ez du zerbitzu-baldintzarik edo pribatutasun-politikarik eman."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:436
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:439
msgid "This should create a domain record at:"
msgstr "Honek domeinu-erregistro bat sortu beharko luke hemen:"
@@ -6813,8 +6998,13 @@ msgstr "Honek @{0} sarbide azkarreko zerrendatik kenduko du."
msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
msgstr "Honek zure posta aipatutako post honetatik kenduko du erabiltzaile guztientzat, eta leku-marka batekin ordezkatuko du."
-#: src/screens/Settings/ContentAndMediaSettings.tsx:56
-#: src/screens/Settings/ContentAndMediaSettings.tsx:59
+#: src/view/com/post-thread/PostThread.tsx:606
+#: src/view/com/post-thread/PostThread.tsx:609
+msgid "Thread options"
+msgstr "Hariaren aukerak"
+
+#: src/screens/Settings/ContentAndMediaSettings.tsx:66
+#: src/screens/Settings/ContentAndMediaSettings.tsx:69
msgid "Thread preferences"
msgstr "Hariaren hobespenak"
@@ -6822,11 +7012,16 @@ msgstr "Hariaren hobespenak"
msgid "Thread Preferences"
msgstr "Hariaren Hobespenak"
+#: src/view/com/post-thread/PostThread.tsx:636
+#: src/view/com/post-thread/PostThread.tsx:641
+msgid "Threaded"
+msgstr "Harikatua"
+
#: src/screens/Settings/ThreadPreferences.tsx:142
msgid "Threaded mode"
msgstr "Haridun modua"
-#: src/Navigation.tsx:308
+#: src/Navigation.tsx:309
msgid "Threads Preferences"
msgstr "Harien Hobespenak"
@@ -6862,25 +7057,35 @@ msgstr "Aldatu goitibeherako aukera"
msgid "Toggle to enable or disable adult content"
msgstr "Aldatu helduentzako edukia gaitzeko edo desgaitzeko"
-#: src/view/screens/Search/Search.tsx:494 src/screens/Hashtag.tsx:86
+#: src/screens/Hashtag.tsx:84 src/screens/Topic.tsx:71
+#: src/view/screens/Search/Search.tsx:499
msgid "Top"
msgstr "Joan gora"
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:404
-#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:406
-#: src/view/com/post-thread/PostThreadItem.tsx:771
-#: src/view/com/post-thread/PostThreadItem.tsx:774
+#: src/Navigation.tsx:383
+msgid "Topic"
+msgstr "Gaia"
+
#: src/components/dms/MessageMenu.tsx:103
#: src/components/dms/MessageMenu.tsx:105
+#: src/view/com/post-thread/PostThreadItem.tsx:770
+#: src/view/com/post-thread/PostThreadItem.tsx:773
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:404
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:406
msgid "Translate"
msgstr "Itzuli"
-#: src/view/com/util/error/ErrorScreen.tsx:84
+#: src/screens/Search/components/ExploreTrendingTopics.tsx:69
+#: src/view/shell/desktop/SidebarTrendingTopics.tsx:59
+msgid "Trending"
+msgstr "Joera"
+
+#: src/view/com/util/error/ErrorScreen.tsx:103
msgctxt "action"
msgid "Try again"
msgstr "Saiatu berriro"
-#: src/screens/Onboarding/state.ts:102
+#: src/screens/Onboarding/state.ts:115
msgid "TV"
msgstr "Telebista"
@@ -6888,19 +7093,23 @@ msgstr "Telebista"
msgid "Two-factor authentication (2FA)"
msgstr "Bi faktoreko autentifikazioa (2FA)"
+#: src/screens/Signup/StepHandle.tsx:114
+msgid "Type your desired username"
+msgstr "Idatzi nahi duzun erabiltzaile-izena"
+
#: src/screens/Messages/components/MessageInput.tsx:148
msgid "Type your message here"
msgstr "Idatzi zure mezua hemen"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:412
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:415
msgid "Type:"
msgstr "Mota:"
-#: src/view/screens/ProfileList.tsx:593
+#: src/view/screens/ProfileList.tsx:590
msgid "Un-block list"
msgstr "Desblokeatu zerrenda"
-#: src/view/screens/ProfileList.tsx:578
+#: src/view/screens/ProfileList.tsx:575
msgid "Un-mute list"
msgstr "Desmututu zerrenda"
@@ -6908,25 +7117,25 @@ msgstr "Desmututu zerrenda"
msgid "Unable to connect. Please check your internet connection and try again."
msgstr "Ezin da konektatu. Mesedez, egiaztatu Interneteko konexioa eta saiatu berriro."
-#: src/view/com/modals/ChangePassword.tsx:71 src/screens/Signup/index.tsx:71
-#: src/screens/Login/index.tsx:76 src/screens/Login/SetNewPasswordForm.tsx:71
-#: src/screens/Login/LoginForm.tsx:152
-#: src/screens/Login/ForgotPasswordForm.tsx:68
+#: src/screens/Login/ForgotPasswordForm.tsx:68 src/screens/Login/index.tsx:76
+#: src/screens/Login/LoginForm.tsx:154
+#: 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 "Ezin da zure zerbitzuarekin harremanetan jarri. Mesedez, egiaztatu zure Interneteko konexioa."
-#: src/screens/StarterPack/StarterPackScreen.tsx:649
+#: src/screens/StarterPack/StarterPackScreen.tsx:650
msgid "Unable to delete"
msgstr "Ezin da ezabatu"
-#: src/view/screens/ProfileList.tsx:684
-#: src/view/com/profile/ProfileMenu.tsx:341
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:197
-#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
#: 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:197
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
+#: src/view/com/profile/ProfileMenu.tsx:341
+#: src/view/screens/ProfileList.tsx:694
msgid "Unblock"
msgstr "Desblokeatu"
@@ -6951,10 +7160,13 @@ msgstr "Kontua Desblokeatu?"
#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
-#: src/view/com/util/post-ctrls/RepostButton.tsx:67
msgid "Undo repost"
msgstr "Desegin berposta"
+#: src/view/com/util/post-ctrls/RepostButton.tsx:68
+msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
+msgstr "Desegin berposta ({0, plural, one {berpost #} other {# berpost}})"
+
#: src/view/com/profile/FollowButton.tsx:60
msgctxt "action"
msgid "Unfollow"
@@ -6970,11 +7182,15 @@ msgstr "{0} jarraitzen utzi"
msgid "Unfollow Account"
msgstr "Jarraitzen utzi Kontua"
-#: src/view/screens/ProfileFeed.tsx:575
-msgid "Unlike this feed"
-msgstr "Desgogoko feed hau"
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+msgid "Unlike"
+msgstr "Ez gogoko"
-#: src/view/screens/ProfileList.tsx:691 src/components/TagMenu/index.tsx:264
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:305
+msgid "Unlike ({0, plural, one {# like} other {# likes}})"
+msgstr "Ez gogoko ({0, plural, one {gogoko #} other {# gogoko}})"
+
+#: src/components/TagMenu/index.tsx:264 src/view/screens/ProfileList.tsx:701
msgid "Unmute"
msgstr "Mututzea utzi"
@@ -7010,11 +7226,17 @@ msgstr "Haria ez mututu"
msgid "Unmute video"
msgstr "Bideoa ez mututu"
-#: src/view/screens/ProfileList.tsx:675 src/view/screens/ProfileFeed.tsx:295
+#: src/view/screens/ProfileList.tsx:685
msgid "Unpin"
msgstr "Aingura kendu"
-#: src/view/screens/ProfileFeed.tsx:292
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:519
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:526
+msgid "Unpin feed"
+msgstr "Feedari aingura kendu"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:309
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:311
msgid "Unpin from home"
msgstr "Aingura kendu hasieratik"
@@ -7023,11 +7245,15 @@ msgstr "Aingura kendu hasieratik"
msgid "Unpin from profile"
msgstr "Aingura kendu profiletik"
-#: src/view/screens/ProfileList.tsx:558
+#: src/view/screens/ProfileList.tsx:555
msgid "Unpin moderation list"
msgstr "Moderazio zerrendari aingura kendu"
-#: src/view/screens/ProfileList.tsx:355
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
+msgid "Unpinned {0} from Home"
+msgstr "{0}-ri aingura kendu Hasieratik"
+
+#: src/view/screens/ProfileList.tsx:352
msgid "Unpinned from your feeds"
msgstr "Aingura kendu zure feedetatik"
@@ -7035,8 +7261,8 @@ msgstr "Aingura kendu zure feedetatik"
msgid "Unsubscribe"
msgstr "Harpidetza kendu"
-#: src/screens/List/ListHiddenScreen.tsx:184
-#: src/screens/List/ListHiddenScreen.tsx:194
+#: src/screens/List/ListHiddenScreen.tsx:195
+#: src/screens/List/ListHiddenScreen.tsx:205
msgid "Unsubscribe from list"
msgstr "Harpidetza kendu zerrendatik"
@@ -7048,7 +7274,7 @@ msgstr "Harpidetza kendu etiketatzaile honi"
msgid "Unsubscribed from list"
msgstr "Zerrendatik harpidetza kenduta"
-#: src/view/com/composer/Composer.tsx:759
+#: src/view/com/composer/Composer.tsx:766
msgid "Unsupported video type"
msgstr "Onartzen ez den bideo mota"
@@ -7066,8 +7292,8 @@ msgstr "Nahi ez den sexu-edukia"
msgid "Update <0>{displayName}0> in Lists"
msgstr "Eguneratu <0>{displayName}0> Zerrendetan"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:494
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:515
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:509
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:530
msgid "Update to {domain}"
msgstr "Eguneratu {domain}ra"
@@ -7087,21 +7313,21 @@ msgstr "Eguneratzen..."
msgid "Upload a photo instead"
msgstr "Kargatu argazki bat ordez"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:452
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:455
msgid "Upload a text file to:"
msgstr "Kargatu testu-fitxategi bat hona:"
-#: 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 "Kargatu Kameratik"
-#: src/view/com/util/UserBanner.tsx:140 src/view/com/util/UserAvatar.tsx:388
+#: src/view/com/util/UserAvatar.tsx:388 src/view/com/util/UserBanner.tsx:140
msgid "Upload from Files"
msgstr "Kargatu Fitxategietatik"
-#: 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 "Kargatu Liburutegitik"
@@ -7113,7 +7339,7 @@ msgstr "Irudiak kargatzen..."
msgid "Uploading link thumbnail..."
msgstr "Estekaren miniatura kargatzen..."
-#: src/view/com/composer/Composer.tsx:1631
+#: src/view/com/composer/Composer.tsx:1638
msgid "Uploading video..."
msgstr "Bideoa kargatzen..."
@@ -7121,7 +7347,7 @@ msgstr "Bideoa kargatzen..."
msgid "Use app passwords to sign in to other Bluesky clients without giving full access to your account or password."
msgstr "Erabili aplikazioen pasahitzak beste Bluesky bezeroetan saioa hasteko, zure konturako edo pasahitzerako sarbide osoa eman gabe."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:527
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:541
msgid "Use default provider"
msgstr "Erabili hornitzaile lehenetsia"
@@ -7130,8 +7356,8 @@ msgstr "Erabili hornitzaile lehenetsia"
msgid "Use in-app browser"
msgstr "Erabili aplikazioko arakatzailea"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:82
-#: src/screens/Settings/ContentAndMediaSettings.tsx:88
+#: src/screens/Settings/ContentAndMediaSettings.tsx:92
+#: src/screens/Settings/ContentAndMediaSettings.tsx:98
msgid "Use in-app browser to open links"
msgstr "Erabili aplikazioko arakatzailea estekak irekitzeko"
@@ -7183,10 +7409,6 @@ msgstr "Erabiltzaileak Zu blokeatu zaitu"
msgid "User list by {0}"
msgstr "{0}-ren erabiltzaile zerrenda"
-#: src/view/screens/ProfileList.tsx:889
-msgid "User list by <0/>"
-msgstr "<0/>-ren erabiltzaile zerrenda"
-
#: src/view/screens/ProfileList.tsx:887
#: src/view/com/modals/UserAddRemoveLists.tsx:212
msgid "User list by you"
@@ -7200,14 +7422,10 @@ msgstr "Erabiltzaile zerrenda sortua"
msgid "User list updated"
msgstr "Erabiltzaile zerrenda eguneratua"
-#: src/screens/Login/LoginForm.tsx:183
+#: src/screens/Login/LoginForm.tsx:185
msgid "Username or email address"
msgstr "Erabiltzaile-izena edo helbide elektronikoa"
-#: src/view/screens/ProfileList.tsx:923
-msgid "Users"
-msgstr "Erabiltzaileak"
-
#. placeholder {0}: post.author.handle
#: src/components/WhoCanReply.tsx:258
msgid "users followed by <0>@{0}0>"
@@ -7226,7 +7444,7 @@ msgstr "\"{0}\"-n dauden erabiltzaileak"
msgid "Users that have liked this content or profile"
msgstr "Eduki edo profil hau gustoko duten erabiltzaileak"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:418
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:421
msgid "Value:"
msgstr "Balioa:"
@@ -7234,8 +7452,8 @@ msgstr "Balioa:"
msgid "Verified email required"
msgstr "Egiaztatutako helbide elektronikoa behar da"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:496
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:517
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:511
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:532
msgid "Verify DNS Record"
msgstr "Egiaztatu DNS erregistroa"
@@ -7253,8 +7471,8 @@ msgstr "Egiaztatu posta elektroniko berria"
msgid "Verify now"
msgstr "Egiaztatu orain"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:497
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:519
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:512
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:534
msgid "Verify Text File"
msgstr "Egiaztatu testu-fitxategia"
@@ -7282,7 +7500,7 @@ msgstr "Bideoa"
msgid "Video failed to process"
msgstr "Ezin izan da prozesatu bideoa"
-#: src/screens/Onboarding/state.ts:90 src/screens/Onboarding/index.tsx:39
+#: src/screens/Onboarding/index.tsx:39 src/screens/Onboarding/state.ts:103
msgid "Video Games"
msgstr "Bideo-jokoak"
@@ -7294,7 +7512,7 @@ msgstr "Ez da bideoa aurkitu."
msgid "Video settings"
msgstr "Bideo ezarpenak"
-#: src/view/com/composer/Composer.tsx:1641
+#: src/view/com/composer/Composer.tsx:1648
msgid "Video uploaded"
msgstr "Bideoa kargatuta"
@@ -7309,14 +7527,13 @@ msgid "Videos must be less than 60 seconds long"
msgstr "Bideoek 60 segundo baino gutxiago iraun behar dute"
#. placeholder {0}: profile.handle
-#: src/screens/Profile/Header/Shell.tsx:160
+#: src/screens/Profile/Header/Shell.tsx:168
msgid "View {0}'s avatar"
msgstr "Ikusi {0}-ren abatarra"
-#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle
-#. placeholder {0}: profile.displayName || sanitizeHandle(profile.handle)
-#: src/view/com/notifications/FeedItem.tsx:408
#: src/components/ProfileCard.tsx:110
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:450
+#: src/view/com/notifications/NotificationFeedItem.tsx:409
msgid "View {0}'s profile"
msgstr "Ikusi {0}-ren profila"
@@ -7360,25 +7577,25 @@ msgstr "Ikusi hari osoa"
msgid "View information about these labels"
msgstr "Ikusi etiketa hauei buruzko informazioa"
-#: src/view/com/util/PostMeta.tsx:79 src/view/com/util/PostMeta.tsx:94
-#: src/view/com/posts/FeedErrorMessage.tsx:175
-#: src/view/com/posts/AviFollowButton.tsx:55
#: 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/PostFeedErrorMessage.tsx:175
+#: src/view/com/util/PostMeta.tsx:78 src/view/com/util/PostMeta.tsx:93
msgid "View profile"
msgstr "Ikusi profila"
-#: src/view/com/profile/ProfileSubpageHeader.tsx:116
+#: src/view/com/profile/ProfileSubpageHeader.tsx:119
msgid "View the avatar"
msgstr "Ikusi abatarra"
#. placeholder {0}: labeler.creator.handle
-#: src/components/LabelingServiceCard/index.tsx:162
+#: src/components/LabelingServiceCard/index.tsx:164
msgid "View the labeling service provided by @{0}"
msgstr "Ikusi @{0}-k eskaintzen duen etiketa-zerbitzua"
-#: src/view/screens/ProfileFeed.tsx:587
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:485
msgid "View users who like this feed"
msgstr "Ikusi feed hau gogoko duten erabiltzaileak"
@@ -7387,7 +7604,7 @@ msgid "View your blocked accounts"
msgstr "Ikusi zuk blokeatutako kontuak"
#: src/view/com/home/HomeHeaderLayoutMobile.tsx:77
-#: src/view/com/home/HomeHeaderLayout.web.tsx:59
+#: src/view/com/home/HomeHeaderLayout.web.tsx:56
msgid "View your feeds and explore more"
msgstr "Ikusi zure feedak eta arakatu gehiago"
@@ -7422,10 +7639,14 @@ msgstr "Edukia ohartarazi"
msgid "Warn content and filter from feeds"
msgstr "Edukia ohartarazi eta iragazi feedetatik"
-#: src/screens/Hashtag.tsx:207
+#: src/screens/Hashtag.tsx:205
msgid "We couldn't find any results for that hashtag."
msgstr "Ezin izan dugu etiketa horren emaitzarik aurkitu."
+#: src/screens/Topic.tsx:178
+msgid "We couldn't find any results for that topic."
+msgstr "Ezin izan dugu gai horren emaitzarik aurkitu."
+
#: src/screens/Messages/Conversation.tsx:103
msgid "We couldn't load this conversation"
msgstr "Ezin izan dugu kargatu elkarrizketa hau"
@@ -7439,7 +7660,7 @@ msgstr "{estimatedTime} kalkulatzen dugu zure kontua prest egon arte."
msgid "We have sent another verification email to <0>{0}0>."
msgstr "Beste egiaztapen-mezu bat bidali dugu <0>{0}0> helbidera."
-#: src/screens/Onboarding/StepFinished.tsx:234
+#: src/screens/Onboarding/StepFinished.tsx:238
msgid "We hope you have a wonderful time. Remember, Bluesky is:"
msgstr "Oso ondo pasatzea espero dugu. Gogoratu, Bluesky hau da:"
@@ -7471,7 +7692,8 @@ msgstr "Zure kontua prest dagoenean jakinaraziko dizugu."
msgid "We'll use this to help customize your experience."
msgstr "Hau erabiliko dugu zure esperientzia pertsonalizatzeko."
-#: src/components/dms/dialogs/SearchablePeopleList.tsx:87
+#: src/components/dms/dialogs/SearchablePeopleList.tsx:88
+#: src/components/ProgressGuide/FollowDialog.tsx:157
msgid "We're having network issues, try again"
msgstr "Sare arazoak ditugu, saiatu berriro"
@@ -7487,7 +7709,7 @@ msgstr "Sentitzen dugu, baina ezin izan dugu zerrenda hau konpondu. Honek jarrai
msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again."
msgstr "Sentitzen dugu, baina momentu honetan ezin izan ditugu kargatu zure mutututako hitzak. Mesedez, saiatu berriro."
-#: src/view/screens/Search/Search.tsx:194
+#: src/view/screens/Search/Search.tsx:201
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "Sentitzen dugu, baina ezin izan da bilaketa osatu. Mesedez, saiatu berriro minutu batzuk barru."
@@ -7495,11 +7717,11 @@ msgstr "Sentitzen dugu, baina ezin izan da bilaketa osatu. Mesedez, saiatu berri
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Sentitzen dugu! Erantzuten ari zaren posta ezabatu da."
-#: src/view/screens/NotFound.tsx:50 src/components/Lists.tsx:188
+#: src/components/Lists.tsx:188 src/view/screens/NotFound.tsx:50
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Sentitzen dugu! Ezin dugu aurkitu bilatzen ari zaren orria."
-#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:341
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:346
msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
msgstr "Sentitzen dugu! Hogei etiketatzailetara baino ezin duzu harpidetu, eta hogeiren mugara iritsi zara."
@@ -7519,9 +7741,13 @@ msgstr "Zeintzuk dira zure interesak?"
msgid "What do you want to call your starter pack?"
msgstr "Nola deitu nahi diozu zure abio multzoari?"
-#: src/view/com/composer/Composer.tsx:722
-#: src/view/com/auth/SplashScreen.web.tsx:99
+#: src/screens/Search/components/ExploreTrendingTopics.tsx:79
+msgid "What people are posting about."
+msgstr "Zertaz ari da jendea posteatzen"
+
#: src/view/com/auth/SplashScreen.tsx:38
+#: src/view/com/auth/SplashScreen.web.tsx:99
+#: src/view/com/composer/Composer.tsx:729
msgid "What's up?"
msgstr "Zer da?"
@@ -7541,7 +7767,7 @@ msgstr "Nork elkarreragin dezake post honekin?"
msgid "Who can reply"
msgstr "Nork erantzun dezake"
-#: src/screens/Messages/ChatList.tsx:148 src/screens/Home/NoFeedsPinned.tsx:79
+#: src/screens/Home/NoFeedsPinned.tsx:79 src/screens/Messages/ChatList.tsx:148
msgid "Whoops!"
msgstr "Aiba!"
@@ -7573,26 +7799,26 @@ msgstr "Zergatik berrikusi behar da abio multzo hau?"
msgid "Why should this user be reviewed?"
msgstr "Zergatik berrikusi behar da erabiltzaile hau?"
-#: src/screens/Messages/components/MessageInput.web.tsx:198
+#: src/screens/Messages/components/MessageInput.web.tsx:214
#: src/screens/Messages/components/MessageInput.tsx:149
msgid "Write a message"
msgstr "Idatzi mezu bat"
-#: src/view/com/composer/Composer.tsx:810
+#: src/view/com/composer/Composer.tsx:817
msgid "Write post"
msgstr "Idatzi posta"
#: src/view/com/post-thread/PostThreadComposePrompt.tsx:70
-#: src/view/com/composer/Composer.tsx:720
+#: src/view/com/composer/Composer.tsx:727
msgid "Write your reply"
msgstr "Idatzi zure erantzuna"
-#: src/screens/Onboarding/state.ts:103 src/screens/Onboarding/index.tsx:25
+#: src/screens/Onboarding/index.tsx:25 src/screens/Onboarding/state.ts:116
msgid "Writers"
msgstr "Idazleak"
#. placeholder {0}: verifyError.did
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:336
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:339
msgid "Wrong DID returned from server. Received: {0}"
msgstr "Zerbitzariak DID ez zuzena erantzun du. Jasotakoa: {0}"
@@ -7605,7 +7831,7 @@ msgstr "Bai"
msgid "Yes, deactivate"
msgstr "Bai, desaktibatu"
-#: src/screens/StarterPack/StarterPackScreen.tsx:661
+#: src/screens/StarterPack/StarterPackScreen.tsx:662
msgid "Yes, delete this starter pack"
msgstr "Bai, ezabatu abio multzo hau"
@@ -7625,7 +7851,7 @@ msgstr "Bai, aktibatu berriro nire kontua"
msgid "Yesterday"
msgstr "Atzo"
-#: src/screens/List/ListHiddenScreen.tsx:140
+#: src/screens/List/ListHiddenScreen.tsx:150
msgid "you"
msgstr "zu"
@@ -7650,7 +7876,7 @@ msgstr "Ez zara inor jarraitzen ari."
msgid "You can also discover new Custom Feeds to follow."
msgstr "Jarraitu beharreko Feed Pertsonalizatu berriak ere aurki ditzakezu."
-#: src/view/com/modals/DeleteAccount.tsx:202
+#: src/view/com/modals/DeleteAccount.tsx:198
msgid "You can also temporarily deactivate your account instead, and reactivate it at any time."
msgstr "Horren ordez, zure kontua aldi baterako desaktibatu dezakezu eta edozein unetan berriro aktibatu."
@@ -7666,6 +7892,12 @@ msgstr "Orain pasahitz berriarekin saioa hasi dezakezu."
msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users."
msgstr "Zure kontua berriro aktiba dezakezu saioa hasten jarraitzeko. Zure profila eta postak beste erabiltzaileek ikusgai izango dituzte."
+#: src/components/interstitials/Trending.tsx:100
+#: src/screens/Search/components/ExploreTrendingTopics.tsx:136
+#: src/view/shell/desktop/SidebarTrendingTopics.tsx:109
+msgid "You can update this later from your settings."
+msgstr "Geroago eguneratu dezakezu hau zure ezarpenetan."
+
#: src/view/com/profile/ProfileFollowers.tsx:94
msgid "You do not have any followers."
msgstr "Ez duzu jarraitzailerik."
@@ -7686,7 +7918,7 @@ msgstr "Ez duzu feed ainguraturik."
msgid "You don't have any saved feeds."
msgstr "Ez duzu gordetako feedik."
-#: src/view/com/post-thread/PostThread.tsx:222
+#: src/view/com/post-thread/PostThread.tsx:268
msgid "You have blocked the author or you have been blocked by the author."
msgstr "Egilea blokeatu duzu edo egileak blokeatu zaitu."
@@ -7724,7 +7956,7 @@ msgstr "Kontu hau mututu duzu."
msgid "You have muted this user"
msgstr "Erabiltzaile hau mututu duzu"
-#: src/screens/Messages/ChatList.tsx:188
+#: src/screens/Messages/ChatList.tsx:190
msgid "You have no conversations yet. Start one!"
msgstr "Ez duzu elkarrizketarik oraindik. Hasi bat!"
@@ -7732,15 +7964,15 @@ msgstr "Ez duzu elkarrizketarik oraindik. Hasi bat!"
msgid "You have no feeds."
msgstr "Ez duzu feedik."
-#: src/view/com/lists/ProfileLists.tsx:139 src/view/com/lists/MyLists.tsx:89
+#: src/view/com/lists/MyLists.tsx:81 src/view/com/lists/ProfileLists.tsx:139
msgid "You have no lists."
msgstr "Ez duzu zerrendarik."
-#: src/view/screens/ModerationBlockedAccounts.tsx:128
+#: src/view/screens/ModerationBlockedAccounts.tsx:129
msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account."
msgstr "Oraindik ez duzu konturik blokeatu. Kontu bat blokeatzeko, joan bere profilera eta hautatu \"Blokeatu kontua\" bere kontuko menuan."
-#: src/view/screens/ModerationMutedAccounts.tsx:127
+#: src/view/screens/ModerationMutedAccounts.tsx:128
msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account."
msgstr "Oraindik ez duzu mututu konturik. Kontu bat mututzeko, joan bere profilera eta hautatu \"Mututu kontua\" bere kontuko menuan."
@@ -7874,7 +8106,7 @@ msgstr "Ilaran zaude"
msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account."
msgstr "Aplikazioaren pasahitz batekin hasi duzu saioa. Mesedez, hasi saioa zure pasahitz nagusiarekin zure kontua desaktibatzen jarraitzeko."
-#: src/screens/Onboarding/StepFinished.tsx:231
+#: src/screens/Onboarding/StepFinished.tsx:235
msgid "You're ready to go!"
msgstr "Hasteko prest zaude!"
@@ -7883,6 +8115,10 @@ msgstr "Hasteko prest zaude!"
msgid "You've chosen to hide a word or tag within this post."
msgstr "Post honetan hitz edo etiketa bat ezkutatzea aukeratu duzu."
+#: src/state/shell/progress-guide.tsx:234
+msgid "You've found some people to follow"
+msgstr "Jarraitzeko jendea aurkitu duzu"
+
#: src/view/com/posts/FollowingEndOfFeed.tsx:44
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "Zure feedaren amaierara iritsi zara! Bilatu jarraitzeko kontu gehiago."
@@ -7899,7 +8135,7 @@ msgstr "Bideoak kargatzeko eguneko mugara iritsi zara (bideo gehiegi)"
msgid "Your account"
msgstr "Zure kontua"
-#: src/view/com/modals/DeleteAccount.tsx:88
+#: src/view/com/modals/DeleteAccount.tsx:84
msgid "Your account has been deleted"
msgstr "Zure kontua ezabatu da"
@@ -7927,9 +8163,13 @@ msgstr "Zure txatak desaktibatu dira"
msgid "Your choice will be saved, but can be changed later in settings."
msgstr "Zure aukera gordeko da, baina geroago alda daiteke ezarpenetan."
-#: src/view/com/modals/ChangePassword.tsx:55 src/screens/Signup/state.ts:203
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:496
+msgid "Your current handle <0>{0}0> will automatically remain reserved for you. You can switch back to it at any time from this account."
+msgstr "Zure oraingo handlea <0>{0}0> zuretzako automatikoki erreserbatuko da. Edozein momentutan berriro aukeratu dezakezu kontu honetatik."
+
+#: src/screens/Login/ForgotPasswordForm.tsx:51 src/screens/Signup/state.ts:203
#: src/screens/Signup/StepInfo/index.tsx:108
-#: src/screens/Login/ForgotPasswordForm.tsx:51
+#: src/view/com/modals/ChangePassword.tsx:55
msgid "Your email appears to be invalid."
msgstr "Zure helbide elektronikoa ez dirudi zuzena denik."
@@ -7941,7 +8181,7 @@ msgstr "Zure helbide elektronikoa eguneratu da baina ez da egiaztatu. Hurrengo u
msgid "Your email has not yet been verified. This is an important security step which we recommend."
msgstr "Zure helbide elektronikoa ez da oraindik egiaztatu. Gomendatzen dugun segurtasun-urrats garrantzitsua da."
-#: src/state/shell/progress-guide.tsx:156
+#: src/state/shell/progress-guide.tsx:213
msgid "Your first like!"
msgstr "Zure lehenengo gogokoa!"
@@ -7949,15 +8189,14 @@ msgstr "Zure lehenengo gogokoa!"
msgid "Your following feed is empty! Follow more users to see what's happening."
msgstr "Zure jarraitzen feeda hutsik dago! Jarraitu erabiltzaile gehiago zer gertatzen ari den ikusteko."
-#: src/screens/Signup/StepHandle.tsx:125
-msgid "Your full handle will be"
-msgstr "Zure handle osoa honakoa da"
-
-#. placeholder {0}: createFullHandle(subdomain, host)
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:219
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:223
msgid "Your full handle will be <0>@{0}0>"
msgstr "Zure handle osoa <0>@{0}0> da"
+#: src/screens/Signup/StepHandle.tsx:125
+msgid "Your full username will be"
+msgstr "Zure erabiltzaile izen osoa honakoa da"
+
#: src/components/dialogs/MutedWords.tsx:369
msgid "Your muted words"
msgstr "Zure mutututako hitzak"
@@ -7974,7 +8213,7 @@ msgstr "Zure posta argitaratu da"
msgid "Your posts have been published"
msgstr "Zure postak argitaratu dira"
-#: src/screens/Onboarding/StepFinished.tsx:246
+#: src/screens/Onboarding/StepFinished.tsx:250
msgid "Your posts, likes, and blocks are public. Mutes are private."
msgstr "Zure postak, gogokoak eta blokeatuak publikoak dira. Mutututakoak pribatuak dira."
@@ -7990,6 +8229,90 @@ msgstr "Zure erantzuna argitaratu da"
msgid "Your report will be sent to the Bluesky Moderation Service"
msgstr "Zure salaketa Bluesky Moderazio Zerbitzura bidaliko da"
-#: src/screens/Signup/index.tsx:142
-msgid "Your user handle"
-msgstr "Zure erabiltzaile handle-a"
+#. placeholder {0}: labels.length
+#~ msgid "{0, plural, one {# label has been placed on this account} other {# labels have been placed on this account}}"
+#~ msgstr "{0, plural, one {etiketa # jarri da kontu honetan} other {# etiketa jarri dira kontu honetan}}"
+
+#. placeholder {0}: labels.length
+#~ msgid "{0, plural, one {# label has been placed on this content} other {# labels have been placed on this content}}"
+#~ msgstr "{0, plural, one {etiketa # jarri da eduki honetan} other {# etiketa jarri dira eduki honetan}}"
+
+#. placeholder {0}: post.likeCount || 0
+#~ msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}"
+#~ msgstr "{0, plural, one {Gogoko (gogoko #)} other {Gogoko (# gogoko)}}"
+
+#. placeholder {0}: feed.likeCount || 0
+#. placeholder {0}: count || 0
+#~ msgid "{0, plural, one {Liked by # user} other {Liked by # users}}"
+#~ msgstr "{0, plural, one {# erabiltzaileak gogoko du} other {# erabiltzaileek gogoko dute}}"
+
+#. placeholder {0}: post.replyCount || 0
+#~ msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}"
+#~ msgstr "{0, plural, one {Erantzun (erantzun #)} other {Erantzun (# erantzun)}}"
+
+#. placeholder {0}: post.likeCount || 0
+#~ msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}"
+#~ msgstr "{0, plural, one {Ez gogoko (gogoko #)} other {Ez gogoko (# gogoko)}}"
+
+#~ msgid "{badge} unread items"
+#~ msgstr "{badge} elementu irakurri gabe"
+
+#~ msgid "{count, plural, one {Liked by # user} other {Liked by # users}}"
+#~ msgstr "{count, plural, one {Erabiltzaile #-ek gogoko du} other {# erabiltzailek gogoko dute}}"
+
+#~ msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}"
+#~ msgstr "{likeCount, plural, one {Erabiltzaile #-ek gogoko du} other {# erabiltzailek gogoko dute}}"
+
+#~ msgid "Algorithm training complete!"
+#~ msgstr "Algoritmoaren entrenamendua bukatua!"
+
+#~ msgid "by —"
+#~ msgstr "—-gatik"
+
+#~ msgid "by <0/>"
+#~ msgstr "<0/>-gatik"
+
+#~ msgid "by you"
+#~ msgstr "Zuregatik"
+
+#~ msgid "Click here for more information on deactivating your account"
+#~ msgstr "Egin klik hemen zure kontua desaktibatzeari buruzko informazio gehiago lortzeko"
+
+#~ msgid "Click here for more information."
+#~ msgstr "Egin klik hemen informazio gehiago lortzeko."
+
+#~ msgid "Custom feeds built by the community bring you new experiences and help you find the content you love."
+#~ msgstr "Komunitateak sortutako feed pertsonalizatuek esperientzia berriak ekartzen dizkizute eta maite duzun edukia aurkitzen laguntzen dizu."
+
+#~ msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity – <0>learn more0>."
+#~ msgstr "Zure domeinua baduzu, hori erabil dezakezu handle gisa. Horri esker, zure identitatea auto-egiazta dezakezu - <0>lortu informazio gehiago0> ."
+
+#~ msgid "Logo by <0/>"
+#~ msgstr "<0/>-ren logotipoa"
+
+#~ msgid "No description"
+#~ msgstr "Deskribapenik gabe"
+
+#~ msgid "Public, shareable lists which can drive feeds."
+#~ msgstr "Zerrenda publikoak eta partekagarriak, feedak bultzatu ditzaketenak."
+
+#~ msgid "Quote posts enabled"
+#~ msgstr "Post aipamenak gaituta daude"
+
+#~ msgid "Refresh notifications"
+#~ msgstr "Freskatu jakinarazpenak"
+
+#~ msgid "Share feed"
+#~ msgstr "Partekatu feeda"
+
+#~ msgid "This list is empty!"
+#~ msgstr "Zerrenda hau hutsik dago!"
+
+#~ msgid "Unlike this feed"
+#~ msgstr "Desgogoko feed hau"
+
+#~ msgid "User list by <0/>"
+#~ msgstr "<0/>-ren erabiltzaile zerrenda"
+
+#~ msgid "Users"
+#~ msgstr "Erabiltzaileak"
\ No newline at end of file
diff --git a/src/locale/locales/hi/messages.po b/src/locale/locales/hi/messages.po
index d79055c24e..ae61b663f9 100644
--- a/src/locale/locales/hi/messages.po
+++ b/src/locale/locales/hi/messages.po
@@ -15,7 +15,7 @@ msgstr ""
#: src/components/ProgressGuide/FollowDialog.tsx:567
msgid "(active)"
-msgstr ""
+msgstr "(सक्रिय)"
#: src/screens/Messages/components/ChatListItem.tsx:130
msgid "(contains embedded content)"
@@ -37,11 +37,11 @@ msgstr "{0, plural, other {# दिन}}"
#: src/screens/Profile/ProfileFollowers.tsx:40
msgid "{0, plural, one {# follower} other {# followers}}"
-msgstr ""
+msgstr "{0, plural, one {# फ़ॉलोअर} other {# फ़ॉलोअर}}"
#: src/screens/Profile/ProfileFollows.tsx:40
msgid "{0, plural, one {# following} other {# following}}"
-msgstr ""
+msgstr "{0, plural, one {# फ़ॉलोइंग} other {# फ़ॉलोइंग}}"
#: src/lib/hooks/useTimeAgo.ts:146
msgid "{0, plural, one {# hour} other {# hours}}"
@@ -65,15 +65,15 @@ msgstr "{0, plural, one {# घंटा} other {# घंटे}}"
#: src/components/moderation/LabelsOnMe.tsx:53
msgid "{0, plural, one {# label has} other {# labels have}} been placed on this account"
-msgstr ""
+msgstr "इस खाते पर {0, plural, one {# लेबल लगाया गया है।} other {# लेबल लगाए गए हैं।}}"
#: src/components/moderation/LabelsOnMe.tsx:62
msgid "{0, plural, one {# label has} other {# labels have}} been placed on this content"
-msgstr ""
+msgstr "इस सामाग्री पर {0, plural, one {# लेबल लगाया गया है।} other {# लेबल लगाए गए हैं।}}"
#: src/screens/Post/PostLikedBy.tsx:41
msgid "{0, plural, one {# like} other {# likes}}"
-msgstr ""
+msgstr "{0, plural, one {# पसंद} other {# पसंद}}"
#: src/lib/hooks/useTimeAgo.ts:136
msgid "{0, plural, one {# minute} other {# minutes}}"
@@ -85,7 +85,7 @@ msgstr "{0, plural, one {# महीना} other {# महीने}}"
#: src/screens/Post/PostQuotes.tsx:41
msgid "{0, plural, one {# quote} other {# quotes}}"
-msgstr ""
+msgstr "{0, plural, one {# क्वोट} other {# क्वोट}}"
#: src/screens/Post/PostRepostedBy.tsx:41
msgid "{0, plural, one {# repost} other {# reposts}}"
@@ -335,7 +335,7 @@ msgstr "{handle} को संदेश भेजा नहीं जा सक
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:260
msgid "{notificationCount} unread items"
-msgstr ""
+msgstr "{notificationCount} अपठित चीज़ें"
#: src/view/shell/Drawer.tsx:448
msgid "{numUnreadNotifications} unread"
@@ -621,7 +621,7 @@ msgstr "नया पोस्ट जोड़ें"
#: src/view/screens/ProfileList.tsx:903
#: src/view/screens/ProfileList.tsx:921
msgid "Add people"
-msgstr ""
+msgstr "लोगों को जोड़ें"
#: src/screens/Home/NoFeedsPinned.tsx:99
msgid "Add recommended feeds"
@@ -703,7 +703,7 @@ msgstr "विकसित"
#: src/view/screens/Notifications.tsx:86
msgid "All"
-msgstr ""
+msgstr "सभी"
#: src/screens/StarterPack/StarterPackScreen.tsx:381
msgid "All accounts have been followed!"
@@ -725,7 +725,7 @@ msgstr "इनसे नए संदेश आने की अनुमति
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:314
msgid "Allow quote posts"
-msgstr ""
+msgstr "क्वोट पोस्ट की अनुमति दें"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:359
msgid "Allow replies from:"
@@ -888,7 +888,7 @@ msgstr "कोई भी संपर्क कर सकता है"
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23
msgid "App Icon"
-msgstr ""
+msgstr "ऐप आइकॉन"
#: src/screens/Settings/LanguageSettings.tsx:80
msgid "App Language"
@@ -1113,7 +1113,7 @@ msgstr "अन्य उपयोगकर्ताओं को संदेश
#: src/screens/Search/components/ExploreTrendingTopics.tsx:74
msgid "BETA"
-msgstr ""
+msgstr "बीटा"
#: src/components/dialogs/BirthDateSettings.tsx:106
#: src/screens/Settings/AccountSettings.tsx:109
@@ -1252,11 +1252,11 @@ msgstr "Bluesky लॉग आउट उपयोगकर्ताओं को
#: src/screens/Settings/AppIconSettings/index.tsx:99
msgid "Bluesky+"
-msgstr ""
+msgstr "Bluesky+"
#: src/screens/Settings/AppIconSettings/index.tsx:102
msgid "Bluesky+ icons"
-msgstr ""
+msgstr "Bluesky+ आइकॉन"
#: src/lib/moderation/useLabelBehaviorDescription.ts:53
msgid "Blur images"
@@ -1298,15 +1298,15 @@ msgstr "अन्य फ़ीड देखें"
#: src/components/TrendingTopics.tsx:176
msgid "Browse posts about {displayName}"
-msgstr ""
+msgstr "{displayName} के बारे में पोस्ट देखें"
#: src/components/TrendingTopics.tsx:184
msgid "Browse posts tagged with {displayName}"
-msgstr ""
+msgstr "{displayName} से टैग किए गए पोस्ट देखें"
#: src/components/TrendingTopics.tsx:222
msgid "Browse topic {displayName}"
-msgstr ""
+msgstr "{displayName} विषय देखें"
#: src/view/screens/Settings/index.tsx:893
#~ msgid "Build version {0} {1}"
@@ -1330,7 +1330,7 @@ msgstr "{0} के द्वारा"
#: src/screens/Profile/components/ProfileFeedHeader.tsx:447
msgid "By <0>{0}0>"
-msgstr ""
+msgstr "<0>{0}0> के द्वार"
#: src/screens/Signup/StepInfo/Policies.tsx:80
#~ msgid "By creating an account you agree to the {els}."
@@ -1463,12 +1463,12 @@ msgstr "बदलें"
#: src/screens/Settings/AppIconSettings/index.tsx:39
msgid "Change app icon"
-msgstr ""
+msgstr "ऐप आइकॉन बदलें"
#: src/screens/Settings/AppIconSettings/index.tsx:38
#: src/screens/Settings/AppIconSettings/index.tsx:221
msgid "Change app icon to \"{0}\""
-msgstr ""
+msgstr "ऐप आइकॉन को \"{0}\" में बदलें"
#: src/screens/Settings/AccountSettings.tsx:97
#: src/screens/Settings/AccountSettings.tsx:101
@@ -1600,7 +1600,7 @@ msgstr "इस रंग को अपना अवतार के रूप
#: src/view/screens/Feeds.tsx:728
#: src/view/screens/Search/Explore.tsx:411
msgid "Choose your own timeline! Feeds built by the community help you find content you love."
-msgstr ""
+msgstr "आपका अपना टाइमलाइन चुनें! समुदाय द्वारा बनाए गए फ़ीड आपको पसंदीदा सामग्री ढूँढने में सहायता करते हैं।"
#: src/screens/Signup/StepInfo/index.tsx:201
msgid "Choose your password"
@@ -1696,7 +1696,7 @@ msgstr "डायलॉग बंद करें"
#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
msgid "Close emoji picker"
-msgstr ""
+msgstr "इमोजी चयन बंद करें"
#: src/components/dialogs/GifSelect.tsx:169
msgid "Close GIF dialog"
@@ -1859,7 +1859,7 @@ msgstr "सहायता से संपर्क करें"
#: src/screens/Settings/ContentAndMediaSettings.tsx:49
msgid "Content & Media"
-msgstr ""
+msgstr "सामाग्री और मीडिया"
#: src/screens/Settings/AccessibilitySettings.tsx:109
#: src/screens/Settings/Settings.tsx:175
@@ -2149,7 +2149,7 @@ msgstr "{0} बनाया गया"
#: src/screens/List/ListHiddenScreen.tsx:127
msgid "Creator has been blocked"
-msgstr ""
+msgstr "रचयिता को अवरुद्ध किया गया"
#: src/screens/Onboarding/index.tsx:26
#: src/screens/Onboarding/state.ts:99
@@ -2227,7 +2227,7 @@ msgstr "डिफ़ॉल्ट"
#: src/screens/Settings/AppIconSettings/index.tsx:75
msgid "Default icons"
-msgstr ""
+msgstr "डिफ़ॉल्ट आइकॉन"
#: src/components/dms/MessageMenu.tsx:151
#: src/screens/Settings/AppPasswords.tsx:212
@@ -2713,7 +2713,7 @@ msgstr "शिक्षा"
#: src/screens/List/ListHiddenScreen.tsx:141
msgid "Either the creator of this list has blocked you or you have blocked the creator."
-msgstr ""
+msgstr "इस सूची के रचयिता ने आपको अवरुद्ध किया है या आपने रचयिता को अवरुद्ध किया है।"
#: src/screens/Settings/AccountSettings.tsx:60
#: src/screens/Signup/StepInfo/index.tsx:170
@@ -2774,7 +2774,7 @@ msgstr "इस पोस्ट को अपने वेबसाइट मे
#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:57
msgid "Embedded video player"
-msgstr ""
+msgstr "एम्बेडेड वीडियो प्लेयर"
#: src/screens/Settings/components/Email2FAToggle.tsx:56
#: src/screens/Settings/components/Email2FAToggle.tsx:60
@@ -2822,7 +2822,7 @@ msgstr "केवल इस सूत्र को सक्षम करें"
#: src/screens/Settings/ContentAndMediaSettings.tsx:122
#: src/screens/Settings/ContentAndMediaSettings.tsx:136
msgid "Enable trending topics"
-msgstr ""
+msgstr "रुझान सक्षम करें"
#: src/screens/Messages/Settings.tsx:130
#: src/screens/Messages/Settings.tsx:133
@@ -2861,7 +2861,7 @@ msgstr "पुष्टिकरण कोड दर्ज करें"
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405
msgid "Enter fullscreen"
-msgstr ""
+msgstr "फ़ुलस्क्रीन में जाएँ"
#: src/view/com/modals/ChangePassword.tsx:154
msgid "Enter the code you received to change your password."
@@ -3166,7 +3166,7 @@ msgstr "{0} द्वारा फ़ीड"
#: src/screens/Profile/components/ProfileFeedHeader.tsx:353
msgid "Feed menu"
-msgstr ""
+msgstr "फ़ीड मेनू"
#: src/view/screens/Feeds.tsx:709
#~ msgid "Feed offline"
@@ -3217,7 +3217,7 @@ msgstr "फ़ीड अपडेट की गई!"
#: src/screens/Search/components/ExploreRecommendations.tsx:54
msgid "Feeds we think you might like."
-msgstr ""
+msgstr "फ़ीड जो हमें लगता है आपको पसंद आए।"
#: src/view/com/modals/ChangeHandle.tsx:468
#~ msgid "File Contents"
@@ -3245,7 +3245,7 @@ msgstr "फ़ॉलो करने के लिए खाते खोजे
#: src/components/ProgressGuide/FollowDialog.tsx:88
#: src/components/ProgressGuide/FollowDialog.tsx:417
msgid "Find people to follow"
-msgstr ""
+msgstr "फ़ॉलो करने के लिए लोग खोजें"
#: src/view/screens/Search/Search.tsx:595
msgid "Find posts and users on Bluesky"
@@ -3305,7 +3305,7 @@ msgstr "{name} को फ़ॉलो करें"
#: src/components/ProgressGuide/List.tsx:52
#: src/state/shell/progress-guide.tsx:229
msgid "Follow 10 accounts"
-msgstr ""
+msgstr "10 खाते फ़ॉलो करें"
#: src/components/ProgressGuide/List.tsx:69
msgid "Follow 7 accounts"
@@ -3732,13 +3732,13 @@ msgstr "यह पोस्ट छिपाएँ?"
#: src/screens/Search/components/ExploreTrendingTopics.tsx:83
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:62
msgid "Hide trending topics"
-msgstr ""
+msgstr "रुझान छिपाएँ"
#: src/components/interstitials/Trending.tsx:99
#: src/screens/Search/components/ExploreTrendingTopics.tsx:135
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:108
msgid "Hide trending topics?"
-msgstr ""
+msgstr "रुझान छिपाएँ?"
#: src/view/com/notifications/NotificationFeedItem.tsx:592
msgid "Hide user list"
@@ -3806,7 +3806,7 @@ msgstr "होस्टिंग प्रदाता"
#: src/view/com/post-thread/PostThread.tsx:652
#: src/view/com/post-thread/PostThread.tsx:657
msgid "Hot replies first"
-msgstr ""
+msgstr "गर्मागर्म जवाब पहले"
#: src/view/com/modals/InAppBrowserConsent.tsx:41
msgid "How should we open this link?"
@@ -3859,7 +3859,7 @@ msgstr "यदि आप इस सूची को मिटते हैं,
#: src/screens/Settings/components/ChangeHandleDialog.tsx:250
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
-msgstr ""
+msgstr "यदि आपका अपना डोमेन है, आप उसे अपने हैंडल के तौर पर उपयोग कर सकते हैं। इसे आप ख़ुद अपने पहचान की पुष्टि कर सकते हैं। <0>यहाँ अधिक जानें।0>"
#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:658
msgid "If you remove this post, you won't be able to recover it."
@@ -4216,11 +4216,11 @@ msgstr "रोशन"
#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
msgid "Like"
-msgstr ""
+msgstr "पसंद"
#: src/view/com/util/post-ctrls/PostCtrls.tsx:311
msgid "Like ({0, plural, one {# like} other {# likes}})"
-msgstr ""
+msgstr "पसंद करें ({0, plural, one {# पसंद} other {# पसंद}})"
#: src/components/ProgressGuide/List.tsx:63
msgid "Like 10 posts"
@@ -4233,7 +4233,7 @@ msgstr "डिस्कवर फ़ीड को प्रशिक्षित
#: src/screens/Profile/components/ProfileFeedHeader.tsx:501
msgid "Like feed"
-msgstr ""
+msgstr "फ़ीड पसंद करें"
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:275
msgid "Like this feed"
@@ -4254,14 +4254,14 @@ msgstr "इन्होनें पसंद किया"
#: src/components/FeedCard.tsx:213
#: src/view/com/feeds/FeedSourceCard.tsx:303
msgid "Liked by {0, plural, one {# user} other {# users}}"
-msgstr ""
+msgstr "{0, plural, one {# उपयोगकर्ता} other {# उपयोगकर्ताओं}} ने पसंद किया"
#: src/components/LabelingServiceCard/index.tsx:96
#: src/screens/Profile/components/ProfileFeedHeader.tsx:489
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:309
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
-msgstr ""
+msgstr "{likeCount, plural, one {# उपयोगकर्ता} other {# उपयोगकर्ताओं}} ने पसंद किया"
#: src/view/com/notifications/FeedItem.tsx:211
#~ msgid "liked your custom feed"
@@ -4282,7 +4282,7 @@ msgstr "इस पोस्ट पर पसंद"
#: src/view/com/post-thread/PostThread.tsx:626
#: src/view/com/post-thread/PostThread.tsx:631
msgid "Linear"
-msgstr ""
+msgstr "रेखीय"
#: src/Navigation.tsx:198
msgid "List"
@@ -4303,11 +4303,11 @@ msgstr "{0} द्वारा सूची"
#: src/view/com/profile/ProfileSubpageHeader.tsx:156
msgid "List by <0/>"
-msgstr ""
+msgstr "<0/> द्वारा सूची"
#: src/view/com/profile/ProfileSubpageHeader.tsx:154
msgid "List by you"
-msgstr ""
+msgstr "आपके द्वारा सूची"
#: src/view/screens/ProfileList.tsx:455
msgid "List deleted"
@@ -4412,7 +4412,7 @@ msgstr "उस खाते में लॉग इन करें जो स
#: src/view/shell/desktop/RightNav.tsx:121
msgid "Logo by @sawaratsuki.bsky.social"
-msgstr ""
+msgstr "@sawaratsuki.bsky.social द्वारा लोगो"
#: src/view/shell/desktop/RightNav.tsx:103
#~ msgid "Logo by <0/>"
@@ -4483,7 +4483,7 @@ msgstr "उल्लेखित उपयोगकर्ता"
#: src/view/screens/Notifications.tsx:99
msgid "Mentions"
-msgstr ""
+msgstr "उल्लेख"
#: src/components/Menu/index.tsx:96
#: src/view/screens/Search/Search.tsx:863
@@ -4837,7 +4837,7 @@ msgstr "नया हैंडल"
#: src/view/screens/Lists.tsx:66
#: src/view/screens/ModerationModlists.tsx:66
msgid "New list"
-msgstr ""
+msgstr "नई सूची"
#: src/components/dms/NewMessagesPill.tsx:92
msgid "New messages"
@@ -5241,7 +5241,7 @@ msgstr "बातचीत विकल्प खोलें"
#: src/components/Layout/Header/index.tsx:145
msgid "Open drawer menu"
-msgstr ""
+msgstr "ड्रॉअर मेनू खोलें"
#: src/screens/Messages/components/MessageInput.web.tsx:181
#: src/view/com/composer/Composer.tsx:1228
@@ -5251,7 +5251,7 @@ msgstr "इमोजी चयन खोलें"
#: src/screens/Profile/components/ProfileFeedHeader.tsx:190
msgid "Open feed info screen"
-msgstr ""
+msgstr "फ़ीड जानकारी स्क्रीन खोलें"
#: src/screens/Profile/components/ProfileFeedHeader.tsx:290
#: src/screens/Profile/components/ProfileFeedHeader.tsx:295
@@ -5582,7 +5582,7 @@ msgstr "वयस्कों के लिए छवि।"
#: src/screens/Profile/components/ProfileFeedHeader.tsx:519
#: src/screens/Profile/components/ProfileFeedHeader.tsx:526
msgid "Pin feed"
-msgstr ""
+msgstr "फ़ीड पिन करें"
#: src/view/screens/ProfileList.tsx:685
msgid "Pin to home"
@@ -5604,7 +5604,7 @@ msgstr "पिन किया गया"
#: src/screens/Profile/components/ProfileFeedHeader.tsx:162
#: src/screens/Profile/components/ProfileFeedHeader.tsx:174
msgid "Pinned {0} to Home"
-msgstr ""
+msgstr "होम में {0} पिन किया गया"
#: src/view/screens/SavedFeeds.tsx:123
msgid "Pinned Feeds"
@@ -5912,11 +5912,11 @@ msgstr "सार्वजनिक"
#: src/view/com/lists/MyLists.tsx:77
msgid "Public, sharable lists of users to mute or block in bulk."
-msgstr ""
+msgstr "उपयोगकर्ताओं की सार्वजनिक, साझा योग्य सूचियाँ जिन्हें एक साथ म्यूट या अवरुद्ध किया जा सकता है।"
#: src/view/com/lists/MyLists.tsx:72
msgid "Public, sharable lists which can be used to drive feeds."
-msgstr ""
+msgstr "सार्वजनिक, साझा योग्य सूचियाँ जो फ़ीड चला सकती हैं।"
#: src/view/screens/ModerationModlists.tsx:75
#~ msgid "Public, shareable lists of users to mute or block in bulk."
@@ -6024,7 +6024,7 @@ msgstr "हाल के खोज"
#: src/screens/Search/components/ExploreRecommendations.tsx:50
msgid "Recommended"
-msgstr ""
+msgstr "अनुशंसित"
#: src/view/com/auth/onboarding/RecommendedFeeds.tsx:117
#~ msgid "Recommended Feeds"
@@ -6216,7 +6216,7 @@ msgstr "जवाब दें"
#: src/view/com/util/post-ctrls/PostCtrls.tsx:263
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
-msgstr ""
+msgstr "जवाब दें ({0, plural, one {# जवाब} other {# जवाब}})"
#: src/view/screens/PreferencesFollowingFeed.tsx:142
#~ msgid "Reply Filters"
@@ -6242,7 +6242,7 @@ msgstr "जवाब सेटिंग थ्रेड का लेखक च
#: src/view/com/post-thread/PostThread.tsx:648
msgid "Reply sorting"
-msgstr ""
+msgstr "जवाब क्रम"
#: src/view/com/post/Post.tsx:204
#: src/view/com/posts/PostFeedItem.tsx:553
@@ -6365,7 +6365,7 @@ msgstr "रीपोस्ट"
#: src/view/com/util/post-ctrls/RepostButton.tsx:74
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
-msgstr ""
+msgstr "रीपोस्ट करें ({0, plural, one {# रीपोस्ट} other {# रीपोस्ट}})"
#: src/screens/StarterPack/StarterPackScreen.tsx:548
#: src/view/com/util/post-ctrls/RepostButton.tsx:148
@@ -6637,15 +6637,15 @@ msgstr "खोजें"
#: src/components/ProgressGuide/FollowDialog.tsx:745
msgid "Search by name or interest"
-msgstr ""
+msgstr "नाम या दिलचस्पी से खोजें"
#: src/view/screens/Feeds.tsx:441
msgid "Search feeds"
-msgstr ""
+msgstr "फ़ीड खोजें"
#: src/components/ProgressGuide/FollowDialog.tsx:575
msgid "Search for \"{interestsDisplayName}\"{activeText}"
-msgstr ""
+msgstr "\"{interestsDisplayName}\"{activeText} खोजें"
#: src/view/shell/desktop/Search.tsx:201
msgid "Search for \"{query}\""
@@ -6716,7 +6716,7 @@ msgstr "यह गाइड देखें"
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:194
msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause"
-msgstr ""
+msgstr "सीक स्लाइडर। एरो की से आगे और पीछे सीक करें, और स्पेस से चालू/बंद करें"
#: src/view/com/util/Selector.tsx:107
#~ msgid "Select {item}"
@@ -6909,7 +6909,7 @@ msgstr "सर्वर पता"
#: src/screens/Settings/AppIconSettings/index.tsx:178
msgid "Set app icon to {0}"
-msgstr ""
+msgstr "ऐप आइकॉन को {0} करें"
#: src/screens/Moderation/index.tsx:290
msgid "Set birthdate"
@@ -7030,7 +7030,7 @@ msgstr "QR कोड साझा करें"
#: src/screens/Profile/components/ProfileFeedHeader.tsx:470
msgid "Share this feed"
-msgstr ""
+msgstr "इस फ़ीड को साझा करें"
#: src/screens/StarterPack/StarterPackScreen.tsx:416
msgid "Share this starter pack"
@@ -7129,11 +7129,11 @@ msgstr "जवाब दिखाएँ"
#: src/view/com/post-thread/PostThread.tsx:622
msgid "Show replies as"
-msgstr ""
+msgstr "जवाबों को ऐसे दिखाएँ"
#: src/screens/Settings/ThreadPreferences.tsx:151
msgid "Show replies as threaded"
-msgstr ""
+msgstr "जवाबों को थ्रेड में दिखाएँ"
#: src/screens/Settings/ThreadPreferences.tsx:126
msgid "Show replies by people you follow before all other replies"
@@ -7334,7 +7334,7 @@ msgstr "कोई गड़बड़ हुई!"
#: src/screens/Profile/components/ProfileFeedHeader.tsx:538
msgid "Something wrong? Let us know."
-msgstr ""
+msgstr "कुछ गड़बड़ है? हमें बताएँ।"
#: src/App.native.tsx:122
#: src/App.web.tsx:97
@@ -7390,12 +7390,12 @@ msgstr "नया बातचीत शुरू करें"
#: src/view/screens/ProfileList.tsx:817
#: src/view/screens/ProfileList.tsx:938
msgid "Start adding people"
-msgstr ""
+msgstr "लोगों को जोड़ना शुरू करें"
#: src/view/screens/ProfileList.tsx:824
#: src/view/screens/ProfileList.tsx:945
msgid "Start adding people!"
-msgstr ""
+msgstr "लोगों को जोड़ना शुरू करें!"
#: src/components/dms/dialogs/SearchablePeopleList.tsx:353
msgid "Start chat with {displayName}"
@@ -7413,7 +7413,7 @@ msgstr "{0} द्वारा स्टार्टर पैक"
#: src/view/com/profile/ProfileSubpageHeader.tsx:182
msgid "Starter pack by <0/>"
-msgstr ""
+msgstr "<0/> द्वारा स्टार्टर पैक"
#: src/components/StarterPack/StarterPackCard.tsx:80
#: src/view/com/profile/ProfileSubpageHeader.tsx:180
@@ -7560,12 +7560,12 @@ msgstr "केवल टैग"
#: src/screens/Settings/AppIconSettings/index.tsx:216
msgid "Tap to change app icon"
-msgstr ""
+msgstr "ऐप आइकॉन बदलने के लिए टैप करें"
#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:138
#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:174
msgid "Tap to close the emoji picker"
-msgstr ""
+msgstr "इमोजी चयन बंद करने के लिए टैप करें"
#: src/components/ProgressGuide/Toast.tsx:156
msgid "Tap to dismiss"
@@ -7590,7 +7590,7 @@ msgstr "पूरी छवि देखने के लिए दबाएँ"
#: src/state/shell/progress-guide.tsx:233
msgid "Task complete - 10 follows!"
-msgstr ""
+msgstr "कार्य समाप्त - 10 फ़ॉलो!"
#: src/state/shell/progress-guide.tsx:223
msgid "Task complete - 10 likes!"
@@ -7693,7 +7693,7 @@ msgstr "अनअवरुद्ध करने के बाद खाता
#: src/screens/Settings/AppIconSettings/index.tsx:41
#: src/screens/Settings/AppIconSettings/index.tsx:222
msgid "The app will be restarted"
-msgstr ""
+msgstr "ऐप को फिर से शुरू किया जाएगा"
#: src/components/moderation/ModerationDetailsDialog.tsx:127
#~ msgid "the author"
@@ -8006,7 +8006,7 @@ msgstr "<0>{0}0> द्वारा बनाई गई इस सूची
#: src/view/screens/ProfileList.tsx:933
msgid "This list is empty."
-msgstr ""
+msgstr "यह सूची खाली है।"
#: src/screens/Profile/ErrorState.tsx:40
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
@@ -8105,7 +8105,7 @@ msgstr "यह आपके पोस्ट को इस क्वोट पो
#: src/view/com/post-thread/PostThread.tsx:606
#: src/view/com/post-thread/PostThread.tsx:609
msgid "Thread options"
-msgstr ""
+msgstr "थ्रेड विकल्प"
#: src/screens/Settings/ContentAndMediaSettings.tsx:66
#: src/screens/Settings/ContentAndMediaSettings.tsx:69
@@ -8119,7 +8119,7 @@ msgstr "थ्रेड प्राथमिकताएँ"
#: src/view/com/post-thread/PostThread.tsx:636
#: src/view/com/post-thread/PostThread.tsx:641
msgid "Threaded"
-msgstr ""
+msgstr "थ्रेड"
#: src/screens/Settings/ThreadPreferences.tsx:142
msgid "Threaded mode"
@@ -8135,7 +8135,7 @@ msgstr "थ्रेड प्राथमिकताएँ"
#: src/view/com/util/post-embeds/VideoEmbedInner/TimeIndicator.tsx:33
msgid "Time remaining: {time} seconds"
-msgstr ""
+msgstr "समय बाक़ी: {time} सेकंड"
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:99
msgid "To disable the email 2FA method, please verify your access to the email address."
@@ -8173,7 +8173,7 @@ msgstr "बहतरीन"
#: src/Navigation.tsx:383
msgid "Topic"
-msgstr ""
+msgstr "विषय"
#: src/view/com/modals/EditImage.tsx:272
#~ msgid "Transformations"
@@ -8191,7 +8191,7 @@ msgstr "अनुवाद करें"
#: src/screens/Search/components/ExploreTrendingTopics.tsx:69
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:59
msgid "Trending"
-msgstr ""
+msgstr "रुझान"
#: src/view/com/util/error/ErrorScreen.tsx:103
msgctxt "action"
@@ -8285,7 +8285,7 @@ msgstr "रीपोस्ट पूर्ववत करें"
#: src/view/com/util/post-ctrls/RepostButton.tsx:68
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
-msgstr ""
+msgstr "रीपोस्ट पूर्ववत करें ({0, plural, one {# रीपोस्ट} other {# रीपोस्ट}})"
#: src/view/com/profile/FollowButton.tsx:60
msgctxt "action"
@@ -8307,11 +8307,11 @@ msgstr "खाता अनफ़ॉलो करें"
#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
msgid "Unlike"
-msgstr ""
+msgstr "नापसंद करें"
#: src/view/com/util/post-ctrls/PostCtrls.tsx:305
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
-msgstr ""
+msgstr "नापसंद करें ({0, plural, one {# पसंद} other {# पसंद}})"
#: src/view/screens/ProfileFeed.tsx:576
#~ msgid "Unlike this feed"
@@ -8361,7 +8361,7 @@ msgstr "पिन से हटाएँ"
#: src/screens/Profile/components/ProfileFeedHeader.tsx:519
#: src/screens/Profile/components/ProfileFeedHeader.tsx:526
msgid "Unpin feed"
-msgstr ""
+msgstr "फ़ीड को पिन से हटाएँ"
#: src/screens/Profile/components/ProfileFeedHeader.tsx:309
#: src/screens/Profile/components/ProfileFeedHeader.tsx:311
@@ -8379,7 +8379,7 @@ msgstr "मॉडरेशन सूची को पिन से हटाए
#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
msgid "Unpinned {0} from Home"
-msgstr ""
+msgstr "{0} को होम पिन से हटाया गया"
#: src/view/screens/ProfileList.tsx:352
msgid "Unpinned from your feeds"
@@ -8404,11 +8404,11 @@ msgstr "सूची की सदस्यता छोड़ी गई"
#: src/view/com/composer/Composer.tsx:766
msgid "Unsupported video type"
-msgstr ""
+msgstr "असमर्थित वीडियो प्रकार"
#: src/view/com/composer/videos/SelectVideoBtn.tsx:66
msgid "Unsupported video type: {0}"
-msgstr ""
+msgstr "असमर्थित वीडियो प्रकार: {0}"
#: src/view/com/composer/videos/SelectVideoBtn.tsx:72
#~ msgid "Unsupported video type: {mimeType}"
@@ -8815,7 +8815,7 @@ msgstr "साइट पर जाएँ"
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:80
msgid "Volume"
-msgstr ""
+msgstr "वॉल्यूम"
#: src/components/moderation/LabelPreference.tsx:136
#: src/lib/moderation/useLabelBehaviorDescription.ts:17
@@ -8837,7 +8837,7 @@ msgstr "हमें इस हैशटैग के लिए कोई पर
#: src/screens/Topic.tsx:178
msgid "We couldn't find any results for that topic."
-msgstr ""
+msgstr "उस विषय से जुड़े हमें कोई परिणाम नहीं मिले।"
#: src/screens/Messages/Conversation.tsx:103
msgid "We couldn't load this conversation"
@@ -8951,7 +8951,7 @@ msgstr "आप अपने स्टार्टर पैक को क्य
#: src/screens/Search/components/ExploreTrendingTopics.tsx:79
msgid "What people are posting about."
-msgstr ""
+msgstr "किसके बारे में लोग पोस्ट कर रहे हैं।"
#: src/view/com/auth/SplashScreen.tsx:38
#: src/view/com/auth/SplashScreen.web.tsx:99
@@ -9114,7 +9114,7 @@ msgstr "आप लॉग इन जारी रखने के लिए अ
#: src/screens/Search/components/ExploreTrendingTopics.tsx:136
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:109
msgid "You can update this later from your settings."
-msgstr ""
+msgstr "आप इसे बाद में अपने सेटिंग में बदल सकते हैं।"
#: src/view/com/profile/ProfileFollowers.tsx:94
msgid "You do not have any followers."
@@ -9348,7 +9348,7 @@ msgstr "आपने इस पोस्ट में से एक शब्द
#: src/state/shell/progress-guide.tsx:234
msgid "You've found some people to follow"
-msgstr ""
+msgstr "आपने फ़ॉलो करने के लिए कुछ लोगों को ढूँढा है"
#: src/view/com/posts/FollowingEndOfFeed.tsx:44
msgid "You've reached the end of your feed! Find some more accounts to follow."
@@ -9396,7 +9396,7 @@ msgstr "आपका चयन सहेजा जाएगा, पर सेट
#: src/screens/Settings/components/ChangeHandleDialog.tsx:496
msgid "Your current handle <0>{0}0> will automatically remain reserved for you. You can switch back to it at any time from this account."
-msgstr ""
+msgstr "आपका वर्तमान हैंडल <0>{0}0> आपके लिए आरक्षित रहेगा। आप इस खाते से कभी भी उस हैंडल पर वापस जा सकते हैं।"
#: src/screens/Login/ForgotPasswordForm.tsx:51
#: src/screens/Signup/state.ts:203
diff --git a/src/locale/locales/ia/messages.po b/src/locale/locales/ia/messages.po
new file mode 100644
index 0000000000..d50276168b
--- /dev/null
+++ b/src/locale/locales/ia/messages.po
@@ -0,0 +1,8543 @@
+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: ia\n"
+"Project-Id-Version: bluesky-in-interlingua\n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: 2025-02-10 20:45\n"
+"Last-Translator: \n"
+"Language-Team: Interlingua\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"X-Crowdin-Project: bluesky-in-interlingua\n"
+"X-Crowdin-Project-ID: 739423\n"
+"X-Crowdin-Language: ia\n"
+"X-Crowdin-File: messages.po\n"
+"X-Crowdin-File-ID: 4\n"
+
+#: src/components/ProgressGuide/FollowDialog.tsx:567
+msgid "(active)"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:145
+msgid "(contains embedded content)"
+msgstr ""
+
+#: src/screens/Settings/AccountSettings.tsx:65
+#: src/view/com/modals/VerifyEmail.tsx:150
+msgid "(no email)"
+msgstr "(necun e-mail)"
+
+#: src/lib/hooks/useTimeAgo.ts:156
+msgid "{0, plural, one {# day} other {# days}}"
+msgstr ""
+
+#: src/screens/Profile/ProfileFollowers.tsx:40
+msgid "{0, plural, one {# follower} other {# followers}}"
+msgstr ""
+
+#: src/screens/Profile/ProfileFollows.tsx:40
+msgid "{0, plural, one {# following} other {# following}}"
+msgstr ""
+
+#: src/lib/hooks/useTimeAgo.ts:146
+msgid "{0, plural, one {# hour} other {# hours}}"
+msgstr ""
+
+#: src/components/moderation/LabelsOnMe.tsx:53
+msgid "{0, plural, one {# label has} other {# labels have}} been placed on this account"
+msgstr ""
+
+#: src/components/moderation/LabelsOnMe.tsx:62
+msgid "{0, plural, one {# label has} other {# labels have}} been placed on this content"
+msgstr ""
+
+#: src/screens/Post/PostLikedBy.tsx:41
+msgid "{0, plural, one {# like} other {# likes}}"
+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/screens/Post/PostQuotes.tsx:41
+msgid "{0, plural, one {# quote} other {# quotes}}"
+msgstr ""
+
+#: src/screens/Post/PostRepostedBy.tsx:41
+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:22
+msgid "{0, plural, one {follower} other {followers}}"
+msgstr ""
+
+#: src/components/ProfileHoverCard/index.web.tsx:402
+#: src/screens/Profile/Header/Metrics.tsx:26
+msgid "{0, plural, one {following} other {following}}"
+msgstr ""
+
+#: src/view/com/post-thread/PostThreadItem.tsx:447
+msgid "{0, plural, one {like} other {likes}}"
+msgstr ""
+
+#: src/screens/Profile/Header/Metrics.tsx:58
+msgid "{0, plural, one {post} other {posts}}"
+msgstr ""
+
+#: src/view/com/post-thread/PostThreadItem.tsx:431
+msgid "{0, plural, one {quote} other {quotes}}"
+msgstr ""
+
+#: src/view/com/post-thread/PostThreadItem.tsx:413
+msgid "{0, plural, one {repost} other {reposts}}"
+msgstr ""
+
+#. Pattern: {wordValue} in tags
+#: src/components/dialogs/MutedWords.tsx:475
+msgid "{0} <0>in <1>tags1>0>"
+msgstr ""
+
+#. Pattern: {wordValue} in text, tags
+#: src/components/dialogs/MutedWords.tsx:465
+msgid "{0} <0>in <1>text & tags1>0>"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:219
+msgid "{0} joined this week"
+msgstr ""
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:201
+msgid "{0} of {1}"
+msgstr "{0} de {1}"
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:480
+msgid "{0} people have used this starter pack!"
+msgstr ""
+
+#: src/view/shell/bottom-bar/BottomBar.tsx:207
+msgid "{0} unread items"
+msgstr "{0} elementos non legite"
+
+#: src/view/com/util/UserAvatar.tsx:436
+msgid "{0}'s avatar"
+msgstr "Avatar de {0}"
+
+#: src/screens/StarterPack/Wizard/StepDetails.tsx:67
+msgid "{0}'s favorite feeds and people - join me!"
+msgstr ""
+
+#: src/screens/StarterPack/Wizard/StepDetails.tsx:46
+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/view/shell/desktop/LeftNav.tsx:384
+msgid "{count} unread items"
+msgstr "{count} elementos non legite"
+
+#: src/lib/generate-starterpack.ts:108
+#: src/screens/StarterPack/Wizard/index.tsx:178
+msgid "{displayName}'s Starter Pack"
+msgstr ""
+
+#: src/screens/SignupQueued.tsx:216
+msgid "{estimatedTimeHrs, plural, one {hour} other {hours}}"
+msgstr ""
+
+#: src/screens/SignupQueued.tsx:222
+msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:301
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> followed you"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:327
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your custom feed"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:223
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your post"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:247
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your post"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:351
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> signed up with your starter pack"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:313
+msgid "{firstAuthorLink} followed you"
+msgstr "{firstAuthorLink} te seque"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:290
+msgid "{firstAuthorLink} followed you back"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:339
+msgid "{firstAuthorLink} liked your custom feed"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:235
+msgid "{firstAuthorLink} liked your post"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:259
+msgid "{firstAuthorLink} reposted your post"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:363
+msgid "{firstAuthorLink} signed up with your starter pack"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:294
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you"
+msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altere} other {{formattedAuthorsCount} alteres}} te ha sequite"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:320
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:216
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:240
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:344
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:299
+msgid "{firstAuthorName} followed you"
+msgstr "{firstAuthorName} te ha sequite"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:289
+msgid "{firstAuthorName} followed you back"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:325
+msgid "{firstAuthorName} liked your custom feed"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:221
+msgid "{firstAuthorName} liked your post"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:245
+msgid "{firstAuthorName} reposted your post"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:349
+msgid "{firstAuthorName} signed up with your starter pack"
+msgstr ""
+
+#: src/components/ProfileHoverCard/index.web.tsx:508
+#: src/screens/Profile/Header/Metrics.tsx:49
+msgid "{following} following"
+msgstr ""
+
+#: src/components/dms/dialogs/SearchablePeopleList.tsx:388
+msgid "{handle} can't be messaged"
+msgstr ""
+
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:262
+msgid "{notificationCount} unread items"
+msgstr "{notificationCount} elementos non legite"
+
+#: src/view/shell/Drawer.tsx:453
+msgid "{numUnreadNotifications} unread"
+msgstr "{numUnreadNotifications} non legite"
+
+#: src/view/shell/bottom-bar/BottomBar.tsx:234
+msgid "{numUnreadNotifications} unread items"
+msgstr "{numUnreadNotifications} elementos non legite"
+
+#: 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:449
+msgctxt "profiles"
+msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
+msgstr ""
+
+#: src/screens/StarterPack/Wizard/index.tsx:502
+msgctxt "feeds"
+msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
+msgstr ""
+
+#: src/view/shell/Drawer.tsx:97
+msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
+msgstr ""
+
+#: src/view/shell/Drawer.tsx:108
+msgid "<0>{0}0> {1, plural, one {following} other {following}}"
+msgstr ""
+
+#: src/screens/StarterPack/Wizard/index.tsx:490
+msgid "<0>{0}0> and<1> 1><2>{1} 2>are included in your starter pack"
+msgstr ""
+
+#: src/screens/StarterPack/Wizard/index.tsx:483
+msgid "<0>{0}0> is included in your starter pack"
+msgstr ""
+
+#: src/components/WhoCanReply.tsx:279
+msgid "<0>{0}0> members"
+msgstr ""
+
+#: src/components/dms/DateDivider.tsx:69
+msgid "<0>{date}0> at {time}"
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings.tsx:85
+msgid "<0>Experimental:0> When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time."
+msgstr ""
+
+#: src/screens/StarterPack/Wizard/index.tsx:440
+msgid "<0>You0> and<1> 1><2>{0} 2>are included in your starter pack"
+msgstr ""
+
+#: src/screens/Profile/Header/Handle.tsx:52
+msgid "⚠Invalid Handle"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:193
+msgid "24 hours"
+msgstr "24 horas"
+
+#: src/screens/Login/LoginForm.tsx:260
+msgid "2FA Confirmation"
+msgstr "Confirmation 2FA"
+
+#: src/components/dialogs/MutedWords.tsx:232
+msgid "30 days"
+msgstr "30 dies"
+
+#: src/components/dialogs/MutedWords.tsx:217
+msgid "7 days"
+msgstr "7 dies"
+
+#: src/Navigation.tsx:373
+#: src/screens/Settings/AboutSettings.tsx:28
+#: src/screens/Settings/Settings.tsx:215
+#: src/screens/Settings/Settings.tsx:218
+msgid "About"
+msgstr "A proposito de"
+
+#: src/view/screens/Search/Search.tsx:810
+msgid "Access navigation links and settings"
+msgstr "Accede a ligamines de navigation e configurationes"
+
+#: src/screens/Settings/AccessibilitySettings.tsx:46
+#: src/screens/Settings/Settings.tsx:191
+#: src/screens/Settings/Settings.tsx:194
+msgid "Accessibility"
+msgstr "Accessibilitate"
+
+#: src/Navigation.tsx:333
+msgid "Accessibility Settings"
+msgstr "Configurationes de accessibilitate"
+
+#: src/Navigation.tsx:349
+#: src/screens/Login/LoginForm.tsx:186
+#: src/screens/Settings/AccountSettings.tsx:45
+#: src/screens/Settings/Settings.tsx:153
+#: src/screens/Settings/Settings.tsx:156
+msgid "Account"
+msgstr "Conto"
+
+#: src/view/com/profile/ProfileMenu.tsx:132
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:360
+msgid "Account blocked"
+msgstr "Conto blocate"
+
+#: src/view/com/profile/ProfileMenu.tsx:145
+msgid "Account followed"
+msgstr "Conto sequite"
+
+#: src/view/com/profile/ProfileMenu.tsx:108
+msgid "Account muted"
+msgstr "Conto silentiate"
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:101
+#: src/lib/moderation/useModerationCauseDescription.ts:96
+msgid "Account Muted"
+msgstr "Conto silentiate"
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:87
+msgid "Account Muted by List"
+msgstr "Conto silentiate per lista"
+
+#: src/screens/Settings/Settings.tsx:430
+msgid "Account options"
+msgstr "Optiones de conto"
+
+#: src/screens/Settings/Settings.tsx:466
+msgid "Account removed from quick access"
+msgstr "Conto removite del accesso rapide"
+
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:137
+#: src/view/com/profile/ProfileMenu.tsx:122
+msgid "Account unblocked"
+msgstr "Conto disblocate"
+
+#: src/view/com/profile/ProfileMenu.tsx:157
+msgid "Account unfollowed"
+msgstr "Conto dissequite"
+
+#: src/view/com/profile/ProfileMenu.tsx:98
+msgid "Account unmuted"
+msgstr "Conto dissilentiate"
+
+#: src/components/dialogs/MutedWords.tsx:328
+#: src/view/com/modals/ListAddRemoveUsers.tsx:269
+#: src/view/com/modals/UserAddRemoveLists.tsx:235
+msgid "Add"
+msgstr "Adder"
+
+#: src/screens/StarterPack/Wizard/index.tsx:551
+msgid "Add {0} more to continue"
+msgstr "Adder {0} plus a continuar"
+
+#: src/components/StarterPack/Wizard/WizardListCard.tsx:58
+msgid "Add {displayName} to starter pack"
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:107
+#: src/view/com/composer/labels/LabelsBtn.tsx:112
+msgid "Add a content warning"
+msgstr "Adder un advertimento de contento"
+
+#: src/view/screens/ProfileList.tsx:895
+#: src/view/screens/ProfileList.tsx:913
+msgid "Add a user to this list"
+msgstr "Adder un usator a iste lista"
+
+#: src/components/dialogs/SwitchAccount.tsx:55
+#: src/screens/Deactivated.tsx:191
+msgid "Add account"
+msgstr "Adder conto"
+
+#: src/view/com/composer/GifAltText.tsx:76
+#: src/view/com/composer/GifAltText.tsx:144
+#: src/view/com/composer/GifAltText.tsx:207
+#: src/view/com/composer/photos/Gallery.tsx:169
+#: src/view/com/composer/photos/Gallery.tsx:216
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:88
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:93
+msgid "Add alt text"
+msgstr "Adder texto alternative"
+
+#: src/view/com/composer/videos/SubtitleDialog.tsx:107
+msgid "Add alt text (optional)"
+msgstr "Adder texto alternative (optional)"
+
+#: src/screens/Settings/Settings.tsx:373
+#: src/screens/Settings/Settings.tsx:376
+#: src/view/shell/desktop/LeftNav.tsx:281
+#: src/view/shell/desktop/LeftNav.tsx:285
+msgid "Add another account"
+msgstr "Adder altere conto"
+
+#: src/view/com/composer/Composer.tsx:743
+msgid "Add another post"
+msgstr "Adder un altere publication"
+
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:102
+msgid "Add app password"
+msgstr "Adder contrasigno de application"
+
+#: src/screens/Settings/AppPasswords.tsx:75
+#: src/screens/Settings/AppPasswords.tsx:83
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:111
+msgid "Add App Password"
+msgstr "Adder contrasigno de application"
+
+#: 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 "Adder parolas e etiquettas silentiate"
+
+#: src/view/com/composer/Composer.tsx:1257
+msgid "Add new post"
+msgstr "Adder nove publication"
+
+#: src/view/screens/ProfileList.tsx:903
+#: src/view/screens/ProfileList.tsx:921
+msgid "Add people"
+msgstr "Adder personas"
+
+#: src/screens/Home/NoFeedsPinned.tsx:99
+msgid "Add recommended feeds"
+msgstr "Adder fluxos recommendate"
+
+#: src/screens/StarterPack/Wizard/index.tsx:471
+msgid "Add some feeds to your starter pack!"
+msgstr ""
+
+#: src/screens/Feeds/NoFollowingFeed.tsx:41
+msgid "Add the default feed of only people you follow"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:387
+msgid "Add the following DNS record to your domain:"
+msgstr ""
+
+#: src/components/FeedCard.tsx:295
+msgid "Add this feed to your feeds"
+msgstr "Adde iste fluxo a tu fluxos"
+
+#: src/view/com/profile/ProfileMenu.tsx:243
+#: src/view/com/profile/ProfileMenu.tsx:246
+msgid "Add to Lists"
+msgstr "Adder al listas"
+
+#: src/view/com/feeds/FeedSourceCard.tsx:269
+msgid "Add to my feeds"
+msgstr "Adder a mi fluxos"
+
+#: src/view/com/modals/ListAddRemoveUsers.tsx:192
+#: src/view/com/modals/UserAddRemoveLists.tsx:162
+msgid "Added to list"
+msgstr "Addite al lista"
+
+#: src/view/com/feeds/FeedSourceCard.tsx:125
+msgid "Added to my feeds"
+msgstr "Addite a mi fluxos"
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:160
+msgid "Adult"
+msgstr ""
+
+#: src/components/moderation/ContentHider.tsx:113
+#: src/lib/moderation/useGlobalLabelStrings.ts:34
+#: src/lib/moderation/useModerationCauseDescription.ts:144
+#: src/view/com/composer/labels/LabelsBtn.tsx:128
+msgid "Adult Content"
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:355
+msgid "Adult content can only be enabled via the Web at <0>bsky.app0>."
+msgstr ""
+
+#: src/components/moderation/LabelPreference.tsx:242
+msgid "Adult content is disabled."
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:139
+#: src/view/com/composer/labels/LabelsBtn.tsx:197
+msgid "Adult Content labels"
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:399
+msgid "Advanced"
+msgstr "Avantiate"
+
+#: src/view/screens/Notifications.tsx:86
+msgid "All"
+msgstr "Toto"
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:381
+msgid "All accounts have been followed!"
+msgstr "Tote le contos ha essite sequite!"
+
+#: src/view/screens/Feeds.tsx:702
+msgid "All the feeds you've saved, right in one place."
+msgstr ""
+
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:146
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:153
+msgid "Allow access to your direct messages"
+msgstr "Permitter accesso a tu messages directe"
+
+#: src/screens/Messages/Settings.tsx:70
+#: src/screens/Messages/Settings.tsx:73
+msgid "Allow new messages from"
+msgstr "Permitter nove messages de"
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:343
+msgid "Allow quote posts"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:388
+msgid "Allow replies from:"
+msgstr "Permitter responsas de:"
+
+#: src/screens/Settings/AppPasswords.tsx:200
+msgid "Allows access to direct messages"
+msgstr "Permitte accesso a messages directe"
+
+#: src/screens/Login/ForgotPasswordForm.tsx:171
+#: src/view/com/modals/ChangePassword.tsx:171
+msgid "Already have a code?"
+msgstr "Ha tu jam un codice?"
+
+#: 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:187
+#: src/view/com/util/post-embeds/GifEmbed.tsx:186
+msgid "ALT"
+msgstr ""
+
+#: src/screens/Settings/AccessibilitySettings.tsx:56
+#: src/view/com/composer/GifAltText.tsx:154
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:118
+#: src/view/com/composer/videos/SubtitleDialog.tsx:56
+#: src/view/com/composer/videos/SubtitleDialog.tsx:102
+#: src/view/com/composer/videos/SubtitleDialog.tsx:106
+msgid "Alt text"
+msgstr "Texto alternative"
+
+#: src/view/com/util/post-embeds/GifEmbed.tsx:191
+msgid "Alt Text"
+msgstr "Texto alternative"
+
+#: src/view/com/composer/photos/Gallery.tsx:255
+msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
+msgstr ""
+
+#: 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/screens/Settings/components/DisableEmail2FADialog.tsx:93
+#: src/view/com/modals/VerifyEmail.tsx:132
+msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below."
+msgstr ""
+
+#: src/view/com/modals/ChangeEmail.tsx:114
+msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below."
+msgstr ""
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:91
+msgid "An email has been sent! Please enter the confirmation code included in the email below."
+msgstr ""
+
+#: src/components/dialogs/GifSelect.tsx:265
+msgid "An error has occurred"
+msgstr "Ocurreva un error"
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:420
+msgid "An error occurred"
+msgstr "Ocurreva un error"
+
+#: src/view/com/composer/state/video.ts:398
+msgid "An error occurred while compressing the video."
+msgstr ""
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:332
+msgid "An error occurred while generating your starter pack. Want to try again?"
+msgstr ""
+
+#: src/view/com/util/post-embeds/VideoEmbed.tsx:160
+msgid "An error occurred while loading the video. Please try again later."
+msgstr ""
+
+#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:198
+msgid "An error occurred while loading the video. Please try again."
+msgstr ""
+
+#: src/components/StarterPack/QrCodeDialog.tsx:71
+#: src/components/StarterPack/ShareDialog.tsx:79
+msgid "An error occurred while saving the QR code!"
+msgstr ""
+
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:81
+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:435
+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:41
+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:333
+#: src/components/ProfileCard.tsx:354
+#: src/view/com/profile/FollowButton.tsx:38
+#: src/view/com/profile/FollowButton.tsx:48
+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:157
+#: src/components/moderation/ModerationDetailsDialog.tsx:153
+msgid "an unknown labeler"
+msgstr ""
+
+#: src/components/WhoCanReply.tsx:300
+msgid "and"
+msgstr "e"
+
+#: src/screens/Onboarding/index.tsx:29
+#: src/screens/Onboarding/state.ts:94
+msgid "Animals"
+msgstr "Animales"
+
+#: src/view/com/util/post-embeds/GifEmbed.tsx:149
+msgid "Animated GIF"
+msgstr "GIF animate"
+
+#: src/lib/moderation/useReportOptions.ts:33
+msgid "Anti-Social Behavior"
+msgstr "Comportamento antisocial"
+
+#: src/view/screens/Search/Search.tsx:333
+#: src/view/screens/Search/Search.tsx:334
+msgid "Any language"
+msgstr "Qualcunque lingua"
+
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:48
+msgid "Anybody can interact"
+msgstr "Quicunque pote interager"
+
+#: src/Navigation.tsx:381
+#: src/screens/Settings/AppIconSettings/index.tsx:67
+#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18
+#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23
+msgid "App Icon"
+msgstr "Icone de application"
+
+#: src/screens/Settings/LanguageSettings.tsx:80
+msgid "App Language"
+msgstr "Lingua de app"
+
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:122
+msgid "App Password"
+msgstr "Contrasigno de app"
+
+#: src/screens/Settings/AppPasswords.tsx:147
+msgid "App password deleted"
+msgstr "Contrasigno de application supprimite"
+
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:84
+msgid "App password name must be unique"
+msgstr "Le nomine del contrasigno de application debe esser unic"
+
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:62
+msgid "App password names can only contain letters, numbers, spaces, dashes, and underscores"
+msgstr ""
+
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:80
+msgid "App password names must be at least 4 characters long"
+msgstr ""
+
+#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63
+#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:66
+msgid "App passwords"
+msgstr "Contrasignos de application"
+
+#: src/Navigation.tsx:301
+#: src/screens/Settings/AppPasswords.tsx:51
+msgid "App Passwords"
+msgstr "Contrasignos de application"
+
+#: 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/Takendown.tsx:111
+#: src/screens/Takendown.tsx:144
+msgid "Appeal suspension"
+msgstr ""
+
+#: src/screens/Takendown.tsx:114
+msgid "Appeal Suspension"
+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/Navigation.tsx:341
+#: src/screens/Settings/AppearanceSettings.tsx:85
+#: src/screens/Settings/Settings.tsx:183
+#: src/screens/Settings/Settings.tsx:186
+msgid "Appearance"
+msgstr "Apparentia"
+
+#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47
+#: src/screens/Home/NoFeedsPinned.tsx:93
+msgid "Apply default recommended feeds"
+msgstr ""
+
+#: src/view/com/post-thread/PostThreadItem.tsx:834
+msgid "Archived from {0}"
+msgstr "Archivate desde {0}"
+
+#: src/view/com/post-thread/PostThreadItem.tsx:803
+#: src/view/com/post-thread/PostThreadItem.tsx:842
+msgid "Archived post"
+msgstr "Publication archivate"
+
+#: src/screens/Settings/AppPasswords.tsx:209
+msgid "Are you sure you want to delete the app password \"{0}\"?"
+msgstr ""
+
+#: src/components/dms/MessageMenu.tsx:150
+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:634
+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:42
+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:319
+msgid "Are you sure you want to remove {0} from your feeds?"
+msgstr ""
+
+#: src/components/FeedCard.tsx:312
+msgid "Are you sure you want to remove this from your feeds?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:694
+msgid "Are you sure you'd like to discard this draft?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:868
+msgid "Are you sure you'd like to discard this post?"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:433
+msgid "Are you sure?"
+msgstr "Es tu secur?"
+
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:69
+msgid "Are you writing in <0>{suggestedLanguageName}0>?"
+msgstr ""
+
+#: src/screens/Onboarding/index.tsx:23
+#: src/screens/Onboarding/state.ts:95
+msgid "Art"
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:172
+msgid "Artistic or non-erotic nudity."
+msgstr ""
+
+#: src/screens/Signup/StepHandle.tsx:180
+msgid "At least 3 characters"
+msgstr "Al minus 3 characteres"
+
+#: src/screens/Settings/AccessibilitySettings.tsx:105
+msgid "Autoplay options have moved to the <0>Content and Media settings0>."
+msgstr ""
+
+#: src/screens/Settings/ContentAndMediaSettings.tsx:107
+#: src/screens/Settings/ContentAndMediaSettings.tsx:113
+msgid "Autoplay videos and GIFs"
+msgstr ""
+
+#: src/components/dms/MessagesListHeader.tsx:81
+#: 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:300
+#: src/screens/Login/LoginForm.tsx:306
+#: src/screens/Login/SetNewPasswordForm.tsx:160
+#: src/screens/Login/SetNewPasswordForm.tsx:166
+#: src/screens/Messages/components/ChatDisabled.tsx:133
+#: src/screens/Messages/components/ChatDisabled.tsx:134
+#: src/screens/Profile/Header/Shell.tsx:115
+#: src/screens/Signup/BackNextButtons.tsx:41
+#: src/screens/StarterPack/Wizard/index.tsx:286
+msgid "Back"
+msgstr ""
+
+#: src/view/screens/Lists.tsx:81
+#: src/view/screens/ModerationModlists.tsx:81
+msgid "Before creating a list, you must first verify your email."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:621
+msgid "Before creating a post, you must first verify your email."
+msgstr ""
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:339
+msgid "Before creating a starter pack, you must first verify your email."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:79
+#: src/components/dms/MessageProfileButton.tsx:89
+#: src/screens/Messages/Conversation.tsx:204
+msgid "Before you may message another user, you must first verify your email."
+msgstr ""
+
+#: src/screens/Search/components/ExploreTrendingTopics.tsx:74
+#: src/screens/Search/components/ExploreTrendingVideos.tsx:111
+msgid "BETA"
+msgstr "BETA"
+
+#: src/components/dialogs/BirthDateSettings.tsx:102
+#: src/screens/Settings/AccountSettings.tsx:109
+msgid "Birthday"
+msgstr "Anniversario"
+
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
+#: src/view/com/profile/ProfileMenu.tsx:341
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:744
+msgid "Block"
+msgstr "Blocar"
+
+#: src/components/dms/ConvoMenu.tsx:250
+#: src/components/dms/ConvoMenu.tsx:253
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:603
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:605
+msgid "Block account"
+msgstr "Blocar conto"
+
+#: src/view/com/profile/ProfileMenu.tsx:280
+#: src/view/com/profile/ProfileMenu.tsx:287
+msgid "Block Account"
+msgstr "Blocar conto"
+
+#: src/view/com/profile/ProfileMenu.tsx:324
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:739
+msgid "Block Account?"
+msgstr "Blocar conto?"
+
+#: src/view/screens/ProfileList.tsx:639
+msgid "Block accounts"
+msgstr "Blocar contos"
+
+#: src/components/dms/ReportDialog.tsx:325
+msgid "Block and Delete"
+msgstr ""
+
+#: src/components/dms/ReportDialog.tsx:343
+msgid "Block and/or delete this conversation"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:760
+msgid "Block list"
+msgstr "Blocar lista"
+
+#: src/view/screens/ProfileList.tsx:755
+msgid "Block these accounts?"
+msgstr "Blocar iste contos?"
+
+#: src/components/dms/ReportDialog.tsx:347
+#: src/components/dms/ReportDialog.tsx:350
+msgid "Block user"
+msgstr ""
+
+#: src/components/dms/ReportDialog.tsx:329
+msgid "Block User"
+msgstr ""
+
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:83
+msgid "Blocked"
+msgstr "Blocate"
+
+#: src/screens/Moderation/index.tsx:269
+msgid "Blocked accounts"
+msgstr "Contos blocate"
+
+#: src/Navigation.tsx:157
+#: src/view/screens/ModerationBlockedAccounts.tsx:101
+msgid "Blocked Accounts"
+msgstr "Contos blocate"
+
+#: src/view/com/profile/ProfileMenu.tsx:336
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:741
+msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
+msgstr ""
+
+#: src/view/screens/ModerationBlockedAccounts.tsx:112
+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:464
+msgid "Blocked post."
+msgstr "Blocar publication."
+
+#: src/screens/Profile/Sections/Labels.tsx:174
+msgid "Blocking does not prevent this labeler from placing labels on your account."
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:757
+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:173
+msgid "Blog"
+msgstr "Blog"
+
+#: src/view/com/auth/server-input/index.tsx:132
+#: src/view/com/auth/server-input/index.tsx:133
+msgid "Bluesky"
+msgstr "Bluesky"
+
+#: src/view/com/post-thread/PostThreadItem.tsx:859
+msgid "Bluesky cannot confirm the authenticity of the claimed date."
+msgstr ""
+
+#: src/view/com/auth/server-input/index.tsx:208
+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/view/com/auth/server-input/index.tsx:145
+msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option."
+msgstr ""
+
+#: src/components/ProgressGuide/List.tsx:53
+#: src/components/ProgressGuide/List.tsx:70
+msgid "Bluesky is better with friends!"
+msgstr "Bluesky es melior con amicos!"
+
+#: src/screens/Takendown.tsx:217
+msgid "Bluesky Social Terms of Service"
+msgstr ""
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:299
+msgid "Bluesky will choose a set of recommended accounts from people in your network."
+msgstr ""
+
+#: src/screens/Settings/components/PwiOptOut.tsx:92
+msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private."
+msgstr ""
+
+#: src/screens/Settings/AppIconSettings/index.tsx:99
+msgid "Bluesky+"
+msgstr ""
+
+#: src/screens/Settings/AppIconSettings/index.tsx:102
+msgid "Bluesky+ icons"
+msgstr "Icones de 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:96
+msgid "Books"
+msgstr "Libros"
+
+#: src/components/FeedInterstitials.tsx:370
+msgid "Browse more accounts on the Explore page"
+msgstr ""
+
+#: src/components/FeedInterstitials.tsx:507
+msgid "Browse more feeds on the Explore page"
+msgstr ""
+
+#: src/components/FeedInterstitials.tsx:351
+#: src/components/FeedInterstitials.tsx:354
+#: src/components/FeedInterstitials.tsx:488
+#: src/components/FeedInterstitials.tsx:491
+msgid "Browse more suggestions"
+msgstr ""
+
+#: src/components/FeedInterstitials.tsx:378
+#: src/components/FeedInterstitials.tsx:516
+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/components/TrendingTopics.tsx:176
+msgid "Browse posts about {displayName}"
+msgstr ""
+
+#: src/components/TrendingTopics.tsx:184
+msgid "Browse posts tagged with {displayName}"
+msgstr ""
+
+#: src/components/TrendingTopics.tsx:222
+msgid "Browse topic {displayName}"
+msgstr ""
+
+#: src/view/com/auth/SplashScreen.web.tsx:168
+msgid "Business"
+msgstr ""
+
+#: src/components/LabelingServiceCard/index.tsx:62
+msgid "By {0}"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:447
+msgid "By <0>{0}0>"
+msgstr ""
+
+#: src/screens/Signup/StepInfo/Policies.tsx:81
+msgid "By creating an account you agree to the <0>Privacy Policy0>."
+msgstr ""
+
+#: src/screens/Signup/StepInfo/Policies.tsx:48
+msgid "By creating an account you agree to the <0>Terms of Service0> and <1>Privacy Policy1>."
+msgstr ""
+
+#: src/screens/Signup/StepInfo/Policies.tsx:68
+msgid "By creating an account you agree to the <0>Terms of Service0>."
+msgstr ""
+
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:72
+msgid "Camera"
+msgstr "Camera"
+
+#: src/components/Menu/index.tsx:304
+#: src/components/Prompt.tsx:129
+#: src/components/Prompt.tsx:131
+#: src/screens/Deactivated.tsx:157
+#: src/screens/Profile/Header/EditProfileDialog.tsx:220
+#: src/screens/Profile/Header/EditProfileDialog.tsx:228
+#: src/screens/Settings/AppIconSettings/index.tsx:44
+#: src/screens/Settings/AppIconSettings/index.tsx:225
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:76
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:83
+#: src/screens/Settings/Settings.tsx:260
+#: src/screens/Takendown.tsx:99
+#: src/screens/Takendown.tsx:102
+#: src/view/com/composer/Composer.tsx:931
+#: src/view/com/modals/ChangeEmail.tsx:213
+#: src/view/com/modals/ChangeEmail.tsx:215
+#: src/view/com/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:213
+#: src/view/screens/Search/Search.tsx:839
+#: src/view/shell/desktop/LeftNav.tsx:209
+msgid "Cancel"
+msgstr "Cancellar"
+
+#: src/view/com/modals/CreateOrEditList.tsx:340
+#: src/view/com/modals/DeleteAccount.tsx:170
+#: src/view/com/modals/DeleteAccount.tsx:278
+msgctxt "action"
+msgid "Cancel"
+msgstr "Cancellar"
+
+#: src/view/com/modals/DeleteAccount.tsx:166
+#: src/view/com/modals/DeleteAccount.tsx:274
+msgid "Cancel account deletion"
+msgstr "Cancellar deletion de conto"
+
+#: 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 "Cancellar edition de profilo"
+
+#: src/view/com/util/post-ctrls/RepostButton.tsx:207
+msgid "Cancel quote post"
+msgstr ""
+
+#: src/screens/Deactivated.tsx:151
+msgid "Cancel reactivation and log out"
+msgstr ""
+
+#: src/view/com/modals/ListAddRemoveUsers.tsx:88
+#: src/view/screens/Search/Search.tsx:831
+msgid "Cancel search"
+msgstr "Cancellar cerca"
+
+#: src/view/com/modals/LinkWarning.tsx:106
+msgid "Cancels opening the linked website"
+msgstr ""
+
+#: src/state/shell/composer/index.tsx:83
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:117
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:158
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:194
+msgid "Cannot interact with a blocked user"
+msgstr ""
+
+#: src/view/com/composer/videos/SubtitleDialog.tsx:133
+msgid "Captions (.vtt)"
+msgstr "Subtitulos (.vtt)"
+
+#: src/view/com/composer/videos/SubtitleDialog.tsx:56
+msgid "Captions & alt text"
+msgstr "Subtitulos e texto alternative"
+
+#: src/screens/Settings/components/Email2FAToggle.tsx:60
+#: src/view/com/modals/VerifyEmail.tsx:160
+msgid "Change"
+msgstr "Cambiar"
+
+#: src/screens/Settings/AppIconSettings/index.tsx:39
+msgid "Change app icon"
+msgstr ""
+
+#: src/screens/Settings/AppIconSettings/index.tsx:38
+#: src/screens/Settings/AppIconSettings/index.tsx:221
+msgid "Change app icon to \"{0}\""
+msgstr ""
+
+#: src/screens/Settings/AccountSettings.tsx:97
+#: src/screens/Settings/AccountSettings.tsx:101
+msgid "Change email"
+msgstr "Cambiar e-mail"
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:162
+#: src/components/dialogs/VerifyEmailDialog.tsx:187
+msgid "Change email address"
+msgstr "Cambiar adresse de e-mail"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:92
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:96
+msgid "Change Handle"
+msgstr "Cambiar nomine de usator"
+
+#: src/view/com/modals/VerifyEmail.tsx:155
+msgid "Change my email"
+msgstr "Cambiar mi e-mail"
+
+#: src/view/com/modals/ChangePassword.tsx:142
+msgid "Change Password"
+msgstr "Cambiar contrasigno"
+
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:82
+msgid "Change post language to {suggestedLanguageName}"
+msgstr ""
+
+#: src/view/com/modals/ChangeEmail.tsx:104
+msgid "Change Your Email"
+msgstr "Cambiar tu e-mail"
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:171
+msgid "Change your email address"
+msgstr "Cambiar tu adresse de e-mail"
+
+#: src/Navigation.tsx:398
+#: src/view/shell/bottom-bar/BottomBar.tsx:204
+#: src/view/shell/desktop/LeftNav.tsx:530
+#: src/view/shell/Drawer.tsx:422
+msgid "Chat"
+msgstr "Chat"
+
+#: src/components/dms/ConvoMenu.tsx:179
+msgid "Chat muted"
+msgstr "Chat silentiate"
+
+#: src/components/dms/ConvoMenu.tsx:78
+#: src/components/dms/MessageMenu.tsx:81
+#: src/Navigation.tsx:403
+#: src/screens/Messages/ChatList.tsx:253
+msgid "Chat settings"
+msgstr "Configurationes de Chat"
+
+#: src/screens/Messages/Settings.tsx:62
+msgid "Chat Settings"
+msgstr "Configurationes de Chat"
+
+#: src/components/dms/ConvoMenu.tsx:181
+msgid "Chat unmuted"
+msgstr "Chat dissilentiate"
+
+#: src/screens/SignupQueued.tsx:78
+#: src/screens/SignupQueued.tsx:82
+msgid "Check my status"
+msgstr "Verificar mi stato"
+
+#: src/screens/Login/LoginForm.tsx:293
+msgid "Check your email for a login code and enter it here."
+msgstr ""
+
+#: src/view/com/modals/DeleteAccount.tsx:213
+msgid "Check your inbox for an email with the confirmation code to enter below:"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
+msgid "Choose domain verification method"
+msgstr "Elige methodo de verification de dominio"
+
+#: src/screens/StarterPack/Wizard/index.tsx:194
+msgid "Choose Feeds"
+msgstr ""
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:307
+msgid "Choose for me"
+msgstr "Elige por me"
+
+#: src/screens/StarterPack/Wizard/index.tsx:190
+msgid "Choose People"
+msgstr "Elige personas"
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:115
+msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences."
+msgstr ""
+
+#: src/screens/Onboarding/StepFinished.tsx:287
+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 "Elige iste color como tu avatar"
+
+#: src/view/com/auth/server-input/index.tsx:126
+msgid "Choose your account provider"
+msgstr ""
+
+#: src/view/screens/Feeds.tsx:728
+#: src/view/screens/Search/Explore.tsx:427
+msgid "Choose your own timeline! Feeds built by the community help you find content you love."
+msgstr ""
+
+#: src/screens/Signup/StepInfo/index.tsx:195
+msgid "Choose your password"
+msgstr "Elige tu contrasigno"
+
+#: src/screens/Signup/index.tsx:142
+msgid "Choose your username"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:351
+msgid "Clear all storage data"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:353
+msgid "Clear all storage data (restart after this)"
+msgstr ""
+
+#: src/components/forms/SearchInput.tsx:70
+msgid "Clear search query"
+msgstr "Nettar texto a cercar"
+
+#: src/view/screens/Support.tsx:41
+msgid "click here"
+msgstr "clicca hic"
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:336
+msgid "Click to disable quote posts of this post."
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:337
+msgid "Click to enable quote posts of this post."
+msgstr ""
+
+#: src/components/RichTextTag.tsx:54
+msgid "Click to open tag menu for {tag}"
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:241
+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:281
+#: src/components/dialogs/VerifyEmailDialog.tsx:289
+#: src/components/dms/dialogs/SearchablePeopleList.tsx:265
+#: src/components/dms/ReportDialog.tsx:372
+#: src/components/dms/ReportDialog.tsx:381
+#: src/components/NewskieDialog.tsx:146
+#: src/components/NewskieDialog.tsx:153
+#: src/components/ProgressGuide/FollowDialog.tsx:429
+#: 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 "Clauder"
+
+#: src/components/Dialog/index.web.tsx:110
+#: src/components/Dialog/index.web.tsx:252
+msgid "Close active dialog"
+msgstr "Clauder quadro de dialogo active"
+
+#: src/screens/Login/PasswordUpdatedForm.tsx:31
+msgid "Close alert"
+msgstr ""
+
+#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36
+msgid "Close bottom drawer"
+msgstr ""
+
+#: src/components/dialogs/GifSelect.tsx:275
+msgid "Close dialog"
+msgstr "Clauder quadro de dialogo"
+
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
+msgid "Close emoji picker"
+msgstr ""
+
+#: src/components/dialogs/GifSelect.tsx:169
+msgid "Close GIF dialog"
+msgstr "Clauder quadro de dialogo de GIF"
+
+#: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:31
+msgid "Close image"
+msgstr "Clauder imagine"
+
+#: src/view/com/lightbox/Lightbox.web.tsx:109
+msgid "Close image viewer"
+msgstr "Clauder visualisator de imagine"
+
+#: src/view/shell/index.web.tsx:69
+msgid "Close navigation footer"
+msgstr ""
+
+#: src/components/Menu/index.tsx:298
+msgid "Close this dialog"
+msgstr "Clauder iste quadro de dialogo"
+
+#: src/view/shell/index.web.tsx:70
+msgid "Closes bottom navigation bar"
+msgstr ""
+
+#: src/screens/Login/PasswordUpdatedForm.tsx:32
+msgid "Closes password update alert"
+msgstr ""
+
+#: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:32
+msgid "Closes viewer for header image"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:401
+msgid "Collapse list of users"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:594
+msgid "Collapses list of users for a given notification"
+msgstr ""
+
+#: src/screens/Settings/AppearanceSettings.tsx:93
+msgid "Color mode"
+msgstr ""
+
+#: src/screens/Onboarding/index.tsx:38
+#: src/screens/Onboarding/state.ts:97
+msgid "Comedy"
+msgstr ""
+
+#: src/screens/Onboarding/index.tsx:24
+#: src/screens/Onboarding/state.ts:98
+msgid "Comics"
+msgstr ""
+
+#: src/Navigation.tsx:291
+#: src/view/screens/CommunityGuidelines.tsx:34
+msgid "Community Guidelines"
+msgstr ""
+
+#: src/screens/Onboarding/StepFinished.tsx:300
+msgid "Complete onboarding and start using your account"
+msgstr ""
+
+#: src/screens/Signup/index.tsx:144
+msgid "Complete the challenge"
+msgstr ""
+
+#: src/view/shell/desktop/LeftNav.tsx:496
+msgid "Compose new post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:834
+msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length"
+msgstr ""
+
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:34
+msgid "Compose reply"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1651
+msgid "Compressing video..."
+msgstr ""
+
+#: src/components/moderation/LabelPreference.tsx:82
+msgid "Configure content filtering setting for category: {name}"
+msgstr ""
+
+#: src/components/moderation/LabelPreference.tsx:244
+msgid "Configured in <0>moderation settings0>."
+msgstr ""
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:253
+#: src/components/dialogs/VerifyEmailDialog.tsx:260
+#: src/components/dialogs/VerifyEmailDialog.tsx:283
+#: src/components/Prompt.tsx:172
+#: src/components/Prompt.tsx:175
+#: src/screens/Settings/components/DisableEmail2FADialog.tsx:185
+#: src/screens/Settings/components/DisableEmail2FADialog.tsx:188
+#: src/view/com/modals/VerifyEmail.tsx:239
+#: src/view/com/modals/VerifyEmail.tsx:241
+msgid "Confirm"
+msgstr "Confirmar"
+
+#: src/view/com/modals/ChangeEmail.tsx:188
+#: src/view/com/modals/ChangeEmail.tsx:190
+msgid "Confirm Change"
+msgstr "Confirmar cambiamentos"
+
+#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:34
+msgid "Confirm content language settings"
+msgstr "Confirmar configurationes de lingua de contento"
+
+#: src/view/com/modals/DeleteAccount.tsx:264
+msgid "Confirm delete account"
+msgstr "Confirmar deletion de conto"
+
+#: src/screens/Moderation/index.tsx:303
+msgid "Confirm your age:"
+msgstr "Confirma tu etate:"
+
+#: src/screens/Moderation/index.tsx:294
+msgid "Confirm your birthdate"
+msgstr ""
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:214
+#: src/screens/Login/LoginForm.tsx:266
+#: src/screens/Settings/components/DisableEmail2FADialog.tsx:144
+#: src/screens/Settings/components/DisableEmail2FADialog.tsx:150
+#: src/view/com/modals/ChangeEmail.tsx:152
+#: src/view/com/modals/DeleteAccount.tsx:220
+#: src/view/com/modals/DeleteAccount.tsx:226
+#: src/view/com/modals/VerifyEmail.tsx:173
+msgid "Confirmation code"
+msgstr "Codice de confirmation"
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:210
+msgid "Confirmation Code"
+msgstr "Codice de confirmation"
+
+#: src/screens/Login/LoginForm.tsx:327
+msgid "Connecting..."
+msgstr "Connexion in corso..."
+
+#: src/screens/Signup/index.tsx:175
+#: src/screens/Signup/index.tsx:178
+msgid "Contact support"
+msgstr "Contactar supporto"
+
+#: src/screens/Settings/ContentAndMediaSettings.tsx:50
+msgid "Content & Media"
+msgstr ""
+
+#: src/screens/Settings/AccessibilitySettings.tsx:109
+#: src/screens/Settings/Settings.tsx:175
+#: src/screens/Settings/Settings.tsx:178
+msgid "Content and media"
+msgstr "Contento e multimedia"
+
+#: src/Navigation.tsx:365
+msgid "Content and Media"
+msgstr "Contento e multimedia"
+
+#: src/lib/moderation/useGlobalLabelStrings.ts:18
+msgid "Content Blocked"
+msgstr "Contento blocate"
+
+#: src/screens/Moderation/index.tsx:287
+msgid "Content filters"
+msgstr "Filtros de contento"
+
+#: src/screens/Settings/LanguageSettings.tsx:251
+#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:76
+msgid "Content Languages"
+msgstr "Linguas de contento"
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:80
+#: src/lib/moderation/useModerationCauseDescription.ts:80
+msgid "Content Not Available"
+msgstr "Contento non disponibile"
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:48
+#: src/components/moderation/ScreenHider.tsx:93
+#: src/lib/moderation/useGlobalLabelStrings.ts:22
+#: src/lib/moderation/useModerationCauseDescription.ts:43
+msgid "Content Warning"
+msgstr "Advertimento de contento"
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:60
+msgid "Content warnings"
+msgstr "Advertimentos de contento"
+
+#: src/components/Menu/index.web.tsx:82
+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 "Continuar"
+
+#: src/components/AccountList.tsx:121
+msgid "Continue as {0} (currently signed in)"
+msgstr ""
+
+#: src/view/com/post-thread/PostThreadLoadMore.tsx:60
+msgid "Continue thread..."
+msgstr ""
+
+#: src/screens/Onboarding/StepInterests/index.tsx:241
+#: src/screens/Onboarding/StepProfile/index.tsx:275
+#: src/screens/Signup/BackNextButtons.tsx:60
+msgid "Continue to next step"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:179
+msgid "Conversation deleted"
+msgstr "Conversation supprimite"
+
+#: src/screens/Onboarding/index.tsx:41
+msgid "Cooking"
+msgstr "Cocina"
+
+#: src/view/com/modals/InviteCodes.tsx:183
+msgid "Copied"
+msgstr "Copiate"
+
+#: src/screens/Settings/AboutSettings.tsx:73
+msgid "Copied build version to clipboard"
+msgstr "Version de compilation copiate al area de transferentia"
+
+#: src/components/dms/MessageMenu.tsx:57
+#: src/lib/sharing.ts:25
+#: src/view/com/modals/InviteCodes.tsx:153
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:235
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:393
+msgid "Copied to clipboard"
+msgstr "Copiate al area de transferentia"
+
+#: src/components/dialogs/Embed.tsx:136
+#: src/screens/Settings/components/CopyButton.tsx:66
+msgid "Copied!"
+msgstr "Copiate!"
+
+#: src/components/StarterPack/QrCodeDialog.tsx:175
+msgid "Copy"
+msgstr "Copiar"
+
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:196
+msgid "Copy App Password"
+msgstr "Copiar contrasigno de application"
+
+#: src/screens/Settings/AboutSettings.tsx:68
+msgid "Copy build version to clipboard"
+msgstr "Copiar version de compilation al area de transferentia"
+
+#: src/components/dialogs/Embed.tsx:122
+#: src/components/dialogs/Embed.tsx:141
+msgid "Copy code"
+msgstr "Copiar codice"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
+msgid "Copy DID"
+msgstr "Copiar DID"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:405
+msgid "Copy host"
+msgstr ""
+
+#: src/components/StarterPack/ShareDialog.tsx:123
+msgid "Copy link"
+msgstr "Copiar ligamine"
+
+#: src/components/StarterPack/ShareDialog.tsx:130
+msgid "Copy Link"
+msgstr "Copiar ligamine"
+
+#: src/view/screens/ProfileList.tsx:483
+msgid "Copy link to list"
+msgstr "Copiar ligamine al lista"
+
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:434
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:443
+msgid "Copy link to post"
+msgstr "Copiar ligamine al publication"
+
+#: src/components/dms/MessageMenu.tsx:110
+#: src/components/dms/MessageMenu.tsx:112
+msgid "Copy message text"
+msgstr "Copiar message de texto"
+
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:412
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:414
+msgid "Copy post text"
+msgstr "Copiar texto de publication"
+
+#: src/components/StarterPack/QrCodeDialog.tsx:169
+msgid "Copy QR code"
+msgstr "Copiar codice QR"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:426
+msgid "Copy TXT record value"
+msgstr ""
+
+#: src/Navigation.tsx:296
+#: src/view/screens/CopyrightPolicy.tsx:31
+msgid "Copyright Policy"
+msgstr "Politica de Copyright"
+
+#: src/components/dms/LeaveConvoPrompt.tsx:33
+#: src/components/dms/ReportDialog.tsx:308
+msgid "Could not leave chat"
+msgstr ""
+
+#: src/screens/Profile/ProfileFeed/index.tsx:80
+msgid "Could not load feed"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:1000
+msgid "Could not load list"
+msgstr ""
+
+#: src/components/dms/ConvoMenu.tsx:185
+msgid "Could not mute chat"
+msgstr ""
+
+#: src/view/com/composer/videos/VideoPreview.web.tsx:66
+msgid "Could not process your video"
+msgstr ""
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:289
+msgid "Create"
+msgstr "Crear"
+
+#: src/components/StarterPack/QrCodeDialog.tsx:153
+msgid "Create a QR code for a starter pack"
+msgstr ""
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:167
+#: src/components/StarterPack/ProfileStarterPacks.tsx:270
+#: src/Navigation.tsx:428
+msgid "Create a starter pack"
+msgstr ""
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:251
+msgid "Create a starter pack for me"
+msgstr ""
+
+#: src/view/com/auth/SplashScreen.tsx:55
+#: src/view/com/auth/SplashScreen.web.tsx:117
+#: src/view/shell/bottom-bar/BottomBar.tsx:304
+#: src/view/shell/bottom-bar/BottomBar.tsx:309
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:202
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:207
+#: src/view/shell/NavSignupCard.tsx:47
+#: src/view/shell/NavSignupCard.tsx:52
+msgid "Create account"
+msgstr ""
+
+#: src/screens/Signup/index.tsx:93
+msgid "Create Account"
+msgstr "Crear conto"
+
+#: src/components/dialogs/Signin.tsx:86
+#: src/components/dialogs/Signin.tsx:88
+msgid "Create an account"
+msgstr "Crear un conto"
+
+#: src/screens/Onboarding/StepProfile/index.tsx:292
+msgid "Create an avatar instead"
+msgstr ""
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:174
+msgid "Create another"
+msgstr ""
+
+#: src/view/com/auth/SplashScreen.tsx:47
+#: src/view/com/auth/SplashScreen.web.tsx:109
+msgid "Create new account"
+msgstr "Crear nove conto"
+
+#: src/components/ReportDialog/SelectReportOptionView.tsx:99
+msgid "Create report for {0}"
+msgstr ""
+
+#: src/screens/Settings/AppPasswords.tsx:174
+msgid "Created {0}"
+msgstr "Create {0}"
+
+#: src/screens/List/ListHiddenScreen.tsx:127
+msgid "Creator has been blocked"
+msgstr "Le creator ha essite blocate"
+
+#: src/screens/Onboarding/index.tsx:26
+#: src/screens/Onboarding/state.ts:99
+msgid "Culture"
+msgstr ""
+
+#: src/view/com/auth/server-input/index.tsx:138
+#: src/view/com/auth/server-input/index.tsx:139
+msgid "Custom"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:102
+msgid "Customize who can interact with this post."
+msgstr ""
+
+#: src/screens/Settings/AppearanceSettings.tsx:105
+#: src/screens/Settings/AppearanceSettings.tsx:126
+msgid "Dark"
+msgstr "Obscur"
+
+#: src/view/screens/Debug.tsx:69
+msgid "Dark mode"
+msgstr "Modo obscur"
+
+#: src/screens/Settings/AppearanceSettings.tsx:118
+msgid "Dark theme"
+msgstr "Thema obscur"
+
+#: src/screens/Signup/StepInfo/index.tsx:216
+msgid "Date of birth"
+msgstr ""
+
+#: src/screens/Settings/AccountSettings.tsx:146
+#: src/screens/Settings/AccountSettings.tsx:151
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
+msgid "Deactivate account"
+msgstr "Disactivar conto"
+
+#: src/screens/Settings/Settings.tsx:332
+msgid "Debug Moderation"
+msgstr ""
+
+#: src/view/screens/Debug.tsx:89
+msgid "Debug panel"
+msgstr "Pannello de depuration"
+
+#: src/screens/Settings/AppearanceSettings.tsx:168
+msgid "Default"
+msgstr "Predefinite"
+
+#: src/screens/Settings/AppIconSettings/index.tsx:75
+msgid "Default icons"
+msgstr "Icones predefinite"
+
+#: src/components/dms/MessageMenu.tsx:152
+#: src/screens/Settings/AppPasswords.tsx:212
+#: src/screens/StarterPack/StarterPackScreen.tsx:586
+#: src/screens/StarterPack/StarterPackScreen.tsx:665
+#: src/screens/StarterPack/StarterPackScreen.tsx:745
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:661
+#: src/view/screens/ProfileList.tsx:739
+msgid "Delete"
+msgstr "Supprimer"
+
+#: src/screens/Settings/AccountSettings.tsx:156
+#: src/screens/Settings/AccountSettings.tsx:161
+msgid "Delete account"
+msgstr "Supprimer conto"
+
+#: src/view/com/modals/DeleteAccount.tsx:101
+msgid "Delete Account <0>\"0><1>{0}1><2>\"2>"
+msgstr ""
+
+#: src/screens/Settings/AppPasswords.tsx:187
+msgid "Delete app password"
+msgstr "Supprimer contrasigno de application"
+
+#: src/screens/Settings/AppPasswords.tsx:207
+msgid "Delete app password?"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:339
+msgid "Delete chat declaration record"
+msgstr ""
+
+#: src/components/dms/ReportDialog.tsx:353
+#: src/components/dms/ReportDialog.tsx:356
+msgid "Delete conversation"
+msgstr ""
+
+#: src/components/dms/ReportDialog.tsx:327
+msgid "Delete Conversation"
+msgstr ""
+
+#: src/components/dms/MessageMenu.tsx:124
+msgid "Delete for me"
+msgstr "Supprimer pro me"
+
+#: src/view/screens/ProfileList.tsx:526
+msgid "Delete List"
+msgstr ""
+
+#: src/components/dms/MessageMenu.tsx:148
+msgid "Delete message"
+msgstr ""
+
+#: src/components/dms/MessageMenu.tsx:122
+msgid "Delete message for me"
+msgstr ""
+
+#: src/view/com/modals/DeleteAccount.tsx:267
+msgid "Delete my account"
+msgstr "Supprimer mi conto"
+
+#: src/view/com/composer/Composer.tsx:842
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:642
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:644
+msgid "Delete post"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:580
+#: src/screens/StarterPack/StarterPackScreen.tsx:736
+msgid "Delete starter pack"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:631
+msgid "Delete starter pack?"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:734
+msgid "Delete this list?"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:656
+msgid "Delete this post?"
+msgstr ""
+
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:93
+msgid "Deleted"
+msgstr "Supprimite"
+
+#: src/components/dms/MessagesListHeader.tsx:154
+#: src/screens/Messages/components/ChatListItem.tsx:113
+msgid "Deleted Account"
+msgstr "Conto supprimite"
+
+#: src/view/com/post-thread/PostThread.tsx:450
+msgid "Deleted post."
+msgstr ""
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:344
+#: src/view/com/modals/CreateOrEditList.tsx:280
+#: src/view/com/modals/CreateOrEditList.tsx:301
+#: src/view/com/modals/EditProfile.tsx:193
+#: src/view/com/modals/EditProfile.tsx:205
+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/PostDropdownBtnMenuItems.tsx:566
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:576
+msgid "Detach quote"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:719
+msgid "Detach quote post?"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:242
+#: src/screens/Settings/Settings.tsx:245
+msgid "Developer options"
+msgstr ""
+
+#: src/components/WhoCanReply.tsx:175
+msgid "Dialog: adjust who can interact with this post"
+msgstr ""
+
+#: src/screens/Settings/AppearanceSettings.tsx:122
+msgid "Dim"
+msgstr ""
+
+#: src/screens/Settings/components/DisableEmail2FADialog.tsx:89
+msgid "Disable Email 2FA"
+msgstr ""
+
+#: src/screens/Settings/AccessibilitySettings.tsx:91
+#: src/screens/Settings/AccessibilitySettings.tsx:96
+msgid "Disable haptic feedback"
+msgstr ""
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:386
+msgid "Disable subtitles"
+msgstr "Disactivar subtitulos"
+
+#: src/lib/moderation/useLabelBehaviorDescription.ts:32
+#: src/lib/moderation/useLabelBehaviorDescription.ts:42
+#: src/lib/moderation/useLabelBehaviorDescription.ts:68
+#: src/screens/Messages/Settings.tsx:139
+#: src/screens/Messages/Settings.tsx:142
+#: src/screens/Moderation/index.tsx:345
+msgid "Disabled"
+msgstr ""
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:84
+#: src/view/com/composer/Composer.tsx:696
+#: src/view/com/composer/Composer.tsx:875
+msgid "Discard"
+msgstr ""
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:81
+msgid "Discard changes?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:693
+msgid "Discard draft?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:867
+msgid "Discard post?"
+msgstr ""
+
+#: src/screens/Settings/components/PwiOptOut.tsx:80
+#: src/screens/Settings/components/PwiOptOut.tsx:84
+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:425
+msgid "Discover new feeds"
+msgstr ""
+
+#: src/view/screens/Feeds.tsx:725
+msgid "Discover New Feeds"
+msgstr ""
+
+#: src/components/Dialog/index.tsx:313
+msgid "Dismiss"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1575
+msgid "Dismiss error"
+msgstr ""
+
+#: src/components/ProgressGuide/List.tsx:42
+msgid "Dismiss getting started guide"
+msgstr ""
+
+#: src/components/interstitials/TrendingVideos.tsx:92
+msgid "Dismiss this section"
+msgstr ""
+
+#: src/screens/Settings/AccessibilitySettings.tsx:71
+#: src/screens/Settings/AccessibilitySettings.tsx:76
+msgid "Display larger alt text badges"
+msgstr ""
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:314
+#: src/screens/Profile/Header/EditProfileDialog.tsx:320
+#: src/screens/Profile/Header/EditProfileDialog.tsx:351
+#: src/view/com/modals/EditProfile.tsx:187
+msgid "Display name"
+msgstr ""
+
+#: src/view/com/modals/EditProfile.tsx:175
+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/screens/Settings/components/ChangeHandleDialog.tsx:373
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
+msgid "DNS Panel"
+msgstr ""
+
+#: 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:163
+msgid "Doesn't begin or end with a hyphen"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:488
+msgid "Domain verified!"
+msgstr ""
+
+#: src/components/dialogs/BirthDateSettings.tsx:114
+#: src/components/dialogs/BirthDateSettings.tsx:120
+#: src/components/dms/ReportDialog.tsx:323
+#: src/components/forms/DateField/index.tsx:87
+#: src/components/forms/DateField/index.tsx:93
+#: src/screens/Onboarding/StepProfile/index.tsx:330
+#: src/screens/Onboarding/StepProfile/index.tsx:333
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:215
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:222
+#: src/view/com/auth/server-input/index.tsx:228
+#: src/view/com/auth/server-input/index.tsx:229
+#: src/view/com/composer/labels/LabelsBtn.tsx:224
+#: src/view/com/composer/labels/LabelsBtn.tsx:231
+#: src/view/com/composer/videos/SubtitleDialog.tsx:169
+#: src/view/com/composer/videos/SubtitleDialog.tsx:179
+#: src/view/com/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:42
+msgid "Done{extraText}"
+msgstr ""
+
+#: src/components/Dialog/index.tsx:314
+msgid "Double tap to close the dialog"
+msgstr ""
+
+#: src/screens/VideoFeed/index.tsx:1039
+msgid "Double tap to like"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317
+msgid "Download Bluesky"
+msgstr ""
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:77
+#: src/screens/Settings/components/ExportCarDialog.tsx:82
+msgid "Download CAR file"
+msgstr ""
+
+#: src/view/com/composer/text-input/TextInput.web.tsx:342
+msgid "Drop to add images"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:153
+msgid "Duration:"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:211
+msgid "e.g. alice"
+msgstr ""
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:321
+msgid "e.g. Alice Lastname"
+msgstr ""
+
+#: src/view/com/modals/EditProfile.tsx:180
+msgid "e.g. Alice Roberts"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:357
+msgid "e.g. alice.com"
+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: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/Settings/AccountSettings.tsx:112
+#: src/screens/StarterPack/StarterPackScreen.tsx:575
+#: src/screens/StarterPack/Wizard/index.tsx:534
+#: src/screens/StarterPack/Wizard/index.tsx:541
+msgid "Edit"
+msgstr ""
+
+#: src/view/com/lists/ListMembers.tsx:142
+msgctxt "action"
+msgid "Edit"
+msgstr ""
+
+#: src/view/com/util/UserAvatar.tsx:348
+#: 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:194
+msgid "Edit image"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:623
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:636
+msgid "Edit interaction settings"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:514
+msgid "Edit list details"
+msgstr ""
+
+#: src/view/com/modals/CreateOrEditList.tsx:230
+msgid "Edit Moderation List"
+msgstr ""
+
+#: src/Navigation.tsx:306
+#: src/view/screens/Feeds.tsx:515
+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:69
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:238
+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:186
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179
+msgid "Edit profile"
+msgstr ""
+
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:189
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182
+msgid "Edit Profile"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:567
+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:433
+msgid "Edit your starter pack"
+msgstr ""
+
+#: src/screens/Onboarding/index.tsx:31
+#: src/screens/Onboarding/state.ts:101
+msgid "Education"
+msgstr ""
+
+#: src/screens/List/ListHiddenScreen.tsx:141
+msgid "Either the creator of this list has blocked you or you have blocked the creator."
+msgstr ""
+
+#: src/screens/Settings/AccountSettings.tsx:60
+#: src/screens/Signup/StepInfo/index.tsx:164
+#: src/view/com/modals/ChangeEmail.tsx:136
+msgid "Email"
+msgstr ""
+
+#: src/screens/Settings/components/DisableEmail2FADialog.tsx:64
+msgid "Email 2FA disabled"
+msgstr ""
+
+#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:54
+msgid "Email 2FA enabled"
+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/components/dialogs/Embed.tsx:113
+msgid "Embed HTML code"
+msgstr ""
+
+#: src/components/dialogs/Embed.tsx:97
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:451
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:453
+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/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx:57
+msgid "Embedded video player"
+msgstr ""
+
+#: src/screens/Settings/components/Email2FAToggle.tsx:56
+#: src/screens/Settings/components/Email2FAToggle.tsx:60
+msgid "Enable"
+msgstr "Habilitar"
+
+#: src/components/dialogs/EmbedConsent.tsx:100
+msgid "Enable {0} only"
+msgstr "Habilitar {0} solmente"
+
+#: src/screens/Moderation/index.tsx:332
+msgid "Enable adult content"
+msgstr "Habilitar contento pro adultos"
+
+#: src/screens/Settings/components/Email2FAToggle.tsx:53
+msgid "Enable Email 2FA"
+msgstr ""
+
+#: src/components/dialogs/EmbedConsent.tsx:81
+#: src/components/dialogs/EmbedConsent.tsx:88
+msgid "Enable external media"
+msgstr ""
+
+#: src/screens/Settings/ExternalMediaPreferences.tsx:49
+msgid "Enable media players for"
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings.tsx:74
+#: src/screens/Settings/NotificationSettings.tsx:77
+msgid "Enable priority notifications"
+msgstr ""
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:387
+msgid "Enable subtitles"
+msgstr "Activar subtitulos"
+
+#: src/components/dialogs/EmbedConsent.tsx:93
+msgid "Enable this source only"
+msgstr ""
+
+#: src/screens/Settings/ContentAndMediaSettings.tsx:123
+#: src/screens/Settings/ContentAndMediaSettings.tsx:137
+msgid "Enable trending topics"
+msgstr ""
+
+#: src/screens/Settings/ContentAndMediaSettings.tsx:158
+msgid "Enable trending videos in your Discover feed"
+msgstr ""
+
+#: src/screens/Settings/ContentAndMediaSettings.tsx:144
+msgid "Enable trending videos in your Discover feed."
+msgstr ""
+
+#: src/screens/Messages/Settings.tsx:130
+#: src/screens/Messages/Settings.tsx:133
+#: src/screens/Moderation/index.tsx:343
+msgid "Enabled"
+msgstr "Habilitate"
+
+#: src/screens/Profile/Sections/Feed.tsx:116
+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/screens/Login/SetNewPasswordForm.tsx:139
+msgid "Enter a password"
+msgstr "Entra un contrasigno"
+
+#: src/components/dialogs/MutedWords.tsx:127
+#: src/components/dialogs/MutedWords.tsx:128
+msgid "Enter a word or tag"
+msgstr "Entra un parola o etiquetta"
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:89
+msgid "Enter Code"
+msgstr "Entra codice"
+
+#: src/view/com/modals/VerifyEmail.tsx:113
+msgid "Enter Confirmation Code"
+msgstr "Entra codice de confirmation"
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:405
+msgid "Enter fullscreen"
+msgstr ""
+
+#: src/view/com/modals/ChangePassword.tsx:154
+msgid "Enter the code you received to change your password."
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:351
+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:103
+msgid "Enter your birth date"
+msgstr ""
+
+#: src/screens/Login/ForgotPasswordForm.tsx:99
+#: src/screens/Signup/StepInfo/index.tsx:176
+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 "Entra tu nomine de usator e contrasigno"
+
+#: src/view/com/composer/Composer.tsx:1660
+#: src/view/com/util/error/ErrorScreen.tsx:42
+msgid "Error"
+msgstr "Error"
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:47
+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:110
+msgid "Error:"
+msgstr "Error:"
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393
+msgid "Everybody"
+msgstr ""
+
+#: src/components/WhoCanReply.tsx:67
+msgid "Everybody can reply"
+msgstr ""
+
+#: src/components/WhoCanReply.tsx:218
+msgid "Everybody can reply to this post."
+msgstr ""
+
+#: src/screens/Messages/Settings.tsx:83
+#: src/screens/Messages/Settings.tsx:86
+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:404
+msgid "Exit fullscreen"
+msgstr "Exir del schermo plen"
+
+#: src/view/com/modals/DeleteAccount.tsx:275
+msgid "Exits account deletion process"
+msgstr ""
+
+#: src/view/com/modals/CropImage.web.tsx:95
+msgid "Exits image cropping process"
+msgstr ""
+
+#: src/view/com/lightbox/Lightbox.web.tsx:110
+msgid "Exits image view"
+msgstr ""
+
+#: src/view/com/modals/ListAddRemoveUsers.tsx:89
+msgid "Exits inputting search query"
+msgstr ""
+
+#: src/view/com/lightbox/Lightbox.web.tsx:184
+msgid "Expand alt text"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:402
+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:405
+msgid "Expected uri to resolve to a record"
+msgstr ""
+
+#: src/screens/Settings/FollowingFeedPreferences.tsx:123
+#: src/screens/Settings/ThreadPreferences.tsx:137
+msgid "Experimental"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:500
+msgid "Expired"
+msgstr "Expirate"
+
+#: src/components/dialogs/MutedWords.tsx:502
+msgid "Expires {0}"
+msgstr "Expira {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/screens/Settings/AccountSettings.tsx:137
+#: src/screens/Settings/AccountSettings.tsx:141
+msgid "Export my data"
+msgstr ""
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:62
+msgid "Export My Data"
+msgstr ""
+
+#: src/screens/Settings/ContentAndMediaSettings.tsx:83
+#: src/screens/Settings/ContentAndMediaSettings.tsx:86
+msgid "External media"
+msgstr ""
+
+#: src/components/dialogs/EmbedConsent.tsx:54
+#: src/components/dialogs/EmbedConsent.tsx:58
+msgid "External Media"
+msgstr ""
+
+#: src/components/dialogs/EmbedConsent.tsx:70
+#: src/screens/Settings/ExternalMediaPreferences.tsx:40
+msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
+msgstr ""
+
+#: src/Navigation.tsx:325
+#: src/screens/Settings/ExternalMediaPreferences.tsx:31
+msgid "External Media Preferences"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:568
+msgid "Failed to change handle. Please try again."
+msgstr ""
+
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:173
+msgid "Failed to create app password. Please try again."
+msgstr ""
+
+#: src/screens/StarterPack/Wizard/index.tsx:233
+#: src/screens/StarterPack/Wizard/index.tsx:241
+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/PostDropdownBtnMenuItems.tsx:195
+msgid "Failed to delete post, please try again"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:699
+msgid "Failed to delete starter pack"
+msgstr ""
+
+#: src/view/screens/Search/Explore.tsx:463
+#: src/view/screens/Search/Explore.tsx:491
+msgid "Failed to load feeds preferences"
+msgstr ""
+
+#: src/components/dialogs/GifSelect.tsx:225
+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:456
+#: src/view/screens/Search/Explore.tsx:484
+msgid "Failed to load suggested feeds"
+msgstr ""
+
+#: src/view/screens/Search/Explore.tsx:414
+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:46
+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/screens/ModerationInteractionSettings/index.tsx:108
+msgid "Failed to save settings. Please try again."
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:234
+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/PostDropdownBtnMenuItems.tsx:224
+msgid "Failed to toggle thread mute, please try again"
+msgstr ""
+
+#: src/components/FeedCard.tsx:275
+msgid "Failed to update feeds"
+msgstr ""
+
+#: src/screens/Messages/Settings.tsx:34
+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/screens/Settings/components/ChangeHandleDialog.tsx:341
+msgid "Failed to verify handle. Please try again."
+msgstr ""
+
+#: src/Navigation.tsx:241
+msgid "Feed"
+msgstr ""
+
+#: src/components/FeedCard.tsx:134
+#: src/view/com/feeds/FeedSourceCard.tsx:253
+msgid "Feed by {0}"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:353
+msgid "Feed menu"
+msgstr ""
+
+#: src/components/StarterPack/Wizard/WizardListCard.tsx:54
+msgid "Feed toggle"
+msgstr ""
+
+#: src/view/shell/desktop/RightNav.tsx:93
+#: src/view/shell/desktop/RightNav.tsx:94
+#: src/view/shell/Drawer.tsx:324
+msgid "Feedback"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:266
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:275
+msgid "Feedback sent!"
+msgstr ""
+
+#: src/Navigation.tsx:413
+#: src/screens/StarterPack/StarterPackScreen.tsx:183
+#: src/view/screens/Feeds.tsx:508
+#: src/view/screens/Profile.tsx:238
+#: src/view/screens/SavedFeeds.tsx:96
+#: src/view/screens/Search/Search.tsx:522
+#: src/view/shell/desktop/LeftNav.tsx:640
+#: src/view/shell/Drawer.tsx:481
+msgid "Feeds"
+msgstr ""
+
+#: src/view/screens/SavedFeeds.tsx:198
+msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information."
+msgstr ""
+
+#: src/components/FeedCard.tsx:272
+#: src/view/screens/SavedFeeds.tsx:82
+msgid "Feeds updated!"
+msgstr ""
+
+#: src/screens/Search/components/ExploreRecommendations.tsx:54
+msgid "Feeds we think you might like."
+msgstr ""
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:43
+msgid "File saved successfully!"
+msgstr ""
+
+#: src/lib/moderation/useLabelBehaviorDescription.ts:66
+msgid "Filter from feeds"
+msgstr ""
+
+#: src/screens/Onboarding/StepFinished.tsx:303
+msgid "Finalizing"
+msgstr ""
+
+#: src/view/com/posts/CustomFeedEmptyState.tsx:48
+#: src/view/com/posts/FollowingEmptyState.tsx:53
+#: src/view/com/posts/FollowingEndOfFeed.tsx:54
+msgid "Find accounts to follow"
+msgstr ""
+
+#: src/components/ProgressGuide/FollowDialog.tsx:78
+#: src/components/ProgressGuide/FollowDialog.tsx:88
+#: src/components/ProgressGuide/FollowDialog.tsx:417
+msgid "Find people to follow"
+msgstr ""
+
+#: src/view/screens/Search/Search.tsx:588
+msgid "Find posts and users on Bluesky"
+msgstr ""
+
+#: src/screens/StarterPack/Wizard/index.tsx:195
+msgid "Finish"
+msgstr ""
+
+#: src/screens/Onboarding/index.tsx:35
+msgid "Fitness"
+msgstr ""
+
+#: src/screens/Onboarding/StepFinished.tsx:283
+msgid "Flexible"
+msgstr ""
+
+#. User is not following this account, click to follow
+#: src/components/ProfileCard.tsx:366
+#: src/components/ProfileHoverCard/index.web.tsx:449
+#: src/components/ProfileHoverCard/index.web.tsx:460
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234
+#: src/screens/VideoFeed/index.tsx:821
+#: src/view/com/post-thread/PostThreadFollowBtn.tsx:132
+msgid "Follow"
+msgstr ""
+
+#: src/view/com/profile/FollowButton.tsx:72
+msgctxt "action"
+msgid "Follow"
+msgstr ""
+
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:218
+#: src/view/com/post-thread/PostThreadFollowBtn.tsx:114
+msgid "Follow {0}"
+msgstr ""
+
+#: src/screens/VideoFeed/index.tsx:800
+msgid "Follow {handle}"
+msgstr ""
+
+#: src/view/com/posts/AviFollowButton.tsx:68
+msgid "Follow {name}"
+msgstr ""
+
+#: src/components/ProgressGuide/List.tsx:52
+#: src/state/shell/progress-guide.tsx:229
+msgid "Follow 10 accounts"
+msgstr ""
+
+#: src/components/ProgressGuide/List.tsx:69
+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:428
+#: src/screens/StarterPack/StarterPackScreen.tsx:436
+msgid "Follow all"
+msgstr ""
+
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:232
+#: src/view/com/post-thread/PostThreadFollowBtn.tsx:130
+msgid "Follow Back"
+msgstr ""
+
+#: src/view/com/profile/FollowButton.tsx:81
+msgctxt "action"
+msgid "Follow Back"
+msgstr ""
+
+#: src/view/screens/Search/Explore.tsx:370
+msgid "Follow more accounts to get connected to your interests and build your network."
+msgstr ""
+
+#: src/components/KnownFollowers.tsx:232
+msgid "Followed by <0>{0}0>"
+msgstr ""
+
+#: src/components/KnownFollowers.tsx:218
+msgid "Followed by <0>{0}0> and {1, plural, one {# other} other {# others}}"
+msgstr ""
+
+#: src/components/KnownFollowers.tsx:205
+msgid "Followed by <0>{0}0> and <1>{1}1>"
+msgstr ""
+
+#: src/components/KnownFollowers.tsx:187
+msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:432
+msgid "Followed users"
+msgstr ""
+
+#: src/Navigation.tsx:202
+msgid "Followers of @{0} that you know"
+msgstr ""
+
+#: src/screens/Profile/KnownFollowers.tsx:104
+#: src/screens/Profile/KnownFollowers.tsx:121
+msgid "Followers you know"
+msgstr ""
+
+#. User is following this account, click to unfollow
+#: src/components/ProfileCard.tsx:360
+#: src/components/ProfileHoverCard/index.web.tsx:448
+#: src/components/ProfileHoverCard/index.web.tsx:459
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230
+#: src/screens/VideoFeed/index.tsx:819
+#: src/view/com/post-thread/PostThreadFollowBtn.tsx:135
+#: src/view/screens/Feeds.tsx:599
+#: src/view/screens/SavedFeeds.tsx:422
+msgid "Following"
+msgstr ""
+
+#: src/components/ProfileCard.tsx:323
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
+msgid "Following {0}"
+msgstr ""
+
+#: src/screens/VideoFeed/index.tsx:799
+msgid "Following {handle}"
+msgstr ""
+
+#: src/view/com/posts/AviFollowButton.tsx:50
+msgid "Following {name}"
+msgstr ""
+
+#: src/screens/Settings/ContentAndMediaSettings.tsx:75
+#: src/screens/Settings/ContentAndMediaSettings.tsx:78
+msgid "Following feed preferences"
+msgstr ""
+
+#: src/Navigation.tsx:312
+#: src/screens/Settings/FollowingFeedPreferences.tsx:53
+msgid "Following Feed Preferences"
+msgstr ""
+
+#: src/screens/Profile/Header/Handle.tsx:32
+msgid "Follows you"
+msgstr ""
+
+#: src/components/Pills.tsx:175
+msgid "Follows You"
+msgstr ""
+
+#: src/screens/Settings/AppearanceSettings.tsx:140
+msgid "Font"
+msgstr ""
+
+#: src/screens/Settings/AppearanceSettings.tsx:160
+msgid "Font size"
+msgstr ""
+
+#: src/screens/Onboarding/index.tsx:40
+#: src/screens/Onboarding/state.ts:102
+msgid "Food"
+msgstr ""
+
+#: src/view/com/modals/DeleteAccount.tsx:125
+msgid "For security reasons, we'll need to send a confirmation code to your email address."
+msgstr ""
+
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:209
+msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one."
+msgstr ""
+
+#: src/screens/Settings/AppearanceSettings.tsx:142
+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:240
+msgid "Forgot password?"
+msgstr ""
+
+#: src/screens/Login/LoginForm.tsx:251
+msgid "Forgot?"
+msgstr ""
+
+#: src/lib/moderation/useReportOptions.ts:54
+msgid "Frequently Posts Unwanted Content"
+msgstr ""
+
+#: src/screens/Hashtag.tsx:120
+msgid "From @{sanitizedAuthor}"
+msgstr ""
+
+#: src/view/com/posts/PostFeedItem.tsx:282
+msgctxt "from-feed"
+msgid "From <0/>"
+msgstr ""
+
+#: src/view/com/composer/photos/SelectPhotoBtn.tsx:50
+msgid "Gallery"
+msgstr ""
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:296
+msgid "Generate a starter pack"
+msgstr ""
+
+#: src/view/shell/Drawer.tsx:328
+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:35
+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/Layout/Header/index.tsx:118
+#: src/components/moderation/ScreenHider.tsx:154
+#: src/components/moderation/ScreenHider.tsx:163
+#: src/screens/Profile/ProfileFeed/index.tsx:89
+#: src/screens/VideoFeed/components/Header.tsx:163
+#: src/screens/VideoFeed/index.tsx:1100
+#: src/screens/VideoFeed/index.tsx:1104
+#: src/view/com/auth/LoggedOut.tsx:72
+#: src/view/screens/NotFound.tsx:57
+#: src/view/screens/ProfileList.tsx:1009
+msgid "Go back"
+msgstr ""
+
+#: src/components/Error.tsx:78
+#: src/screens/List/ListHiddenScreen.tsx:221
+#: src/screens/Profile/ErrorState.tsx:62
+#: src/screens/Profile/ErrorState.tsx:66
+#: src/screens/Profile/ProfileFeed/index.tsx:94
+#: src/screens/StarterPack/StarterPackScreen.tsx:758
+#: src/view/screens/NotFound.tsx:56
+#: src/view/screens/ProfileList.tsx:1014
+msgid "Go Back"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:540
+msgid "Go back to previous page"
+msgstr ""
+
+#: src/components/dms/ReportDialog.tsx:190
+#: src/components/ReportDialog/SelectReportOptionView.tsx:78
+#: src/components/ReportDialog/SubmitView.tsx:110
+#: src/screens/Onboarding/Layout.tsx:101
+#: src/screens/Onboarding/Layout.tsx:190
+#: src/screens/Signup/BackNextButtons.tsx:35
+msgid "Go back to previous step"
+msgstr ""
+
+#: src/screens/StarterPack/Wizard/index.tsx:287
+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:282
+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:230
+msgid "Go to profile"
+msgstr ""
+
+#: src/components/dms/ConvoMenu.tsx:227
+msgid "Go to user's profile"
+msgstr ""
+
+#: src/lib/moderation/useGlobalLabelStrings.ts:46
+#: src/view/com/composer/labels/LabelsBtn.tsx:202
+#: src/view/com/composer/labels/LabelsBtn.tsx:205
+msgid "Graphic Media"
+msgstr ""
+
+#: src/state/shell/progress-guide.tsx:218
+#: src/state/shell/progress-guide.tsx:228
+msgid "Half way there!"
+msgstr ""
+
+#: src/screens/Settings/AccountSettings.tsx:126
+#: src/screens/Settings/AccountSettings.tsx:131
+msgid "Handle"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:572
+msgid "Handle already taken. Please try a different one."
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:189
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:325
+msgid "Handle changed!"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:576
+msgid "Handle too long. Please try a shorter one."
+msgstr ""
+
+#: src/screens/Settings/AccessibilitySettings.tsx:87
+msgid "Haptics"
+msgstr ""
+
+#: src/lib/moderation/useReportOptions.ts:34
+msgid "Harassment, trolling, or intolerance"
+msgstr ""
+
+#: src/Navigation.tsx:388
+msgid "Hashtag"
+msgstr ""
+
+#: src/components/RichTextTag.tsx:51
+msgid "Hashtag {tag}"
+msgstr ""
+
+#: src/screens/Signup/index.tsx:173
+msgid "Having trouble?"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:207
+#: src/screens/Settings/Settings.tsx:211
+#: src/view/shell/desktop/RightNav.tsx:111
+#: src/view/shell/desktop/RightNav.tsx:112
+#: src/view/shell/Drawer.tsx:337
+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/Settings/components/AddAppPasswordDialog.tsx:187
+msgid "Here is your app password!"
+msgstr ""
+
+#: src/components/VideoPostCard.tsx:172
+#: src/components/VideoPostCard.tsx:448
+msgid "Hidden"
+msgstr ""
+
+#: src/screens/VideoFeed/index.tsx:606
+msgid "Hidden by your moderation settings."
+msgstr ""
+
+#: src/components/ListCard.tsx:130
+msgid "Hidden list"
+msgstr ""
+
+#: src/components/interstitials/Trending.tsx:131
+#: src/components/interstitials/TrendingVideos.tsx:140
+#: src/components/moderation/ContentHider.tsx:200
+#: src/components/moderation/LabelPreference.tsx:135
+#: src/components/moderation/PostHider.tsx:122
+#: src/lib/moderation/useLabelBehaviorDescription.ts:15
+#: src/lib/moderation/useLabelBehaviorDescription.ts:20
+#: src/lib/moderation/useLabelBehaviorDescription.ts:25
+#: src/lib/moderation/useLabelBehaviorDescription.ts:30
+#: src/screens/Search/components/ExploreTrendingTopics.tsx:137
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:672
+#: src/view/shell/desktop/SidebarTrendingTopics.tsx:110
+msgid "Hide"
+msgstr "Celar"
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:601
+msgctxt "action"
+msgid "Hide"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:523
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:529
+msgid "Hide post for me"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:540
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:550
+msgid "Hide reply for everyone"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:522
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:528
+msgid "Hide reply for me"
+msgstr ""
+
+#: src/components/moderation/ContentHider.tsx:151
+#: src/components/moderation/PostHider.tsx:79
+msgid "Hide the content"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:667
+msgid "Hide this post?"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:667
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:729
+msgid "Hide this reply?"
+msgstr ""
+
+#: src/components/interstitials/Trending.tsx:113
+#: src/screens/Search/components/ExploreTrendingTopics.tsx:83
+#: src/view/shell/desktop/SidebarTrendingTopics.tsx:62
+msgid "Hide trending topics"
+msgstr ""
+
+#: src/components/interstitials/Trending.tsx:129
+#: src/screens/Search/components/ExploreTrendingTopics.tsx:135
+#: src/view/shell/desktop/SidebarTrendingTopics.tsx:108
+msgid "Hide trending topics?"
+msgstr ""
+
+#: src/components/interstitials/TrendingVideos.tsx:138
+msgid "Hide trending videos?"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:592
+msgid "Hide user list"
+msgstr ""
+
+#: src/view/com/posts/PostFeedErrorMessage.tsx:117
+msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue."
+msgstr ""
+
+#: src/view/com/posts/PostFeedErrorMessage.tsx:105
+msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue."
+msgstr ""
+
+#: src/view/com/posts/PostFeedErrorMessage.tsx:111
+msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue."
+msgstr ""
+
+#: src/view/com/posts/PostFeedErrorMessage.tsx:108
+msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue."
+msgstr ""
+
+#: src/view/com/posts/PostFeedErrorMessage.tsx:102
+msgid "Hmm, we're having trouble finding this feed. It may have been deleted."
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:54
+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:413
+msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
+msgstr ""
+
+#: src/Navigation.tsx:612
+#: src/Navigation.tsx:632
+#: src/view/shell/bottom-bar/BottomBar.tsx:162
+#: src/view/shell/desktop/LeftNav.tsx:584
+#: src/view/shell/Drawer.tsx:396
+msgid "Home"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:398
+msgid "Host:"
+msgstr ""
+
+#: src/screens/Login/ForgotPasswordForm.tsx:83
+#: src/screens/Login/LoginForm.tsx:176
+msgid "Hosting provider"
+msgstr ""
+
+#: src/screens/Settings/ThreadPreferences.tsx:67
+#: src/screens/Settings/ThreadPreferences.tsx:70
+#: src/view/com/post-thread/PostThread.tsx:652
+#: src/view/com/post-thread/PostThread.tsx:657
+msgid "Hot replies first"
+msgstr ""
+
+#: src/view/com/modals/InAppBrowserConsent.tsx:41
+msgid "How should we open this link?"
+msgstr ""
+
+#: src/screens/Settings/components/DisableEmail2FADialog.tsx:133
+#: src/screens/Settings/components/DisableEmail2FADialog.tsx:136
+#: src/view/com/modals/VerifyEmail.tsx:222
+msgid "I have a code"
+msgstr ""
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:239
+#: src/components/dialogs/VerifyEmailDialog.tsx:246
+msgid "I Have a Code"
+msgstr ""
+
+#: src/view/com/modals/VerifyEmail.tsx:224
+msgid "I have a confirmation code"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:261
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
+msgid "I have my own domain"
+msgstr ""
+
+#: src/components/dms/BlockedByListDialog.tsx:57
+#: src/components/dms/ReportConversationPrompt.tsx:21
+msgid "I understand"
+msgstr ""
+
+#: src/view/com/lightbox/Lightbox.web.tsx:186
+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:736
+msgid "If you delete this list, you won't be able to recover it."
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:248
+msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:658
+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/view/com/auth/server-input/index.tsx:204
+msgid "If you're a developer, you can host your own server."
+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:71
+msgid "Image"
+msgstr ""
+
+#: src/components/StarterPack/ShareDialog.tsx:76
+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/LoginForm.tsx:157
+msgid "Incorrect username or password"
+msgstr ""
+
+#: src/screens/Login/SetNewPasswordForm.tsx:127
+msgid "Input code sent to your email for password reset"
+msgstr ""
+
+#: src/view/com/modals/DeleteAccount.tsx:228
+msgid "Input confirmation code for account deletion"
+msgstr ""
+
+#: src/screens/Login/SetNewPasswordForm.tsx:151
+msgid "Input new password"
+msgstr ""
+
+#: src/view/com/modals/DeleteAccount.tsx:247
+msgid "Input password for account deletion"
+msgstr ""
+
+#: src/screens/Login/LoginForm.tsx:281
+msgid "Input the code which has been emailed to you"
+msgstr ""
+
+#: src/screens/Login/LoginForm.tsx:210
+msgid "Input the username or email address you used at signup"
+msgstr ""
+
+#: src/screens/Login/LoginForm.tsx:235
+msgid "Input your password"
+msgstr ""
+
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49
+msgid "Interaction limited"
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:209
+msgid "Interaction settings"
+msgstr ""
+
+#: src/screens/Login/LoginForm.tsx:149
+#: src/screens/Settings/components/DisableEmail2FADialog.tsx:70
+msgid "Invalid 2FA confirmation code."
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:578
+msgid "Invalid handle. Please try a different one."
+msgstr ""
+
+#: src/view/com/post-thread/PostThreadItem.tsx:277
+msgid "Invalid or unsupported post record"
+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:145
+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:96
+msgid "Invite people to this starter pack!"
+msgstr ""
+
+#: src/screens/StarterPack/Wizard/StepDetails.tsx:34
+msgid "Invite your friends to follow your favorite feeds and people"
+msgstr ""
+
+#: src/screens/StarterPack/Wizard/StepDetails.tsx:31
+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:236
+msgid "It's correct"
+msgstr ""
+
+#: src/screens/StarterPack/Wizard/index.tsx:435
+msgid "It's just you right now! Add more people to your starter pack by searching above."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1594
+msgid "Job ID: {0}"
+msgstr ""
+
+#: src/view/com/auth/SplashScreen.web.tsx:178
+msgid "Jobs"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207
+#: src/screens/StarterPack/StarterPackScreen.tsx:456
+#: src/screens/StarterPack/StarterPackScreen.tsx:467
+msgid "Join Bluesky"
+msgstr ""
+
+#: src/components/StarterPack/QrCode.tsx:62
+#: src/view/shell/NavSignupCard.tsx:40
+msgid "Join the conversation"
+msgstr ""
+
+#: src/screens/Onboarding/index.tsx:21
+#: src/screens/Onboarding/state.ts:104
+msgid "Journalism"
+msgstr ""
+
+#: src/components/moderation/ContentHider.tsx:231
+msgid "Labeled by {0}."
+msgstr ""
+
+#: src/components/moderation/ContentHider.tsx:229
+msgid "Labeled by the author."
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:75
+#: src/view/screens/Profile.tsx:231
+msgid "Labels"
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:73
+msgid "Labels added"
+msgstr ""
+
+#: src/screens/Profile/Sections/Labels.tsx:164
+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:107
+msgid "Language selection"
+msgstr ""
+
+#: src/Navigation.tsx:175
+msgid "Language Settings"
+msgstr ""
+
+#: src/screens/Settings/LanguageSettings.tsx:71
+#: src/screens/Settings/Settings.tsx:199
+#: src/screens/Settings/Settings.tsx:202
+msgid "Languages"
+msgstr ""
+
+#: src/screens/Settings/AppearanceSettings.tsx:172
+msgid "Larger"
+msgstr ""
+
+#: src/screens/Hashtag.tsx:95
+#: src/screens/Topic.tsx:77
+#: src/view/screens/Search/Search.tsx:506
+msgid "Latest"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:252
+msgid "learn more"
+msgstr ""
+
+#: src/components/moderation/ScreenHider.tsx:140
+msgid "Learn More"
+msgstr ""
+
+#: src/view/com/auth/SplashScreen.web.tsx:166
+msgid "Learn more about Bluesky"
+msgstr ""
+
+#: src/view/com/auth/server-input/index.tsx:214
+msgid "Learn more about self hosting your PDS."
+msgstr ""
+
+#: src/components/moderation/ContentHider.tsx:149
+#: src/components/moderation/ContentHider.tsx:215
+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/Settings/PrivacyAndSecuritySettings.tsx:99
+#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:102
+msgid "Learn more about what is public on Bluesky."
+msgstr ""
+
+#: src/components/moderation/ContentHider.tsx:239
+#: src/view/com/auth/server-input/index.tsx:216
+msgid "Learn more."
+msgstr ""
+
+#: src/components/dms/LeaveConvoPrompt.tsx:44
+msgid "Leave"
+msgstr ""
+
+#: src/components/dms/MessagesListBlockedFooter.tsx:73
+#: src/components/dms/MessagesListBlockedFooter.tsx:80
+msgid "Leave chat"
+msgstr ""
+
+#: src/components/dms/ConvoMenu.tsx:206
+#: src/components/dms/ConvoMenu.tsx:209
+#: src/components/dms/ConvoMenu.tsx:269
+#: src/components/dms/ConvoMenu.tsx:272
+#: src/components/dms/LeaveConvoPrompt.tsx:40
+msgid "Leave conversation"
+msgstr ""
+
+#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84
+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:155
+msgid "left to go."
+msgstr ""
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:312
+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:303
+msgid "Let's go!"
+msgstr ""
+
+#: src/screens/Settings/AppearanceSettings.tsx:101
+msgid "Light"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+msgid "Like"
+msgstr ""
+
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:311
+msgid "Like ({0, plural, one {# like} other {# likes}})"
+msgstr ""
+
+#: src/components/ProgressGuide/List.tsx:63
+msgid "Like 10 posts"
+msgstr ""
+
+#: src/state/shell/progress-guide.tsx:214
+#: src/state/shell/progress-guide.tsx:219
+msgid "Like 10 posts to train the Discover feed"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:501
+msgid "Like feed"
+msgstr ""
+
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:275
+msgid "Like this feed"
+msgstr ""
+
+#: src/components/LikesDialog.tsx:85
+#: src/Navigation.tsx:246
+#: src/Navigation.tsx:251
+msgid "Liked by"
+msgstr ""
+
+#: src/screens/Post/PostLikedBy.tsx:38
+#: src/screens/Profile/ProfileLabelerLikedBy.tsx:29
+#: src/view/screens/ProfileFeedLikedBy.tsx:30
+msgid "Liked By"
+msgstr ""
+
+#: src/components/FeedCard.tsx:213
+#: src/view/com/feeds/FeedSourceCard.tsx:303
+msgid "Liked by {0, plural, one {# user} other {# users}}"
+msgstr ""
+
+#: src/components/LabelingServiceCard/index.tsx:96
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:489
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:309
+msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
+msgstr ""
+
+#: src/view/screens/Profile.tsx:237
+msgid "Likes"
+msgstr ""
+
+#: src/view/com/post-thread/PostThreadItem.tsx:217
+msgid "Likes on this post"
+msgstr ""
+
+#: src/view/com/post-thread/PostThread.tsx:626
+#: src/view/com/post-thread/PostThread.tsx:631
+msgid "Linear"
+msgstr ""
+
+#: src/Navigation.tsx:208
+msgid "List"
+msgstr ""
+
+#: src/view/com/modals/CreateOrEditList.tsx:241
+msgid "List Avatar"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:418
+msgid "List blocked"
+msgstr ""
+
+#: src/components/ListCard.tsx:150
+#: src/view/com/feeds/FeedSourceCard.tsx:255
+msgid "List by {0}"
+msgstr ""
+
+#: src/view/com/profile/ProfileSubpageHeader.tsx:156
+msgid "List by <0/>"
+msgstr ""
+
+#: src/view/com/profile/ProfileSubpageHeader.tsx:154
+msgid "List by you"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:455
+msgid "List deleted"
+msgstr ""
+
+#: src/screens/List/ListHiddenScreen.tsx:129
+msgid "List has been hidden"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:170
+msgid "List Hidden"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:392
+msgid "List muted"
+msgstr ""
+
+#: src/view/com/modals/CreateOrEditList.tsx:255
+msgid "List Name"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:431
+msgid "List unblocked"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:405
+msgid "List unmuted"
+msgstr ""
+
+#: src/Navigation.tsx:137
+#: src/view/screens/Lists.tsx:62
+#: src/view/screens/Profile.tsx:232
+#: src/view/screens/Profile.tsx:240
+#: src/view/shell/desktop/LeftNav.tsx:658
+#: src/view/shell/Drawer.tsx:496
+msgid "Lists"
+msgstr ""
+
+#: src/components/dms/BlockedByListDialog.tsx:39
+msgid "Lists blocking this user:"
+msgstr ""
+
+#: src/view/screens/Search/Explore.tsx:135
+msgid "Load more"
+msgstr ""
+
+#: src/view/screens/Search/Explore.tsx:224
+msgid "Load more suggested feeds"
+msgstr ""
+
+#: src/view/screens/Search/Explore.tsx:222
+msgid "Load more suggested follows"
+msgstr ""
+
+#: src/view/screens/Notifications.tsx:270
+msgid "Load new notifications"
+msgstr ""
+
+#: src/screens/Profile/ProfileFeed/index.tsx:221
+#: src/screens/Profile/Sections/Feed.tsx:98
+#: src/view/com/feeds/FeedPage.tsx:155
+#: src/view/screens/ProfileList.tsx:849
+msgid "Load new posts"
+msgstr ""
+
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
+msgid "Loading..."
+msgstr ""
+
+#: src/Navigation.tsx:271
+msgid "Log"
+msgstr ""
+
+#: src/screens/Deactivated.tsx:202
+#: src/screens/Deactivated.tsx:208
+msgid "Log in or sign up"
+msgstr ""
+
+#: src/screens/SignupQueued.tsx:93
+#: src/screens/SignupQueued.tsx:96
+#: src/screens/Takendown.tsx:85
+msgid "Log out"
+msgstr ""
+
+#: src/screens/Takendown.tsx:88
+msgid "Log Out"
+msgstr ""
+
+#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:78
+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:121
+msgid "Logo by @sawaratsuki.bsky.social"
+msgstr ""
+
+#: src/view/shell/desktop/RightNav.tsx:118
+#: src/view/shell/Drawer.tsx:634
+msgid "Logo by <0>@sawaratsuki.bsky.social0>"
+msgstr ""
+
+#: src/components/RichTextTag.tsx:53
+msgid "Long press to open tag menu for #{tag}"
+msgstr ""
+
+#: src/screens/Login/SetNewPasswordForm.tsx:116
+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.0>"
+msgstr ""
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:265
+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/screens/Settings/ContentAndMediaSettings.tsx:59
+#: src/screens/Settings/ContentAndMediaSettings.tsx:62
+msgid "Manage saved feeds"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:108
+msgid "Manage your muted words and tags"
+msgstr ""
+
+#: src/components/dms/ConvoMenu.tsx:218
+#: src/components/dms/ConvoMenu.tsx:221
+msgid "Mark as read"
+msgstr ""
+
+#: src/view/screens/Profile.tsx:235
+msgid "Media"
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:211
+msgid "Media that may be disturbing or inappropriate for some audiences."
+msgstr ""
+
+#: src/components/WhoCanReply.tsx:259
+msgid "mentioned users"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:422
+msgid "Mentioned users"
+msgstr ""
+
+#: src/view/screens/Notifications.tsx:99
+msgid "Mentions"
+msgstr ""
+
+#: src/components/Menu/index.tsx:103
+#: src/view/screens/Search/Search.tsx:808
+msgid "Menu"
+msgstr ""
+
+#: src/components/dms/MessageProfileButton.tsx:82
+msgid "Message {0}"
+msgstr ""
+
+#: src/components/dms/MessageMenu.tsx:72
+#: src/screens/Messages/components/ChatListItem.tsx:180
+msgid "Message deleted"
+msgstr ""
+
+#: src/view/com/posts/PostFeedErrorMessage.tsx:201
+msgid "Message from server: {0}"
+msgstr ""
+
+#: src/screens/Messages/components/MessageInput.tsx:147
+msgid "Message input field"
+msgstr ""
+
+#: src/screens/Messages/components/MessageInput.tsx:78
+#: src/screens/Messages/components/MessageInput.web.tsx:60
+msgid "Message is too long"
+msgstr ""
+
+#: src/Navigation.tsx:627
+#: src/screens/Messages/ChatList.tsx:269
+#: src/screens/Messages/ChatList.tsx:293
+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:142
+#: src/screens/Moderation/index.tsx:89
+#: src/screens/Settings/Settings.tsx:167
+#: src/screens/Settings/Settings.tsx:170
+msgid "Moderation"
+msgstr ""
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:132
+msgid "Moderation details"
+msgstr ""
+
+#: src/components/ListCard.tsx:149
+#: src/view/com/modals/UserAddRemoveLists.tsx:222
+msgid "Moderation list by {0}"
+msgstr ""
+
+#: src/view/com/profile/ProfileSubpageHeader.tsx:169
+msgid "Moderation list by <0/>"
+msgstr ""
+
+#: src/view/com/modals/UserAddRemoveLists.tsx:220
+#: src/view/com/profile/ProfileSubpageHeader.tsx:167
+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:239
+msgid "Moderation lists"
+msgstr ""
+
+#: src/Navigation.tsx:147
+#: src/view/screens/ModerationModlists.tsx:62
+msgid "Moderation Lists"
+msgstr ""
+
+#: src/components/moderation/LabelPreference.tsx:247
+msgid "moderation settings"
+msgstr ""
+
+#: src/Navigation.tsx:261
+msgid "Moderation states"
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:193
+msgid "Moderation tools"
+msgstr ""
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:50
+#: 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:632
+msgid "More"
+msgstr ""
+
+#: src/view/shell/desktop/Feeds.tsx:102
+#: src/view/shell/desktop/Feeds.tsx:105
+msgid "More feeds"
+msgstr ""
+
+#: src/view/com/profile/ProfileMenu.tsx:179
+#: src/view/screens/ProfileList.tsx:721
+msgid "More options"
+msgstr ""
+
+#: src/screens/Settings/ThreadPreferences.tsx:94
+msgid "Most-liked first"
+msgstr ""
+
+#: src/screens/Settings/ThreadPreferences.tsx:91
+#: src/view/com/post-thread/PostThread.tsx:682
+#: src/view/com/post-thread/PostThread.tsx:687
+msgid "Most-liked replies first"
+msgstr ""
+
+#: src/screens/Onboarding/state.ts:105
+msgid "Movies"
+msgstr ""
+
+#: src/screens/Onboarding/state.ts:106
+msgid "Music"
+msgstr ""
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156
+#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:95
+msgctxt "video"
+msgid "Mute"
+msgstr ""
+
+#: src/components/RichTextTag.tsx:140
+#: src/components/RichTextTag.tsx:153
+msgid "Mute {tag}"
+msgstr ""
+
+#: src/view/com/profile/ProfileMenu.tsx:259
+#: src/view/com/profile/ProfileMenu.tsx:266
+msgid "Mute Account"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:627
+msgid "Mute accounts"
+msgstr ""
+
+#: src/components/dms/ConvoMenu.tsx:235
+#: src/components/dms/ConvoMenu.tsx:241
+msgid "Mute conversation"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:253
+msgid "Mute in:"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:750
+msgid "Mute list"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:745
+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/PostDropdownBtnMenuItems.tsx:489
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:493
+msgid "Mute thread"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:503
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:505
+msgid "Mute words & tags"
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:254
+msgid "Muted accounts"
+msgstr ""
+
+#: src/Navigation.tsx:152
+#: src/view/screens/ModerationMutedAccounts.tsx:100
+msgid "Muted Accounts"
+msgstr ""
+
+#: src/view/screens/ModerationMutedAccounts.tsx:112
+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:224
+msgid "Muted words & tags"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:747
+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:699
+msgid "My Feeds"
+msgstr ""
+
+#: 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:107
+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:334
+#: 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:196
+msgid "Need to change it?"
+msgstr ""
+
+#: src/components/ReportDialog/SelectReportOptionView.tsx:128
+msgid "Need to report a copyright violation?"
+msgstr ""
+
+#: src/screens/Onboarding/StepFinished.tsx:271
+msgid "Never lose access to your followers or data."
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:548
+msgid "Nevermind, create a handle for me"
+msgstr ""
+
+#: src/view/screens/Lists.tsx:74
+#: src/view/screens/ModerationModlists.tsx:74
+msgctxt "action"
+msgid "New"
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:65
+#: src/screens/Messages/ChatList.tsx:276
+#: src/screens/Messages/ChatList.tsx:283
+msgid "New chat"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:202
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:210
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
+msgid "New handle"
+msgstr ""
+
+#: src/view/screens/Lists.tsx:66
+#: src/view/screens/ModerationModlists.tsx:66
+msgid "New list"
+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/screens/Profile/ProfileFeed/index.tsx:238
+#: src/view/screens/Feeds.tsx:549
+#: src/view/screens/Notifications.tsx:165
+#: src/view/screens/Profile.tsx:518
+#: src/view/screens/ProfileList.tsx:250
+#: src/view/screens/ProfileList.tsx:283
+msgid "New post"
+msgstr ""
+
+#: src/view/com/feeds/FeedPage.tsx:166
+msgctxt "action"
+msgid "New post"
+msgstr ""
+
+#: src/view/shell/desktop/LeftNav.tsx:504
+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/screens/Settings/ThreadPreferences.tsx:83
+#: src/screens/Settings/ThreadPreferences.tsx:86
+#: src/view/com/post-thread/PostThread.tsx:672
+#: src/view/com/post-thread/PostThread.tsx:677
+msgid "Newest replies first"
+msgstr ""
+
+#: src/screens/Onboarding/index.tsx:20
+#: src/screens/Onboarding/state.ts:108
+msgid "News"
+msgstr ""
+
+#: src/screens/Login/ForgotPasswordForm.tsx:137
+#: src/screens/Login/ForgotPasswordForm.tsx:143
+#: src/screens/Login/LoginForm.tsx:333
+#: src/screens/Login/LoginForm.tsx:340
+#: src/screens/Login/SetNewPasswordForm.tsx:174
+#: src/screens/Login/SetNewPasswordForm.tsx:180
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:157
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:165
+#: src/screens/Signup/BackNextButtons.tsx:67
+#: src/screens/StarterPack/Wizard/index.tsx:187
+#: src/screens/StarterPack/Wizard/index.tsx:191
+#: src/screens/StarterPack/Wizard/index.tsx:341
+#: src/screens/StarterPack/Wizard/index.tsx:348
+#: src/view/com/modals/ChangePassword.tsx:254
+#: src/view/com/modals/ChangePassword.tsx:256
+msgid "Next"
+msgstr ""
+
+#: src/view/com/lightbox/Lightbox.web.tsx:169
+msgid "Next image"
+msgstr ""
+
+#: src/screens/Settings/AppPasswords.tsx:108
+msgid "No app passwords yet"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:378
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:380
+msgid "No DNS Panel"
+msgstr ""
+
+#: src/components/dialogs/GifSelect.tsx:231
+msgid "No featured GIFs found. There may be an issue with Tenor."
+msgstr ""
+
+#: src/screens/StarterPack/Wizard/StepFeeds.tsx:119
+msgid "No feeds found. Try searching for something else."
+msgstr ""
+
+#: src/components/LikedByList.tsx:84
+#: src/view/com/post-thread/PostLikedBy.tsx:84
+msgid "No likes yet"
+msgstr ""
+
+#: src/components/ProfileCard.tsx:345
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
+msgid "No longer following {0}"
+msgstr ""
+
+#: src/screens/Signup/StepHandle.tsx:173
+msgid "No longer than {0} characters"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:124
+msgid "No messages yet"
+msgstr ""
+
+#: src/screens/Messages/ChatList.tsx:233
+msgid "No more conversations to show"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeed.tsx:116
+msgid "No notifications yet!"
+msgstr ""
+
+#: src/screens/Messages/Settings.tsx:101
+#: src/screens/Messages/Settings.tsx:104
+msgid "No one"
+msgstr ""
+
+#: src/components/WhoCanReply.tsx:242
+msgid "No one but the author can quote this post."
+msgstr ""
+
+#: src/screens/Profile/Sections/Feed.tsx:66
+msgid "No posts yet."
+msgstr ""
+
+#: src/view/com/post-thread/PostQuotes.tsx:105
+msgid "No quotes yet"
+msgstr ""
+
+#: src/view/com/post-thread/PostRepostedBy.tsx:90
+msgid "No reposts yet"
+msgstr ""
+
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:94
+#: src/view/com/composer/text-input/web/Autocomplete.tsx:195
+msgid "No result"
+msgstr ""
+
+#: src/components/dms/dialogs/SearchablePeopleList.tsx:200
+#: src/components/ProgressGuide/FollowDialog.tsx:235
+msgid "No results"
+msgstr ""
+
+#: src/components/Lists.tsx:189
+msgid "No results found"
+msgstr ""
+
+#: src/view/screens/Feeds.tsx:470
+msgid "No results found for \"{query}\""
+msgstr ""
+
+#: src/view/com/modals/ListAddRemoveUsers.tsx:128
+#: src/view/screens/Search/Search.tsx:227
+#: src/view/screens/Search/Search.tsx:265
+#: src/view/screens/Search/Search.tsx:310
+msgid "No results found for {query}"
+msgstr ""
+
+#: src/components/dialogs/GifSelect.tsx:229
+msgid "No search results found for \"{search}\"."
+msgstr ""
+
+#: src/components/dialogs/EmbedConsent.tsx:104
+#: src/components/dialogs/EmbedConsent.tsx:111
+msgid "No thanks"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:404
+msgid "Nobody"
+msgstr ""
+
+#: src/components/LikedByList.tsx:86
+#: src/components/LikesDialog.tsx:97
+#: src/view/com/post-thread/PostLikedBy.tsx:86
+msgid "Nobody has liked this yet. Maybe you should be the first!"
+msgstr ""
+
+#: src/view/com/post-thread/PostQuotes.tsx:107
+msgid "Nobody has quoted this yet. Maybe you should be the first!"
+msgstr ""
+
+#: src/view/com/post-thread/PostRepostedBy.tsx:92
+msgid "Nobody has reposted this yet. Maybe you should be the first!"
+msgstr ""
+
+#: src/screens/StarterPack/Wizard/StepProfiles.tsx:103
+msgid "Nobody was found. Try searching for someone else."
+msgstr ""
+
+#: src/lib/moderation/useGlobalLabelStrings.ts:42
+msgid "Non-sexual Nudity"
+msgstr ""
+
+#: src/Navigation.tsx:132
+#: src/view/screens/Profile.tsx:129
+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/PostDropdownBtnMenuItems.tsx:686
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:357
+msgid "Note about sharing"
+msgstr ""
+
+#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:88
+msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites."
+msgstr ""
+
+#: src/screens/Messages/ChatList.tsx:188
+msgid "Nothing here"
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings.tsx:64
+msgid "Notification filters"
+msgstr ""
+
+#: src/Navigation.tsx:408
+#: src/view/screens/Notifications.tsx:134
+msgid "Notification settings"
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings.tsx:46
+msgid "Notification Settings"
+msgstr ""
+
+#: src/screens/Messages/Settings.tsx:123
+msgid "Notification sounds"
+msgstr ""
+
+#: src/screens/Messages/Settings.tsx:120
+msgid "Notification Sounds"
+msgstr ""
+
+#: src/Navigation.tsx:622
+#: src/view/screens/Notifications.tsx:128
+#: src/view/shell/bottom-bar/BottomBar.tsx:230
+#: src/view/shell/desktop/LeftNav.tsx:621
+#: src/view/shell/Drawer.tsx:449
+msgid "Notifications"
+msgstr ""
+
+#: src/lib/hooks/useTimeAgo.ts:122
+msgid "now"
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:198
+msgid "Now"
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:151
+#: src/view/com/composer/labels/LabelsBtn.tsx:154
+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:268
+#: 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:352
+#: src/screens/Settings/AppIconSettings/index.tsx:48
+#: src/screens/Settings/AppIconSettings/index.tsx:229
+msgid "OK"
+msgstr ""
+
+#: src/screens/Login/PasswordUpdatedForm.tsx:37
+#: src/view/com/post-thread/PostThreadItem.tsx:864
+msgid "Okay"
+msgstr ""
+
+#: src/screens/Settings/ThreadPreferences.tsx:75
+#: src/screens/Settings/ThreadPreferences.tsx:78
+#: src/view/com/post-thread/PostThread.tsx:662
+#: src/view/com/post-thread/PostThread.tsx:667
+msgid "Oldest replies first"
+msgstr ""
+
+#: src/components/StarterPack/QrCode.tsx:76
+msgid "on<0><1/><2><3/>2>0>"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:304
+msgid "Onboarding reset"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:346
+msgid "One or more GIFs is missing alt text."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:343
+msgid "One or more images is missing alt text."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:353
+msgid "One or more videos 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:222
+msgid "Only {0} can reply."
+msgstr ""
+
+#: src/screens/Signup/StepHandle.tsx:156
+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:94
+msgid "Oops, something went wrong!"
+msgstr ""
+
+#: src/components/Lists.tsx:173
+#: src/components/StarterPack/ProfileStarterPacks.tsx:321
+#: src/components/StarterPack/ProfileStarterPacks.tsx:330
+#: src/screens/Settings/AppPasswords.tsx:59
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:104
+#: src/screens/Settings/NotificationSettings.tsx:54
+#: src/view/screens/Profile.tsx:129
+msgid "Oops!"
+msgstr ""
+
+#: src/screens/Onboarding/StepFinished.tsx:267
+msgid "Open"
+msgstr "Aperir"
+
+#: src/view/com/posts/AviFollowButton.tsx:86
+msgid "Open {name} profile shortcut menu"
+msgstr ""
+
+#: src/screens/Onboarding/StepProfile/index.tsx:286
+msgid "Open avatar creator"
+msgstr ""
+
+#: src/screens/Settings/AccountSettings.tsx:127
+msgid "Open change handle dialog"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:290
+#: src/screens/Messages/components/ChatListItem.tsx:291
+msgid "Open conversation options"
+msgstr ""
+
+#: src/components/Layout/Header/index.tsx:149
+msgid "Open drawer menu"
+msgstr ""
+
+#: src/screens/Messages/components/MessageInput.web.tsx:181
+#: src/view/com/composer/Composer.tsx:1243
+#: src/view/com/composer/Composer.tsx:1244
+msgid "Open emoji picker"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:190
+msgid "Open feed info screen"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:290
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:295
+msgid "Open feed options menu"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:208
+msgid "Open helpdesk in browser"
+msgstr ""
+
+#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:71
+msgid "Open link to {niceUrl}"
+msgstr ""
+
+#: src/components/dms/ActionsWrapper.tsx:90
+msgid "Open message options"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:330
+msgid "Open moderation debug page"
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:220
+msgid "Open muted words and tags settings"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:70
+msgid "Open post options menu"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:553
+msgid "Open starter pack menu"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:323
+#: src/screens/Settings/Settings.tsx:337
+msgid "Open storybook page"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:316
+msgid "Open system log"
+msgstr "Aperir registro de systema"
+
+#: src/view/com/util/forms/DropdownButton.tsx:162
+msgid "Opens {numItems} options"
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:62
+msgid "Opens a dialog to add a content warning to your post"
+msgstr ""
+
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:61
+msgid "Opens a dialog to choose who can reply to this thread"
+msgstr ""
+
+#: src/view/screens/Log.tsx:59
+msgid "Opens additional details for a debug entry"
+msgstr ""
+
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:73
+msgid "Opens camera on device"
+msgstr ""
+
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35
+msgid "Opens composer"
+msgstr ""
+
+#: src/view/com/composer/photos/SelectPhotoBtn.tsx:51
+msgid "Opens device photo gallery"
+msgstr ""
+
+#: src/view/com/auth/SplashScreen.tsx:49
+#: src/view/com/auth/SplashScreen.web.tsx:111
+msgid "Opens flow to create a new Bluesky account"
+msgstr ""
+
+#: src/view/com/auth/SplashScreen.tsx:63
+#: src/view/com/auth/SplashScreen.web.tsx:125
+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/screens/Login/LoginForm.tsx:241
+msgid "Opens password reset form"
+msgstr "Aperi le formulario de reinitialisation de contrasigno"
+
+#: src/view/com/modals/LinkWarning.tsx:93
+msgid "Opens the linked website"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:679
+#: src/view/com/util/UserAvatar.tsx:437
+msgid "Opens this profile"
+msgstr "Aperi iste profilo"
+
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:101
+msgid "Opens video picker"
+msgstr ""
+
+#: src/view/com/util/forms/DropdownButton.tsx:296
+msgid "Option {0} of {numItems}"
+msgstr ""
+
+#: src/components/dms/ReportDialog.tsx:219
+#: src/components/ReportDialog/SubmitView.tsx:168
+msgid "Optionally provide additional information below:"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:299
+msgid "Options:"
+msgstr "Optiones:"
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:417
+msgid "Or combine these options:"
+msgstr ""
+
+#: src/screens/Deactivated.tsx:199
+msgid "Or, continue with another account."
+msgstr ""
+
+#: src/screens/Deactivated.tsx:186
+msgid "Or, log into one of your other accounts."
+msgstr ""
+
+#: src/lib/moderation/useReportOptions.ts:27
+#: src/view/com/composer/labels/LabelsBtn.tsx:186
+msgid "Other"
+msgstr ""
+
+#: src/components/AccountList.tsx:83
+msgid "Other account"
+msgstr ""
+
+#: src/view/com/composer/select-language/SelectLangBtn.tsx:93
+msgid "Other..."
+msgstr ""
+
+#: src/components/dms/ReportDialog.tsx:339
+msgid "Our moderation team has received your report."
+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:190
+#: 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:220
+#: src/screens/Settings/AccountSettings.tsx:117
+#: src/screens/Settings/AccountSettings.tsx:121
+#: src/screens/Signup/StepInfo/index.tsx:186
+#: src/view/com/modals/DeleteAccount.tsx:239
+#: src/view/com/modals/DeleteAccount.tsx:246
+msgid "Password"
+msgstr "Contrasigno"
+
+#: 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:23
+msgid "Password updated!"
+msgstr ""
+
+#: src/view/com/util/post-embeds/GifEmbed.tsx:43
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140
+#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:369
+msgid "Pause"
+msgstr ""
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:320
+msgid "Pause video"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:182
+#: src/view/screens/Search/Search.tsx:516
+msgid "People"
+msgstr ""
+
+#: src/Navigation.tsx:195
+msgid "People followed by @{0}"
+msgstr ""
+
+#: src/Navigation.tsx:188
+msgid "People following @{0}"
+msgstr ""
+
+#: src/view/com/lightbox/Lightbox.tsx:27
+msgid "Permission to access camera roll is required."
+msgstr ""
+
+#: src/view/com/lightbox/Lightbox.tsx:35
+msgid "Permission to access camera roll was denied. Please enable it in your system settings."
+msgstr ""
+
+#: src/components/StarterPack/Wizard/WizardListCard.tsx:54
+msgid "Person toggle"
+msgstr ""
+
+#: src/screens/Onboarding/index.tsx:28
+#: src/screens/Onboarding/state.ts:109
+msgid "Pets"
+msgstr ""
+
+#: src/screens/Onboarding/state.ts:110
+msgid "Photography"
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:170
+msgid "Pictures meant for adults."
+msgstr ""
+
+#: src/screens/Search/components/ExploreTrendingVideos.tsx:173
+#: src/screens/Search/components/ExploreTrendingVideos.tsx:178
+msgid "Pin"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:519
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:526
+msgid "Pin feed"
+msgstr ""
+
+#: src/screens/Search/components/ExploreTrendingVideos.tsx:167
+msgid "Pin the trending videos feed to your home screen for easy access"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:685
+msgid "Pin to home"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:336
+msgid "Pin to Home"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:380
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:387
+msgid "Pin to your profile"
+msgstr ""
+
+#: src/view/com/posts/PostFeedItem.tsx:363
+msgid "Pinned"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:162
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:174
+msgid "Pinned {0} to Home"
+msgstr ""
+
+#: src/view/screens/SavedFeeds.tsx:123
+msgid "Pinned Feeds"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:351
+msgid "Pinned to your feeds"
+msgstr ""
+
+#: src/view/com/util/post-embeds/GifEmbed.tsx:43
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:140
+#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:370
+msgid "Play"
+msgstr ""
+
+#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:107
+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:134
+#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321
+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:106
+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/screens/Login/SetNewPasswordForm.tsx:56
+msgid "Please enter a password."
+msgstr ""
+
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:114
+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/screens/Login/LoginForm.tsx:95
+msgid "Please enter your password"
+msgstr ""
+
+#: src/view/com/modals/DeleteAccount.tsx:235
+msgid "Please enter your password as well:"
+msgstr ""
+
+#: src/screens/Login/LoginForm.tsx:90
+msgid "Please enter your username"
+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:111
+msgid "Politics"
+msgstr ""
+
+#: src/screens/Search/components/ExploreTrendingVideos.tsx:116
+msgid "Popular videos in your network."
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:157
+msgid "Porn"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:959
+msgctxt "action"
+msgid "Post"
+msgstr ""
+
+#: src/view/com/post-thread/PostThread.tsx:536
+msgctxt "description"
+msgid "Post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:957
+msgctxt "action"
+msgid "Post All"
+msgstr ""
+
+#: src/view/com/post-thread/PostThreadItem.tsx:209
+msgid "Post by {0}"
+msgstr ""
+
+#: src/Navigation.tsx:214
+#: src/Navigation.tsx:221
+#: src/Navigation.tsx:228
+#: src/Navigation.tsx:235
+msgid "Post by @{0}"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:175
+msgid "Post deleted"
+msgstr ""
+
+#: src/lib/api/index.ts:185
+msgid "Post failed to upload. Please check your Internet connection and try again."
+msgstr ""
+
+#: src/screens/VideoFeed/index.tsx:511
+msgid "Post has been deleted"
+msgstr ""
+
+#: src/view/com/post-thread/PostThread.tsx:266
+msgid "Post hidden"
+msgstr ""
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:105
+#: src/lib/moderation/useModerationCauseDescription.ts:104
+msgid "Post Hidden by Muted Word"
+msgstr ""
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:108
+#: src/lib/moderation/useModerationCauseDescription.ts:113
+msgid "Post Hidden by You"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:99
+msgid "Post interaction settings"
+msgstr ""
+
+#: src/Navigation.tsx:163
+#: src/screens/ModerationInteractionSettings/index.tsx:34
+msgid "Post Interaction Settings"
+msgstr ""
+
+#: src/view/com/composer/select-language/SelectLangBtn.tsx:89
+msgid "Post language"
+msgstr ""
+
+#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:77
+msgid "Post Languages"
+msgstr ""
+
+#: src/view/com/post-thread/PostThread.tsx:261
+#: src/view/com/post-thread/PostThread.tsx:273
+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/screens/StarterPack/StarterPackScreen.tsx:184
+#: src/view/screens/Profile.tsx:233
+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/PostFeedErrorMessage.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 "Preferentia salvate"
+
+#: src/screens/Messages/components/MessageListError.tsx:19
+msgid "Press to attempt reconnection"
+msgstr ""
+
+#: src/components/forms/HostingProvider.tsx:50
+#: src/components/forms/HostingProvider.tsx:66
+msgid "Press to change hosting provider"
+msgstr ""
+
+#: src/components/Error.tsx:60
+#: src/components/Lists.tsx:99
+#: src/screens/Messages/components/MessageListError.tsx:24
+#: src/screens/Signup/BackNextButtons.tsx:47
+msgid "Press to retry"
+msgstr "Pressa pro retentar"
+
+#: 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/screens/Settings/LanguageSettings.tsx:167
+msgid "Primary Language"
+msgstr "Lingua principal"
+
+#: src/screens/Settings/ThreadPreferences.tsx:112
+#: src/screens/Settings/ThreadPreferences.tsx:117
+msgid "Prioritize your Follows"
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings.tsx:67
+msgid "Priority notifications"
+msgstr ""
+
+#: src/view/shell/desktop/RightNav.tsx:101
+#: src/view/shell/desktop/RightNav.tsx:102
+msgid "Privacy"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:161
+#: src/screens/Settings/Settings.tsx:164
+msgid "Privacy and security"
+msgstr ""
+
+#: src/Navigation.tsx:357
+#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36
+msgid "Privacy and Security"
+msgstr ""
+
+#: src/Navigation.tsx:281
+#: src/screens/Settings/AboutSettings.tsx:45
+#: src/screens/Settings/AboutSettings.tsx:48
+#: src/view/screens/PrivacyPolicy.tsx:31
+#: src/view/shell/Drawer.tsx:629
+#: src/view/shell/Drawer.tsx:630
+msgid "Privacy Policy"
+msgstr "Politica de privatessa"
+
+#: src/view/com/composer/Composer.tsx:1657
+msgid "Processing video..."
+msgstr ""
+
+#: src/lib/api/index.ts:59
+#: src/screens/Login/ForgotPasswordForm.tsx:149
+msgid "Processing..."
+msgstr ""
+
+#: src/view/screens/DebugMod.tsx:919
+#: src/view/screens/Profile.tsx:372
+msgid "profile"
+msgstr ""
+
+#: src/view/shell/bottom-bar/BottomBar.tsx:275
+#: src/view/shell/desktop/LeftNav.tsx:676
+#: src/view/shell/Drawer.tsx:71
+#: src/view/shell/Drawer.tsx:521
+msgid "Profile"
+msgstr "Profilo"
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:191
+#: src/view/com/modals/EditProfile.tsx:124
+msgid "Profile updated"
+msgstr "Profilo actualisate"
+
+#: src/screens/Onboarding/StepFinished.tsx:253
+msgid "Public"
+msgstr "Public"
+
+#: src/view/com/lists/MyLists.tsx:77
+msgid "Public, sharable lists of users to mute or block in bulk."
+msgstr ""
+
+#: src/view/com/lists/MyLists.tsx:72
+msgid "Public, sharable lists which can be used to drive feeds."
+msgstr ""
+
+#: src/components/StarterPack/QrCodeDialog.tsx:128
+msgid "QR code copied to your clipboard!"
+msgstr "Codice QR copiate a tu area de transferentia!"
+
+#: 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:178
+#: src/view/com/util/post-ctrls/RepostButton.tsx:201
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:85
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92
+msgid "Quote post"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:303
+msgid "Quote post was re-attached"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:302
+msgid "Quote post was successfully detached"
+msgstr ""
+
+#: src/view/com/util/post-ctrls/RepostButton.tsx:177
+#: src/view/com/util/post-ctrls/RepostButton.tsx:199
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:84
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:91
+msgid "Quote posts disabled"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:328
+msgid "Quote settings"
+msgstr ""
+
+#: src/screens/Post/PostQuotes.tsx:38
+msgid "Quotes"
+msgstr ""
+
+#: src/view/com/post-thread/PostThreadItem.tsx:243
+msgid "Quotes of this post"
+msgstr ""
+
+#: src/screens/Settings/ThreadPreferences.tsx:99
+#: src/screens/Settings/ThreadPreferences.tsx:102
+#: src/view/com/post-thread/PostThread.tsx:692
+#: src/view/com/post-thread/PostThread.tsx:697
+msgid "Random (aka \"Poster's Roulette\")"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:581
+msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again."
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:565
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:575
+msgid "Re-attach quote"
+msgstr ""
+
+#: src/screens/Deactivated.tsx:140
+msgid "Reactivate your account"
+msgstr "Reactivar tu conto"
+
+#: src/screens/VideoFeed/index.tsx:934
+msgid "Read less"
+msgstr ""
+
+#: src/screens/VideoFeed/index.tsx:934
+msgid "Read more"
+msgstr ""
+
+#: src/view/com/auth/SplashScreen.web.tsx:171
+msgid "Read the Bluesky blog"
+msgstr "Lege le blog de Bluesky"
+
+#: src/screens/Signup/StepInfo/Policies.tsx:58
+#: src/screens/Signup/StepInfo/Policies.tsx:84
+msgid "Read the Bluesky Privacy Policy"
+msgstr "Lege le politica de privatessa de Bluesky"
+
+#: src/screens/Signup/StepInfo/Policies.tsx:51
+#: src/screens/Signup/StepInfo/Policies.tsx:71
+msgid "Read the Bluesky Terms of Service"
+msgstr ""
+
+#: src/screens/Takendown.tsx:162
+#: src/screens/Takendown.tsx:170
+msgid "Reason for appeal"
+msgstr ""
+
+#: src/components/dms/ReportDialog.tsx:210
+msgid "Reason:"
+msgstr ""
+
+#: src/view/screens/Search/Search.tsx:986
+msgid "Recent Searches"
+msgstr "Cercas recente"
+
+#: src/screens/Search/components/ExploreRecommendations.tsx:50
+msgid "Recommended"
+msgstr "Recommendate"
+
+#: src/screens/Messages/components/MessageListError.tsx:20
+msgid "Reconnect"
+msgstr "Reconnecter"
+
+#: src/screens/Messages/ChatList.tsx:171
+msgid "Reload conversations"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:438
+#: src/components/FeedCard.tsx:315
+#: src/components/StarterPack/Wizard/WizardListCard.tsx:101
+#: src/components/StarterPack/Wizard/WizardListCard.tsx:108
+#: src/screens/Settings/Settings.tsx:468
+#: src/view/com/feeds/FeedSourceCard.tsx:322
+#: src/view/com/modals/ListAddRemoveUsers.tsx:269
+#: src/view/com/modals/UserAddRemoveLists.tsx:235
+#: src/view/com/posts/PostFeedErrorMessage.tsx:213
+msgid "Remove"
+msgstr ""
+
+#: src/components/StarterPack/Wizard/WizardListCard.tsx:57
+msgid "Remove {displayName} from starter pack"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:447
+#: src/screens/Settings/Settings.tsx:450
+msgid "Remove account"
+msgstr "Remover conto"
+
+#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:15
+msgid "Remove attachment"
+msgstr ""
+
+#: src/view/com/util/UserAvatar.tsx:404
+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/FeedShutdownMsg.tsx:116
+#: src/view/com/posts/FeedShutdownMsg.tsx:120
+#: src/view/com/posts/PostFeedErrorMessage.tsx:169
+msgid "Remove feed"
+msgstr ""
+
+#: src/view/com/posts/PostFeedErrorMessage.tsx:210
+msgid "Remove feed?"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:318
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:324
+#: src/view/com/feeds/FeedSourceCard.tsx:190
+#: src/view/com/feeds/FeedSourceCard.tsx:268
+#: src/view/screens/ProfileList.tsx:498
+#: src/view/screens/SavedFeeds.tsx:342
+msgid "Remove from my feeds"
+msgstr ""
+
+#: src/components/FeedCard.tsx:310
+#: src/view/com/feeds/FeedSourceCard.tsx:317
+msgid "Remove from my feeds?"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:460
+msgid "Remove from quick access?"
+msgstr ""
+
+#: src/screens/List/ListHiddenScreen.tsx:167
+msgid "Remove from saved feeds"
+msgstr ""
+
+#: src/view/com/composer/photos/Gallery.tsx:203
+msgid "Remove image"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:523
+msgid "Remove mute word from your list"
+msgstr ""
+
+#: src/view/screens/Search/Search.tsx:1034
+msgid "Remove profile"
+msgstr ""
+
+#: src/view/screens/Search/Search.tsx:1036
+msgid "Remove profile from search history"
+msgstr ""
+
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:285
+msgid "Remove quote"
+msgstr ""
+
+#: src/view/com/util/post-ctrls/RepostButton.tsx:155
+#: src/view/com/util/post-ctrls/RepostButton.tsx:165
+msgid "Remove repost"
+msgstr ""
+
+#: src/view/com/composer/videos/SubtitleDialog.tsx:260
+msgid "Remove subtitle file"
+msgstr ""
+
+#: src/view/com/posts/PostFeedErrorMessage.tsx:211
+msgid "Remove this feed from your saved feeds"
+msgstr ""
+
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:109
+msgid "Removed by author"
+msgstr ""
+
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:107
+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:171
+msgid "Removed from saved feeds"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:126
+#: src/view/com/posts/FeedShutdownMsg.tsx:44
+#: src/view/screens/ProfileList.tsx:382
+msgid "Removed from your feeds"
+msgstr ""
+
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:286
+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:234
+msgid "Replies"
+msgstr ""
+
+#: src/components/WhoCanReply.tsx:69
+msgid "Replies disabled"
+msgstr ""
+
+#: src/components/WhoCanReply.tsx:220
+msgid "Replies to this post are disabled."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:955
+msgctxt "action"
+msgid "Reply"
+msgstr ""
+
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:263
+msgid "Reply ({0, plural, one {# reply} other {# replies}})"
+msgstr ""
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:114
+#: src/lib/moderation/useModerationCauseDescription.ts:123
+msgid "Reply Hidden by Thread Author"
+msgstr ""
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:113
+#: src/lib/moderation/useModerationCauseDescription.ts:122
+msgid "Reply Hidden by You"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:384
+msgid "Reply settings"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:369
+msgid "Reply settings are chosen by the author of the thread"
+msgstr ""
+
+#: src/view/com/post-thread/PostThread.tsx:648
+msgid "Reply sorting"
+msgstr ""
+
+#: src/view/com/post/Post.tsx:204
+#: src/view/com/posts/PostFeedItem.tsx:553
+msgctxt "description"
+msgid "Reply to <0><1/>0>"
+msgstr ""
+
+#: src/view/com/posts/PostFeedItem.tsx:544
+msgctxt "description"
+msgid "Reply to a blocked post"
+msgstr ""
+
+#: src/view/com/posts/PostFeedItem.tsx:546
+msgctxt "description"
+msgid "Reply to a post"
+msgstr ""
+
+#: src/view/com/post/Post.tsx:202
+#: src/view/com/posts/PostFeedItem.tsx:550
+msgctxt "description"
+msgid "Reply to you"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:333
+msgid "Reply visibility updated"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:332
+msgid "Reply was successfully hidden"
+msgstr ""
+
+#: src/components/dms/MessageMenu.tsx:132
+#: src/components/dms/MessagesListBlockedFooter.tsx:84
+#: src/components/dms/MessagesListBlockedFooter.tsx:91
+msgid "Report"
+msgstr "Signalar"
+
+#: src/view/com/profile/ProfileMenu.tsx:299
+#: src/view/com/profile/ProfileMenu.tsx:302
+msgid "Report Account"
+msgstr "Signalar conto"
+
+#: src/components/dms/ConvoMenu.tsx:258
+#: src/components/dms/ConvoMenu.tsx:261
+#: src/components/dms/ReportConversationPrompt.tsx:17
+msgid "Report conversation"
+msgstr ""
+
+#: src/components/ReportDialog/index.tsx:44
+msgid "Report dialog"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:548
+msgid "Report feed"
+msgstr "Signalar fluxo"
+
+#: src/view/screens/ProfileList.tsx:540
+msgid "Report List"
+msgstr "Signalar lista"
+
+#: src/components/dms/MessageMenu.tsx:130
+msgid "Report message"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:611
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:613
+msgid "Report post"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:606
+#: src/screens/StarterPack/StarterPackScreen.tsx:609
+msgid "Report starter pack"
+msgstr ""
+
+#: src/components/dms/ReportDialog.tsx:336
+msgid "Report submitted"
+msgstr ""
+
+#: src/components/ReportDialog/SelectReportOptionView.tsx:41
+msgid "Report this content"
+msgstr "Signalar iste contento"
+
+#: src/components/ReportDialog/SelectReportOptionView.tsx:54
+msgid "Report this feed"
+msgstr "Signalar iste fluxo"
+
+#: src/components/ReportDialog/SelectReportOptionView.tsx:51
+msgid "Report this list"
+msgstr "Signalar iste lista"
+
+#: src/components/dms/ReportDialog.tsx:58
+#: src/components/dms/ReportDialog.tsx:178
+#: src/components/ReportDialog/SelectReportOptionView.tsx:60
+msgid "Report this message"
+msgstr ""
+
+#: src/components/ReportDialog/SelectReportOptionView.tsx:48
+msgid "Report this post"
+msgstr ""
+
+#: src/components/ReportDialog/SelectReportOptionView.tsx:57
+msgid "Report this starter pack"
+msgstr ""
+
+#: src/components/ReportDialog/SelectReportOptionView.tsx:45
+msgid "Report this user"
+msgstr ""
+
+#: src/view/com/util/post-ctrls/RepostButton.tsx:156
+#: src/view/com/util/post-ctrls/RepostButton.tsx:167
+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/view/com/util/post-ctrls/RepostButton.tsx:74
+msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:548
+#: src/view/com/util/post-ctrls/RepostButton.tsx:148
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:49
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:104
+msgid "Repost or quote post"
+msgstr ""
+
+#: src/screens/Post/PostRepostedBy.tsx:38
+msgid "Reposted By"
+msgstr ""
+
+#: src/view/com/posts/PostFeedItem.tsx:303
+msgid "Reposted by {0}"
+msgstr ""
+
+#: src/view/com/posts/PostFeedItem.tsx:322
+msgid "Reposted by <0><1/>0>"
+msgstr ""
+
+#: src/view/com/posts/PostFeedItem.tsx:301
+#: src/view/com/posts/PostFeedItem.tsx:320
+msgid "Reposted by you"
+msgstr ""
+
+#: src/view/com/post-thread/PostThreadItem.tsx:222
+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/screens/Settings/AccessibilitySettings.tsx:60
+#: src/screens/Settings/AccessibilitySettings.tsx:65
+msgid "Require alt text before posting"
+msgstr ""
+
+#: src/screens/Settings/components/Email2FAToggle.tsx:54
+msgid "Require an email code to log in to your account."
+msgstr ""
+
+#: src/screens/Signup/StepInfo/index.tsx:153
+msgid "Required for this provider"
+msgstr ""
+
+#: src/components/LabelingServiceCard/index.tsx:80
+msgid "Required in your region"
+msgstr ""
+
+#: src/screens/Settings/components/DisableEmail2FADialog.tsx:173
+#: src/screens/Settings/components/DisableEmail2FADialog.tsx:176
+msgid "Resend email"
+msgstr ""
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:267
+#: src/components/dialogs/VerifyEmailDialog.tsx:277
+#: src/components/intents/VerifyEmailIntentDialog.tsx:130
+msgid "Resend Email"
+msgstr ""
+
+#: src/components/intents/VerifyEmailIntentDialog.tsx:122
+msgid "Resend Verification Email"
+msgstr ""
+
+#: src/view/com/modals/ChangePassword.tsx:186
+msgid "Reset code"
+msgstr "Reinitialisar codice"
+
+#: src/view/com/modals/ChangePassword.tsx:193
+msgid "Reset Code"
+msgstr "Reinitialisar codice"
+
+#: src/screens/Settings/Settings.tsx:344
+#: src/screens/Settings/Settings.tsx:346
+msgid "Reset onboarding state"
+msgstr ""
+
+#: src/screens/Login/ForgotPasswordForm.tsx:80
+msgid "Reset password"
+msgstr "Reinitialisar contrasigno"
+
+#: src/screens/Login/LoginForm.tsx:314
+msgid "Retries login"
+msgstr ""
+
+#: src/view/com/util/error/ErrorMessage.tsx:62
+#: src/view/com/util/error/ErrorScreen.tsx:99
+msgid "Retries the last action, which errored out"
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:245
+#: src/components/Error.tsx:65
+#: src/components/Lists.tsx:110
+#: src/components/StarterPack/ProfileStarterPacks.tsx:335
+#: src/screens/Login/LoginForm.tsx:313
+#: src/screens/Login/LoginForm.tsx:320
+#: src/screens/Messages/ChatList.tsx:177
+#: 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:53
+#: src/view/com/util/error/ErrorMessage.tsx:60
+#: src/view/com/util/error/ErrorScreen.tsx:97
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57
+msgid "Retry"
+msgstr ""
+
+#: src/components/Error.tsx:73
+#: src/screens/List/ListHiddenScreen.tsx:216
+#: src/screens/StarterPack/StarterPackScreen.tsx:752
+#: src/view/screens/ProfileList.tsx:1010
+msgid "Return to previous page"
+msgstr ""
+
+#: src/view/screens/NotFound.tsx:61
+msgid "Returns to home page"
+msgstr ""
+
+#: src/screens/Profile/ProfileFeed/index.tsx:90
+#: src/screens/VideoFeed/index.tsx:1101
+#: src/view/screens/NotFound.tsx:60
+msgid "Returns to previous page"
+msgstr ""
+
+#: src/components/dialogs/BirthDateSettings.tsx:120
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:468
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:474
+#: src/components/StarterPack/QrCodeDialog.tsx:185
+#: src/screens/Profile/Header/EditProfileDialog.tsx:238
+#: src/screens/Profile/Header/EditProfileDialog.tsx:252
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:243
+#: src/view/com/composer/GifAltText.tsx:190
+#: src/view/com/composer/GifAltText.tsx:199
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:77
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:83
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:150
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:160
+#: src/view/com/modals/CreateOrEditList.tsx:317
+#: src/view/com/modals/EditProfile.tsx:219
+#: src/view/screens/SavedFeeds.tsx:109
+msgid "Save"
+msgstr "Salveguardar"
+
+#: src/view/com/lightbox/ImageViewing/index.tsx:622
+#: src/view/com/modals/CreateOrEditList.tsx:325
+msgctxt "action"
+msgid "Save"
+msgstr "Salveguardar"
+
+#: src/components/dialogs/BirthDateSettings.tsx:114
+msgid "Save birthday"
+msgstr ""
+
+#: src/view/screens/SavedFeeds.tsx:105
+#: src/view/screens/SavedFeeds.tsx:109
+msgid "Save changes"
+msgstr ""
+
+#: src/view/com/modals/EditProfile.tsx:227
+msgid "Save Changes"
+msgstr ""
+
+#: src/components/StarterPack/ShareDialog.tsx:150
+#: src/components/StarterPack/ShareDialog.tsx:157
+msgid "Save image"
+msgstr "Salveguardar imagine"
+
+#: src/view/com/modals/CropImage.web.tsx:104
+msgid "Save image crop"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
+msgid "Save new handle"
+msgstr ""
+
+#: src/components/StarterPack/QrCodeDialog.tsx:179
+msgid "Save QR code"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
+msgid "Save to my feeds"
+msgstr "Salveguardar a mi fluxos"
+
+#: src/view/screens/SavedFeeds.tsx:164
+msgid "Saved Feeds"
+msgstr "Fluxos salveguardate"
+
+#: src/view/com/lightbox/Lightbox.tsx:44
+msgid "Saved to your camera roll"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:135
+#: src/view/screens/ProfileList.tsx:362
+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/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/NotificationFeedItem.tsx:540
+#: src/view/com/notifications/NotificationFeedItem.tsx:565
+msgid "Say hello!"
+msgstr ""
+
+#: src/screens/Onboarding/index.tsx:33
+#: src/screens/Onboarding/state.ts:112
+msgid "Science"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:967
+msgid "Scroll to top"
+msgstr ""
+
+#: src/components/dms/dialogs/SearchablePeopleList.tsx:487
+#: src/components/forms/SearchInput.tsx:34
+#: src/components/forms/SearchInput.tsx:36
+#: src/Navigation.tsx:617
+#: src/view/com/modals/ListAddRemoveUsers.tsx:76
+#: src/view/screens/Search/Search.tsx:570
+#: src/view/shell/bottom-bar/BottomBar.tsx:182
+#: src/view/shell/desktop/LeftNav.tsx:602
+#: src/view/shell/Drawer.tsx:370
+msgid "Search"
+msgstr ""
+
+#: src/components/ProgressGuide/FollowDialog.tsx:745
+msgid "Search by name or interest"
+msgstr ""
+
+#: src/view/screens/Feeds.tsx:441
+msgid "Search feeds"
+msgstr ""
+
+#: src/components/ProgressGuide/FollowDialog.tsx:575
+msgid "Search for \"{interestsDisplayName}\"{activeText}"
+msgstr ""
+
+#: src/view/shell/desktop/Search.tsx:201
+msgid "Search for \"{query}\""
+msgstr ""
+
+#: src/view/screens/Search/Search.tsx:932
+msgid "Search for \"{searchText}\""
+msgstr ""
+
+#: src/screens/StarterPack/Wizard/index.tsx:474
+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:507
+#: src/components/dms/dialogs/SearchablePeopleList.tsx:508
+#: src/components/ProgressGuide/FollowDialog.tsx:764
+#: src/components/ProgressGuide/FollowDialog.tsx:765
+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/RichTextTag.tsx:111
+msgid "See {tag} posts"
+msgstr ""
+
+#: src/components/RichTextTag.tsx:124
+msgid "See {tag} posts by user"
+msgstr ""
+
+#: src/components/RichTextTag.tsx:118
+msgid "See #{tag} posts"
+msgstr ""
+
+#: src/components/RichTextTag.tsx:132
+msgid "See #{tag} posts by user"
+msgstr ""
+
+#: src/view/com/auth/SplashScreen.web.tsx:176
+msgid "See jobs at Bluesky"
+msgstr ""
+
+#: src/view/screens/SavedFeeds.tsx:205
+msgid "See this guide"
+msgstr ""
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:194
+msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause"
+msgstr ""
+
+#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67
+msgid "Select a color"
+msgstr "Selige un color"
+
+#: 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/Settings/LanguageSettings.tsx:262
+msgid "Select content languages"
+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:306
+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/screens/Settings/LanguageSettings.tsx:276
+msgid "Select languages"
+msgstr ""
+
+#: src/components/ReportDialog/SelectLabelerView.tsx:28
+msgid "Select moderator"
+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:141
+msgid "Select the moderation service(s) to report to"
+msgstr ""
+
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:100
+msgid "Select video"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:242
+msgid "Select what content this mute word should apply to."
+msgstr ""
+
+#: src/screens/Settings/LanguageSettings.tsx:255
+msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown."
+msgstr ""
+
+#: src/screens/Settings/LanguageSettings.tsx:84
+msgid "Select your app language for the default text to display in the app."
+msgstr ""
+
+#: src/screens/Signup/StepInfo/index.tsx:217
+msgid "Select your date of birth"
+msgstr ""
+
+#: src/screens/Onboarding/StepInterests/index.tsx:192
+msgid "Select your interests from the options below"
+msgstr ""
+
+#: src/screens/Settings/LanguageSettings.tsx:171
+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:232
+msgid "Send Confirmation"
+msgstr ""
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:225
+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:145
+msgid "Send email"
+msgstr ""
+
+#: src/view/com/modals/DeleteAccount.tsx:158
+msgctxt "action"
+msgid "Send Email"
+msgstr ""
+
+#: src/view/shell/Drawer.tsx:317
+msgid "Send feedback"
+msgstr ""
+
+#: src/screens/Messages/components/MessageInput.tsx:173
+#: src/screens/Messages/components/MessageInput.web.tsx:235
+msgid "Send message"
+msgstr "Inviar message"
+
+#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62
+msgid "Send post to..."
+msgstr "Inviar message a..."
+
+#: src/components/dms/ReportDialog.tsx:269
+#: src/components/dms/ReportDialog.tsx:272
+#: src/components/ReportDialog/SubmitView.tsx:221
+#: src/components/ReportDialog/SubmitView.tsx:225
+msgid "Send report"
+msgstr "Inviar reporto"
+
+#: src/components/ReportDialog/SelectLabelerView.tsx:42
+msgid "Send report to {0}"
+msgstr "Inviar reporto a {0}"
+
+#: src/screens/Settings/components/DisableEmail2FADialog.tsx:120
+#: src/screens/Settings/components/DisableEmail2FADialog.tsx:123
+msgid "Send verification email"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:423
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:426
+msgid "Send via direct message"
+msgstr "Inviar via message directe"
+
+#: src/view/com/modals/DeleteAccount.tsx:147
+msgid "Sends email with confirmation code for account deletion"
+msgstr ""
+
+#: src/view/com/auth/server-input/index.tsx:163
+msgid "Server address"
+msgstr "Adresse de servitor"
+
+#: src/screens/Settings/AppIconSettings/index.tsx:178
+msgid "Set app icon to {0}"
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:306
+msgid "Set birthdate"
+msgstr ""
+
+#: src/screens/Login/SetNewPasswordForm.tsx:102
+msgid "Set new password"
+msgstr "Definir nove contrasigno"
+
+#: src/screens/Onboarding/Layout.tsx:47
+msgid "Set up your account"
+msgstr ""
+
+#: src/screens/Login/ForgotPasswordForm.tsx:107
+msgid "Sets email for password reset"
+msgstr ""
+
+#: src/Navigation.tsx:170
+#: src/screens/Settings/Settings.tsx:80
+#: src/view/shell/desktop/LeftNav.tsx:694
+#: src/view/shell/Drawer.tsx:534
+msgid "Settings"
+msgstr "Parametros"
+
+#: src/screens/ModerationInteractionSettings/index.tsx:102
+msgid "Settings saved"
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:174
+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/Hashtag.tsx:126
+#: src/screens/StarterPack/StarterPackScreen.tsx:423
+#: src/screens/StarterPack/StarterPackScreen.tsx:595
+#: src/screens/Topic.tsx:102
+#: src/view/com/profile/ProfileMenu.tsx:195
+#: src/view/com/profile/ProfileMenu.tsx:204
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:434
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:443
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:346
+#: src/view/screens/ProfileList.tsx:483
+msgid "Share"
+msgstr ""
+
+#: src/view/com/lightbox/ImageViewing/index.tsx:631
+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/PostDropdownBtnMenuItems.tsx:691
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:362
+msgid "Share anyway"
+msgstr ""
+
+#: src/components/StarterPack/ShareDialog.tsx:123
+#: src/components/StarterPack/ShareDialog.tsx:130
+#: src/screens/StarterPack/StarterPackScreen.tsx:599
+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:87
+msgid "Share link dialog"
+msgstr ""
+
+#: src/components/StarterPack/ShareDialog.tsx:134
+#: src/components/StarterPack/ShareDialog.tsx:145
+msgid "Share QR code"
+msgstr "Compartir codice QR"
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:470
+msgid "Share this feed"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:416
+msgid "Share this starter pack"
+msgstr ""
+
+#: src/components/StarterPack/ShareDialog.tsx:99
+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 ""
+
+#: src/Navigation.tsx:266
+msgid "Shared Preferences Tester"
+msgstr ""
+
+#: src/view/com/modals/LinkWarning.tsx:92
+msgid "Shares the linked website"
+msgstr ""
+
+#: src/components/moderation/ContentHider.tsx:200
+#: src/components/moderation/LabelPreference.tsx:137
+#: src/components/moderation/PostHider.tsx:122
+msgid "Show"
+msgstr "Monstrar"
+
+#: 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:187
+#: src/screens/VideoFeed/index.tsx:609
+#: src/screens/VideoFeed/index.tsx:615
+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:22
+msgid "Show hidden replies"
+msgstr "Monstrar responsas celate"
+
+#: src/view/com/post-thread/PostThreadItem.tsx:805
+msgid "Show information about when this post was created"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:473
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:475
+msgid "Show less like this"
+msgstr ""
+
+#: src/screens/List/ListHiddenScreen.tsx:183
+msgid "Show list anyway"
+msgstr ""
+
+#: src/view/com/post-thread/PostThreadItem.tsx:592
+#: src/view/com/post/Post.tsx:242
+#: src/view/com/posts/PostFeedItem.tsx:509
+msgid "Show More"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:465
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:467
+msgid "Show more like this"
+msgstr ""
+
+#: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:22
+msgid "Show muted replies"
+msgstr "Monstrar responsas silentiate"
+
+#: src/screens/Settings/Settings.tsx:104
+msgid "Show other accounts you can switch to"
+msgstr ""
+
+#: src/screens/Settings/FollowingFeedPreferences.tsx:104
+#: src/screens/Settings/FollowingFeedPreferences.tsx:114
+msgid "Show quote posts"
+msgstr ""
+
+#: src/screens/Settings/FollowingFeedPreferences.tsx:68
+#: src/screens/Settings/FollowingFeedPreferences.tsx:78
+msgid "Show replies"
+msgstr "Monstrar responsas"
+
+#: src/view/com/post-thread/PostThread.tsx:622
+msgid "Show replies as"
+msgstr ""
+
+#: src/screens/Settings/ThreadPreferences.tsx:151
+msgid "Show replies as threaded"
+msgstr ""
+
+#: src/screens/Settings/ThreadPreferences.tsx:126
+msgid "Show replies by people you follow before all other replies"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:539
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:549
+msgid "Show reply for everyone"
+msgstr ""
+
+#: src/screens/Settings/FollowingFeedPreferences.tsx:86
+#: src/screens/Settings/FollowingFeedPreferences.tsx:96
+msgid "Show reposts"
+msgstr ""
+
+#: src/screens/Settings/FollowingFeedPreferences.tsx:129
+#: src/screens/Settings/FollowingFeedPreferences.tsx:139
+msgid "Show samples of your saved feeds in your Following feed"
+msgstr ""
+
+#: src/components/moderation/ContentHider.tsx:152
+#: 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:173
+#: src/view/com/auth/SplashScreen.tsx:61
+#: src/view/com/auth/SplashScreen.tsx:69
+#: src/view/com/auth/SplashScreen.web.tsx:123
+#: src/view/com/auth/SplashScreen.web.tsx:131
+#: src/view/shell/bottom-bar/BottomBar.tsx:314
+#: src/view/shell/bottom-bar/BottomBar.tsx:319
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:212
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:217
+#: 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/screens/Settings/Settings.tsx:225
+#: src/screens/Settings/Settings.tsx:227
+#: src/screens/Settings/Settings.tsx:259
+#: src/view/shell/desktop/LeftNav.tsx:208
+#: src/view/shell/desktop/LeftNav.tsx:288
+#: src/view/shell/desktop/LeftNav.tsx:291
+msgid "Sign out"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:256
+#: src/view/shell/desktop/LeftNav.tsx:205
+msgid "Sign out?"
+msgstr ""
+
+#: src/components/moderation/ScreenHider.tsx:91
+#: src/lib/moderation/useGlobalLabelStrings.ts:28
+msgid "Sign-in Required"
+msgstr ""
+
+#: src/lib/hooks/useAccountSwitcher.ts:41
+#: src/screens/Login/ChooseAccountForm.tsx:53
+msgid "Signed in as @{0}"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:299
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:306
+msgid "Signup without a starter pack"
+msgstr ""
+
+#: src/components/FeedInterstitials.tsx:335
+msgid "Similar accounts"
+msgstr ""
+
+#: src/screens/Onboarding/StepInterests/index.tsx:231
+#: src/screens/StarterPack/Wizard/index.tsx:195
+msgid "Skip"
+msgstr "Saltar"
+
+#: src/screens/Onboarding/StepInterests/index.tsx:228
+msgid "Skip this flow"
+msgstr ""
+
+#: src/screens/Settings/AppearanceSettings.tsx:164
+msgid "Smaller"
+msgstr ""
+
+#: src/screens/Onboarding/index.tsx:37
+#: src/screens/Onboarding/state.ts:100
+msgid "Software Dev"
+msgstr ""
+
+#: src/components/FeedInterstitials.tsx:470
+msgid "Some other feeds you might like"
+msgstr ""
+
+#: src/components/WhoCanReply.tsx:70
+msgid "Some people can reply"
+msgstr ""
+
+#: src/screens/Messages/Conversation.tsx:112
+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:97
+#: src/screens/Profile/Sections/Labels.tsx:88
+msgid "Something went wrong, please try again."
+msgstr ""
+
+#: src/components/Lists.tsx:174
+#: src/screens/Settings/NotificationSettings.tsx:55
+msgid "Something went wrong!"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:538
+msgid "Something wrong? Let us know."
+msgstr ""
+
+#: src/App.native.tsx:121
+#: src/App.web.tsx:97
+msgid "Sorry! Your session expired. Please log in again."
+msgstr ""
+
+#: src/screens/Settings/ThreadPreferences.tsx:55
+msgid "Sort replies"
+msgstr ""
+
+#: src/screens/Settings/ThreadPreferences.tsx:62
+msgid "Sort replies by"
+msgstr ""
+
+#: src/screens/Settings/ThreadPreferences.tsx:59
+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:113
+msgid "Sports"
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:72
+msgid "Start a new chat"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:817
+#: src/view/screens/ProfileList.tsx:938
+msgid "Start adding people"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:824
+#: src/view/screens/ProfileList.tsx:945
+msgid "Start adding people!"
+msgstr ""
+
+#: src/components/dms/dialogs/SearchablePeopleList.tsx:353
+msgid "Start chat with {displayName}"
+msgstr ""
+
+#: src/Navigation.tsx:418
+#: src/Navigation.tsx:423
+#: src/screens/StarterPack/Wizard/index.tsx:186
+msgid "Starter Pack"
+msgstr ""
+
+#: src/components/StarterPack/StarterPackCard.tsx:81
+msgid "Starter pack by {0}"
+msgstr ""
+
+#: src/view/com/profile/ProfileSubpageHeader.tsx:182
+msgid "Starter pack by <0/>"
+msgstr ""
+
+#: src/components/StarterPack/StarterPackCard.tsx:80
+#: src/view/com/profile/ProfileSubpageHeader.tsx:180
+msgid "Starter pack by you"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:716
+msgid "Starter pack is invalid"
+msgstr ""
+
+#: src/view/screens/Profile.tsx:239
+msgid "Starter Packs"
+msgstr ""
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:243
+msgid "Starter packs let you easily share your favorite feeds and people with your friends."
+msgstr ""
+
+#: src/screens/Settings/AboutSettings.tsx:53
+#: src/screens/Settings/AboutSettings.tsx:56
+msgid "Status Page"
+msgstr "Pagina de stato"
+
+#: src/screens/Signup/index.tsx:130
+msgid "Step {0} of {1}"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:309
+msgid "Storage cleared, you need to restart the app now."
+msgstr ""
+
+#: src/Navigation.tsx:256
+#: src/screens/Settings/Settings.tsx:325
+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/screens/Takendown.tsx:70
+msgid "Submit appeal"
+msgstr ""
+
+#: src/screens/Takendown.tsx:76
+msgid "Submit Appeal"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:712
+msgid "Subscribe"
+msgstr "Subscriber"
+
+#: src/screens/Profile/Sections/Labels.tsx:202
+msgid "Subscribe to @{0} to use these labels:"
+msgstr ""
+
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:238
+msgid "Subscribe to Labeler"
+msgstr ""
+
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:204
+msgid "Subscribe to this labeler"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:708
+msgid "Subscribe to this list"
+msgstr ""
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:95
+msgid "Success!"
+msgstr ""
+
+#: src/view/screens/Search/Explore.tsx:368
+msgid "Suggested accounts"
+msgstr ""
+
+#: src/components/FeedInterstitials.tsx:337
+msgid "Suggested for you"
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:145
+#: src/view/com/composer/labels/LabelsBtn.tsx:148
+msgid "Suggestive"
+msgstr ""
+
+#: src/Navigation.tsx:276
+#: src/view/screens/Support.tsx:31
+#: src/view/screens/Support.tsx:34
+msgid "Support"
+msgstr "Supporto"
+
+#: src/screens/Settings/Settings.tsx:102
+#: src/screens/Settings/Settings.tsx:116
+#: src/screens/Settings/Settings.tsx:412
+#: src/view/shell/desktop/LeftNav.tsx:243
+msgid "Switch account"
+msgstr ""
+
+#: src/components/dialogs/SwitchAccount.tsx:46
+#: src/components/dialogs/SwitchAccount.tsx:49
+msgid "Switch Account"
+msgstr ""
+
+#: src/view/shell/desktop/LeftNav.tsx:107
+msgid "Switch accounts"
+msgstr ""
+
+#: src/view/shell/desktop/LeftNav.tsx:251
+msgid "Switch to {0}"
+msgstr ""
+
+#: src/screens/Settings/AppearanceSettings.tsx:97
+#: src/screens/Settings/AppearanceSettings.tsx:147
+msgid "System"
+msgstr "Systema"
+
+#: src/screens/Settings/AboutSettings.tsx:60
+#: src/screens/Settings/AboutSettings.tsx:63
+#: src/screens/Settings/Settings.tsx:318
+msgid "System log"
+msgstr "Registro de systema"
+
+#: src/components/dialogs/MutedWords.tsx:282
+msgid "Tags only"
+msgstr "Solmente etiquettas"
+
+#: src/screens/Settings/AppIconSettings/index.tsx:216
+msgid "Tap to change app icon"
+msgstr ""
+
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:138
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:174
+msgid "Tap to close the emoji picker"
+msgstr ""
+
+#: src/components/ProgressGuide/Toast.tsx:156
+msgid "Tap to dismiss"
+msgstr "Tocca pro clauder"
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135
+msgid "Tap to enter full screen"
+msgstr ""
+
+#: src/screens/VideoFeed/index.tsx:933
+msgid "Tap to expand or collapse post text."
+msgstr ""
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141
+msgid "Tap to play or pause"
+msgstr ""
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:158
+msgid "Tap to toggle sound"
+msgstr ""
+
+#: src/view/com/util/images/AutoSizedImage.tsx:199
+#: src/view/com/util/images/AutoSizedImage.tsx:221
+msgid "Tap to view full image"
+msgstr ""
+
+#: src/components/VideoPostCard.tsx:115
+msgid "Tap to view video in immersive mode."
+msgstr ""
+
+#: src/state/shell/progress-guide.tsx:233
+msgid "Task complete - 10 follows!"
+msgstr ""
+
+#: src/state/shell/progress-guide.tsx:223
+msgid "Task complete - 10 likes!"
+msgstr ""
+
+#: src/components/ProgressGuide/List.tsx:64
+msgid "Teach our algorithm what you like"
+msgstr ""
+
+#: src/screens/Onboarding/index.tsx:36
+#: src/screens/Onboarding/state.ts:114
+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:62
+msgid "Tell us a little more"
+msgstr ""
+
+#: src/view/shell/desktop/RightNav.tsx:107
+#: src/view/shell/desktop/RightNav.tsx:108
+msgid "Terms"
+msgstr ""
+
+#: src/Navigation.tsx:286
+#: src/screens/Settings/AboutSettings.tsx:37
+#: src/screens/Settings/AboutSettings.tsx:40
+#: src/view/screens/TermsOfService.tsx:31
+#: src/view/shell/Drawer.tsx:622
+#: src/view/shell/Drawer.tsx:624
+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/dms/ReportDialog.tsx:227
+msgid "Text field"
+msgstr ""
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:263
+#: src/screens/Messages/components/ChatDisabled.tsx:108
+msgid "Text input field"
+msgstr ""
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:96
+msgid "Thank you! Your email has been successfully verified."
+msgstr ""
+
+#: src/components/ReportDialog/SubmitView.tsx:83
+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/screens/Settings/components/ChangeHandleDialog.tsx:468
+msgid "That contains the following:"
+msgstr ""
+
+#: src/screens/Signup/StepHandle.tsx:55
+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:104
+#: src/screens/StarterPack/Wizard/index.tsx:114
+msgid "That starter pack could not be found."
+msgstr ""
+
+#: src/view/com/post-thread/PostQuotes.tsx:132
+msgid "That's all, folks!"
+msgstr ""
+
+#: src/screens/VideoFeed/index.tsx:1073
+msgid "That's everything!"
+msgstr ""
+
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:279
+#: src/view/com/profile/ProfileMenu.tsx:329
+msgid "The account will be able to interact with you after unblocking."
+msgstr ""
+
+#: src/screens/Settings/AppIconSettings/index.tsx:41
+#: src/screens/Settings/AppIconSettings/index.tsx:222
+msgid "The app will be restarted"
+msgstr ""
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:117
+#: src/lib/moderation/useModerationCauseDescription.ts:126
+msgid "The author of this thread has hidden this reply."
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:358
+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 "Le fluxo Discoperir"
+
+#: src/state/shell/progress-guide.tsx:224
+msgid "The Discover feed now knows what you like"
+msgstr "Le fluxo Discoperir ora cognosce lo que tu ama"
+
+#: 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/ModerationInteractionSettings/index.tsx:42
+msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer."
+msgstr ""
+
+#: src/screens/Onboarding/Layout.tsx:57
+msgid "The following steps will help customize your Bluesky experience."
+msgstr ""
+
+#: src/view/com/post-thread/PostThread.tsx:262
+#: src/view/com/post-thread/PostThread.tsx:274
+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:395
+msgid "The selected video is larger than 50MB."
+msgstr ""
+
+#: src/lib/strings/errors.ts:18
+msgid "The server appears to be experiencing issues. Please try again in a few moments."
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:726
+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/screens/Settings/AppearanceSettings.tsx:151
+msgid "Theme"
+msgstr "Thema"
+
+#: 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:226
+msgid "There was an issue connecting to Tenor."
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:177
+#: src/view/screens/ProfileList.tsx:365
+#: src/view/screens/ProfileList.tsx:384
+#: src/view/screens/SavedFeeds.tsx:85
+msgid "There was an issue contacting the server"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:415
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:112
+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/NotificationFeed.tsx:124
+msgid "There was an issue fetching notifications. Tap here to try again."
+msgstr ""
+
+#: src/view/com/posts/PostFeed.tsx:592
+msgid "There was an issue fetching posts. Tap here to try again."
+msgstr ""
+
+#: src/view/com/lists/ListMembers.tsx:165
+msgid "There was an issue fetching the list. Tap here to try again."
+msgstr ""
+
+#: src/screens/Settings/AppPasswords.tsx:60
+msgid "There was an issue fetching your app passwords"
+msgstr ""
+
+#: src/view/com/feeds/ProfileFeedgens.tsx:155
+#: src/view/com/lists/ProfileLists.tsx:154
+msgid "There was an issue fetching your lists. Tap here to try again."
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:105
+msgid "There was an issue fetching your service info"
+msgstr ""
+
+#: src/view/com/posts/PostFeedErrorMessage.tsx:145
+msgid "There was an issue removing this feed. Please check your internet connection and try again."
+msgstr ""
+
+#: src/components/dms/ReportDialog.tsx:257
+#: src/components/ReportDialog/SubmitView.tsx:88
+msgid "There was an issue sending your report. Please check your internet connection."
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:140
+#: src/view/com/posts/FeedShutdownMsg.tsx:52
+#: src/view/com/posts/FeedShutdownMsg.tsx:71
+msgid "There was an issue updating your feeds, please check your internet connection and try again."
+msgstr ""
+
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:107
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:141
+#: src/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
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:364
+msgid "There was an issue! {0}"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:216
+#: src/screens/List/ListHiddenScreen.tsx:63
+#: src/screens/List/ListHiddenScreen.tsx:77
+#: src/screens/List/ListHiddenScreen.tsx:99
+#: src/view/screens/ProfileList.tsx:396
+#: src/view/screens/ProfileList.tsx:409
+#: src/view/screens/ProfileList.tsx:422
+#: src/view/screens/ProfileList.tsx:435
+msgid "There was an issue. Please check your internet connection and try again."
+msgstr ""
+
+#: src/components/dialogs/GifSelect.tsx:270
+#: src/view/com/util/ErrorBoundary.tsx:59
+msgid "There was an unexpected issue in the application. Please let us know if this happened to you!"
+msgstr ""
+
+#: src/screens/SignupQueued.tsx:130
+msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can."
+msgstr ""
+
+#: src/screens/Settings/FollowingFeedPreferences.tsx:62
+msgid "These settings only apply to the Following feed."
+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}0>."
+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:82
+#: 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/PostFeedErrorMessage.tsx:114
+msgid "This content is not viewable without a Bluesky account."
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:284
+msgid "This conversation is with a deleted or a deactivated account. Press for options."
+msgstr ""
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:94
+msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost0>."
+msgstr ""
+
+#: src/lib/strings/errors.ts:21
+msgid "This feature is not available while using an App Password. Please sign in with your main password."
+msgstr ""
+
+#: src/view/com/posts/PostFeedErrorMessage.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:38
+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/screens/Profile/ProfileFeed/index.tsx:189
+#: src/view/screens/ProfileList.tsx:814
+msgid "This feed is empty."
+msgstr "Iste fluxo es vacue."
+
+#: src/view/com/posts/FeedShutdownMsg.tsx:99
+msgid "This feed is no longer online. We are showing <0>Discover0> instead."
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:574
+msgid "This handle is reserved. Please try a different one."
+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:150
+msgid "This label was applied by <0>{0}0>."
+msgstr ""
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:145
+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:189
+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:146
+msgid "This list - created by <0>{0}0> - contains possible violations of Bluesky's community guidelines in its name or description."
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:933
+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/post-thread/PostThreadItem.tsx:845
+msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
+msgstr ""
+
+#: src/components/WhoCanReply.tsx:213
+msgid "This post has an unknown type of threadgate on it. Your app may be out of date."
+msgstr ""
+
+#: src/view/com/post-thread/PostThreadItem.tsx:152
+msgid "This post has been deleted."
+msgstr "Iste message ha essite supprimite."
+
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:688
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:359
+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/PostDropdownBtnMenuItems.tsx:669
+msgid "This post will be hidden from feeds and threads. This cannot be undone."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:428
+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/PostDropdownBtnMenuItems.tsx:731
+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/screens/Settings/components/ChangeHandleDialog.tsx:437
+msgid "This should create a domain record at:"
+msgstr ""
+
+#: src/view/com/profile/ProfileFollowers.tsx:95
+msgid "This user doesn't have any followers."
+msgstr ""
+
+#: src/components/dms/MessagesListBlockedFooter.tsx:67
+msgid "This user has blocked you"
+msgstr ""
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:77
+#: 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:57
+msgid "This user is included in the <0>{0}0> list which you have blocked."
+msgstr ""
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:89
+msgid "This user is included in the <0>{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:95
+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/screens/Settings/Settings.tsx:462
+msgid "This will remove @{0} from the quick access list."
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:721
+msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
+msgstr ""
+
+#: src/view/com/post-thread/PostThread.tsx:606
+#: src/view/com/post-thread/PostThread.tsx:609
+msgid "Thread options"
+msgstr ""
+
+#: src/screens/Settings/ContentAndMediaSettings.tsx:67
+#: src/screens/Settings/ContentAndMediaSettings.tsx:70
+msgid "Thread preferences"
+msgstr ""
+
+#: src/screens/Settings/ThreadPreferences.tsx:45
+msgid "Thread Preferences"
+msgstr ""
+
+#: src/view/com/post-thread/PostThread.tsx:636
+#: src/view/com/post-thread/PostThread.tsx:641
+msgid "Threaded"
+msgstr ""
+
+#: src/screens/Settings/ThreadPreferences.tsx:142
+msgid "Threaded mode"
+msgstr ""
+
+#: src/Navigation.tsx:319
+msgid "Threads Preferences"
+msgstr ""
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/TimeIndicator.tsx:33
+msgid "Time remaining: {time} seconds"
+msgstr ""
+
+#: src/screens/Settings/components/DisableEmail2FADialog.tsx:99
+msgid "To disable the email 2FA method, please verify your access to the email address."
+msgstr ""
+
+#: src/components/dms/ReportConversationPrompt.tsx:19
+msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue."
+msgstr ""
+
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:127
+msgid "To upload videos to Bluesky, you must first verify your email."
+msgstr ""
+
+#: src/components/ReportDialog/SelectLabelerView.tsx:31
+msgid "To whom would you like to send this report?"
+msgstr ""
+
+#: src/components/dms/DateDivider.tsx:44
+msgid "Today"
+msgstr "Hodie"
+
+#: src/view/com/util/forms/DropdownButton.tsx:258
+msgid "Toggle dropdown"
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:335
+msgid "Toggle to enable or disable adult content"
+msgstr ""
+
+#: src/screens/Hashtag.tsx:84
+#: src/screens/Topic.tsx:71
+#: src/view/screens/Search/Search.tsx:496
+msgid "Top"
+msgstr ""
+
+#: src/Navigation.tsx:393
+msgid "Topic"
+msgstr ""
+
+#: src/components/dms/MessageMenu.tsx:103
+#: src/components/dms/MessageMenu.tsx:105
+#: src/view/com/post-thread/PostThreadItem.tsx:770
+#: src/view/com/post-thread/PostThreadItem.tsx:773
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:404
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:406
+msgid "Translate"
+msgstr "Traducer"
+
+#: src/screens/Search/components/ExploreTrendingTopics.tsx:69
+#: src/view/shell/desktop/SidebarTrendingTopics.tsx:59
+msgid "Trending"
+msgstr ""
+
+#: src/components/interstitials/TrendingVideos.tsx:88
+#: src/screens/Search/components/ExploreTrendingVideos.tsx:106
+msgid "Trending Videos"
+msgstr ""
+
+#: src/view/com/util/error/ErrorScreen.tsx:103
+msgctxt "action"
+msgid "Try again"
+msgstr "Retenta"
+
+#: src/screens/Onboarding/state.ts:115
+msgid "TV"
+msgstr "TV"
+
+#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:56
+msgid "Two-factor authentication (2FA)"
+msgstr ""
+
+#: src/screens/Signup/StepHandle.tsx:118
+msgid "Type your desired username"
+msgstr ""
+
+#: src/screens/Messages/components/MessageInput.tsx:148
+msgid "Type your message here"
+msgstr "Scribe tu message hic"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:413
+msgid "Type:"
+msgstr "Typo:"
+
+#: src/view/screens/ProfileList.tsx:590
+msgid "Un-block list"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:575
+msgid "Un-mute list"
+msgstr ""
+
+#: src/lib/strings/errors.ts:11
+msgid "Unable to connect. Please check your internet connection and try again."
+msgstr ""
+
+#: src/screens/Login/ForgotPasswordForm.tsx:68
+#: src/screens/Login/index.tsx:76
+#: src/screens/Login/LoginForm.tsx:162
+#: src/screens/Login/SetNewPasswordForm.tsx:77
+#: 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:650
+msgid "Unable to delete"
+msgstr "Impossibile de supprimer"
+
+#: src/components/dms/MessagesListBlockedFooter.tsx:96
+#: src/components/dms/MessagesListBlockedFooter.tsx:103
+#: src/components/dms/MessagesListBlockedFooter.tsx:111
+#: src/components/dms/MessagesListBlockedFooter.tsx:118
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:197
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
+#: src/view/com/profile/ProfileMenu.tsx:341
+#: src/view/screens/ProfileList.tsx:694
+msgid "Unblock"
+msgstr "Disblocar"
+
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202
+msgctxt "action"
+msgid "Unblock"
+msgstr "Disblocar"
+
+#: src/components/dms/ConvoMenu.tsx:250
+#: src/components/dms/ConvoMenu.tsx:253
+msgid "Unblock account"
+msgstr "Disblocar conto"
+
+#: src/view/com/profile/ProfileMenu.tsx:279
+#: src/view/com/profile/ProfileMenu.tsx:285
+msgid "Unblock Account"
+msgstr "Disblocar conto"
+
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277
+#: src/view/com/profile/ProfileMenu.tsx:323
+msgid "Unblock Account?"
+msgstr "Disblocar le conto?"
+
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
+msgid "Undo repost"
+msgstr ""
+
+#: src/view/com/util/post-ctrls/RepostButton.tsx:68
+msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
+msgstr ""
+
+#: src/view/com/profile/FollowButton.tsx:63
+msgctxt "action"
+msgid "Unfollow"
+msgstr ""
+
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:217
+msgid "Unfollow {0}"
+msgstr ""
+
+#: src/view/com/profile/ProfileMenu.tsx:221
+#: src/view/com/profile/ProfileMenu.tsx:231
+msgid "Unfollow Account"
+msgstr ""
+
+#: src/screens/VideoFeed/index.tsx:803
+msgid "Unfollow user"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+msgid "Unlike"
+msgstr ""
+
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:305
+msgid "Unlike ({0, plural, one {# like} other {# likes}})"
+msgstr ""
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:155
+#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94
+msgctxt "video"
+msgid "Unmute"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:701
+msgid "Unmute"
+msgstr ""
+
+#: src/components/RichTextTag.tsx:140
+#: src/components/RichTextTag.tsx:153
+msgid "Unmute {tag}"
+msgstr ""
+
+#: src/view/com/profile/ProfileMenu.tsx:258
+#: src/view/com/profile/ProfileMenu.tsx:264
+msgid "Unmute Account"
+msgstr ""
+
+#: src/components/dms/ConvoMenu.tsx:239
+msgid "Unmute conversation"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:489
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:493
+msgid "Unmute thread"
+msgstr ""
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:318
+msgid "Unmute video"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:685
+msgid "Unpin"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:519
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:526
+msgid "Unpin feed"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:309
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:311
+msgid "Unpin from home"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:379
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:386
+msgid "Unpin from profile"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:555
+msgid "Unpin moderation list"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
+msgid "Unpinned {0} from Home"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:352
+msgid "Unpinned from your feeds"
+msgstr ""
+
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:236
+msgid "Unsubscribe"
+msgstr ""
+
+#: src/screens/List/ListHiddenScreen.tsx:195
+#: src/screens/List/ListHiddenScreen.tsx:205
+msgid "Unsubscribe from list"
+msgstr ""
+
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:203
+msgid "Unsubscribe from this labeler"
+msgstr ""
+
+#: src/screens/List/ListHiddenScreen.tsx:86
+msgid "Unsubscribed from list"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:781
+msgid "Unsupported video type"
+msgstr ""
+
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:66
+msgid "Unsupported video type: {0}"
+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}0> in Lists"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
+msgid "Update to {domain}"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:306
+msgid "Updating quote attachment failed"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:336
+msgid "Updating reply visibility failed"
+msgstr ""
+
+#: src/screens/Login/SetNewPasswordForm.tsx:186
+msgid "Updating..."
+msgstr ""
+
+#: src/screens/Onboarding/StepProfile/index.tsx:290
+msgid "Upload a photo instead"
+msgstr "Incargar un photo in su loco"
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:453
+msgid "Upload a text file to:"
+msgstr ""
+
+#: src/view/com/util/UserAvatar.tsx:372
+#: src/view/com/util/UserAvatar.tsx:375
+#: 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:389
+#: src/view/com/util/UserBanner.tsx:140
+msgid "Upload from Files"
+msgstr ""
+
+#: src/view/com/util/UserAvatar.tsx:383
+#: src/view/com/util/UserAvatar.tsx:387
+#: src/view/com/util/UserBanner.tsx:134
+#: src/view/com/util/UserBanner.tsx:138
+msgid "Upload from Library"
+msgstr ""
+
+#: src/lib/api/index.ts:301
+msgid "Uploading images..."
+msgstr ""
+
+#: src/lib/api/index.ts:355
+#: src/lib/api/index.ts:379
+msgid "Uploading link thumbnail..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1654
+msgid "Uploading video..."
+msgstr ""
+
+#: src/screens/Settings/AppPasswords.tsx:67
+msgid "Use app passwords to sign in to other Bluesky clients without giving full access to your account or password."
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:539
+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/screens/Settings/ContentAndMediaSettings.tsx:93
+#: src/screens/Settings/ContentAndMediaSettings.tsx:99
+msgid "Use in-app browser to open links"
+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/screens/Settings/components/AddAppPasswordDialog.tsx:190
+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:69
+#: 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:55
+msgid "User Blocked by List"
+msgstr ""
+
+#: src/lib/moderation/useModerationCauseDescription.ts:71
+msgid "User Blocking You"
+msgstr ""
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:75
+msgid "User Blocks You"
+msgstr ""
+
+#: src/view/com/modals/UserAddRemoveLists.tsx:214
+msgid "User list by {0}"
+msgstr ""
+
+#: src/view/com/modals/UserAddRemoveLists.tsx:212
+msgid "User list by you"
+msgstr ""
+
+#: src/view/com/modals/CreateOrEditList.tsx:176
+msgid "User list created"
+msgstr "Lista de usator create"
+
+#: src/view/com/modals/CreateOrEditList.tsx:162
+msgid "User list updated"
+msgstr "Lista de usator actualisate"
+
+#: src/screens/Login/LoginForm.tsx:193
+msgid "Username or email address"
+msgstr "Nomine de usator o adresse de e-mail"
+
+#: src/components/WhoCanReply.tsx:263
+msgid "users followed by <0>@{0}0>"
+msgstr ""
+
+#: src/screens/Messages/Settings.tsx:92
+#: src/screens/Messages/Settings.tsx:95
+msgid "Users I follow"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:445
+msgid "Users in \"{0}\""
+msgstr ""
+
+#: src/components/LikesDialog.tsx:83
+msgid "Users that have liked this content or profile"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:419
+msgid "Value:"
+msgstr "Valor:"
+
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:125
+msgid "Verified email required"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:509
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:530
+msgid "Verify DNS Record"
+msgstr ""
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:134
+#: src/components/intents/VerifyEmailIntentDialog.tsx:67
+msgid "Verify email dialog"
+msgstr ""
+
+#: src/view/com/modals/ChangeEmail.tsx:200
+#: src/view/com/modals/ChangeEmail.tsx:202
+msgid "Verify New Email"
+msgstr ""
+
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:129
+msgid "Verify now"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:510
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:532
+msgid "Verify Text File"
+msgstr ""
+
+#: src/screens/Settings/AccountSettings.tsx:75
+#: src/screens/Settings/AccountSettings.tsx:91
+msgid "Verify your email"
+msgstr ""
+
+#: src/components/dialogs/VerifyEmailDialog.tsx:85
+#: src/view/com/modals/VerifyEmail.tsx:111
+msgid "Verify Your Email"
+msgstr ""
+
+#: src/screens/Settings/AboutSettings.tsx:67
+#: src/screens/Settings/AboutSettings.tsx:77
+msgid "Version {appVersion}"
+msgstr "Version {appVersion}"
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:134
+msgid "Video"
+msgstr ""
+
+#: src/view/com/composer/state/video.ts:358
+msgid "Video failed to process"
+msgstr ""
+
+#: src/Navigation.tsx:439
+msgid "Video Feed"
+msgstr ""
+
+#: src/components/VideoPostCard.tsx:116
+msgid "Video from {0}: {text}"
+msgstr ""
+
+#: src/screens/Onboarding/index.tsx:39
+#: src/screens/Onboarding/state.ts:103
+msgid "Video Games"
+msgstr "Videojocos"
+
+#: src/screens/VideoFeed/index.tsx:1031
+msgid "Video is paused"
+msgstr ""
+
+#: src/screens/VideoFeed/index.tsx:1031
+msgid "Video is playing"
+msgstr ""
+
+#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:191
+msgid "Video not found."
+msgstr "Video non trovate."
+
+#: src/view/com/composer/videos/SubtitleDialog.tsx:99
+msgid "Video settings"
+msgstr "Configurationes de video"
+
+#: src/view/com/composer/Composer.tsx:1664
+msgid "Video uploaded"
+msgstr "Video cargate"
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:83
+msgid "Video: {0}"
+msgstr "Video: {0}"
+
+#: src/view/screens/Profile.tsx:236
+msgid "Videos"
+msgstr ""
+
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:58
+#: src/view/com/composer/videos/SelectVideoBtn.tsx:73
+msgid "Videos must be less than 60 seconds long"
+msgstr ""
+
+#: src/screens/Profile/Header/Shell.tsx:168
+msgid "View {0}'s avatar"
+msgstr ""
+
+#: src/components/ProfileCard.tsx:110
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:450
+#: src/screens/VideoFeed/index.tsx:763
+#: src/view/com/notifications/NotificationFeedItem.tsx:409
+msgid "View {0}'s profile"
+msgstr "Visualisar profilo de {0}"
+
+#: src/components/dms/MessagesListHeader.tsx:173
+msgid "View {displayName}'s profile"
+msgstr "Visualisar profilo de {displayName}"
+
+#: src/components/ProfileHoverCard/index.web.tsx:433
+msgid "View blocked user's profile"
+msgstr "Visualisar profilo de usator blocate"
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:98
+msgid "View blogpost for more details"
+msgstr ""
+
+#: src/view/screens/Log.tsx:57
+msgid "View debug entry"
+msgstr ""
+
+#: src/components/ReportDialog/SelectReportOptionView.tsx:137
+#: src/screens/VideoFeed/index.tsx:637
+#: src/screens/VideoFeed/index.tsx:655
+msgid "View details"
+msgstr "Visualisar detalios"
+
+#: src/components/ReportDialog/SelectReportOptionView.tsx:132
+msgid "View details for reporting a copyright violation"
+msgstr "Visualisar detalios pro signalar un violation de copyright"
+
+#: src/view/com/posts/ViewFullThread.tsx:56
+msgid "View full thread"
+msgstr "Visualisar topico complete"
+
+#: src/components/moderation/LabelsOnMe.tsx:46
+msgid "View information about these labels"
+msgstr "Visualisar information sur iste etiquettas"
+
+#: src/components/interstitials/TrendingVideos.tsx:191
+#: src/components/interstitials/TrendingVideos.tsx:210
+#: src/screens/Search/components/ExploreTrendingVideos.tsx:231
+#: src/screens/Search/components/ExploreTrendingVideos.tsx:250
+msgid "View more"
+msgstr ""
+
+#: src/components/ProfileHoverCard/index.web.tsx:419
+#: src/components/ProfileHoverCard/index.web.tsx:439
+#: src/components/ProfileHoverCard/index.web.tsx:466
+#: src/view/com/posts/AviFollowButton.tsx:55
+#: src/view/com/posts/PostFeedErrorMessage.tsx:175
+#: src/view/com/util/PostMeta.tsx:78
+#: src/view/com/util/PostMeta.tsx:93
+msgid "View profile"
+msgstr "Visualisar profilo"
+
+#: src/view/com/profile/ProfileSubpageHeader.tsx:119
+msgid "View the avatar"
+msgstr "Visualisar le avatar"
+
+#: src/components/LabelingServiceCard/index.tsx:164
+msgid "View the labeling service provided by @{0}"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:485
+msgid "View users who like this feed"
+msgstr ""
+
+#: src/components/VideoPostCard.tsx:392
+msgid "View video"
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:264
+msgid "View your blocked accounts"
+msgstr "Visualisar tu contos blocate"
+
+#: src/screens/Moderation/index.tsx:204
+msgid "View your default post interaction settings"
+msgstr ""
+
+#: src/view/com/home/HomeHeaderLayout.web.tsx:56
+#: src/view/com/home/HomeHeaderLayoutMobile.tsx:77
+msgid "View your feeds and explore more"
+msgstr "Vider tu fluxos e explorar plus"
+
+#: src/screens/Moderation/index.tsx:234
+msgid "View your moderation lists"
+msgstr "Vider tu listas de moderation"
+
+#: src/screens/Moderation/index.tsx:249
+msgid "View your muted accounts"
+msgstr "Vider tu contos silentiate"
+
+#: src/view/com/modals/LinkWarning.tsx:89
+#: src/view/com/modals/LinkWarning.tsx:95
+msgid "Visit Site"
+msgstr "Visitar sito"
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:80
+msgid "Volume"
+msgstr "Volumine"
+
+#: src/components/moderation/LabelPreference.tsx:136
+#: 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:205
+msgid "We couldn't find any results for that hashtag."
+msgstr ""
+
+#: src/screens/Topic.tsx:178
+msgid "We couldn't find any results for that topic."
+msgstr ""
+
+#: src/screens/Messages/Conversation.tsx:113
+msgid "We couldn't load this conversation"
+msgstr ""
+
+#: src/screens/SignupQueued.tsx:160
+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}0>."
+msgstr ""
+
+#: src/screens/Onboarding/StepFinished.tsx:245
+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:417
+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:409
+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:164
+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:88
+#: src/components/ProgressGuide/FollowDialog.tsx:157
+msgid "We're having network issues, try again"
+msgstr ""
+
+#: src/screens/Signup/index.tsx:94
+msgid "We're so excited to have you join us!"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:112
+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:201
+msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:425
+msgid "We're sorry! The post you are replying to has been deleted."
+msgstr ""
+
+#: src/components/Lists.tsx:194
+#: src/view/screens/NotFound.tsx:50
+msgid "We're sorry! We can't find the page you were looking for."
+msgstr ""
+
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:346
+msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
+msgstr ""
+
+#: src/screens/Deactivated.tsx:124
+msgid "Welcome back!"
+msgstr ""
+
+#: src/components/NewskieDialog.tsx:103
+msgid "Welcome, friend!"
+msgstr "Benvenite, amico!"
+
+#: src/screens/Onboarding/StepInterests/index.tsx:126
+msgid "What are your interests?"
+msgstr ""
+
+#: src/screens/StarterPack/Wizard/StepDetails.tsx:41
+msgid "What do you want to call your starter pack?"
+msgstr ""
+
+#: src/screens/Search/components/ExploreTrendingTopics.tsx:79
+msgid "What people are posting about."
+msgstr ""
+
+#: src/view/com/auth/SplashScreen.tsx:38
+#: src/view/com/auth/SplashScreen.web.tsx:99
+#: src/view/com/composer/Composer.tsx:744
+msgid "What's up?"
+msgstr ""
+
+#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:80
+msgid "Which languages are used in this post?"
+msgstr "Qual linguas es usate in iste publication?"
+
+#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:79
+msgid "Which languages would you like to see in your algorithmic feeds?"
+msgstr ""
+
+#: 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:156
+msgid "Whoops!"
+msgstr ""
+
+#: src/components/interstitials/TrendingVideos.tsx:127
+#: src/screens/Search/components/ExploreTrendingVideos.tsx:147
+msgid "Whoops! Trending videos failed to load."
+msgstr ""
+
+#: src/screens/Takendown.tsx:173
+msgid "Why are you appealing?"
+msgstr ""
+
+#: src/components/ReportDialog/SelectReportOptionView.tsx:42
+msgid "Why should this content be reviewed?"
+msgstr ""
+
+#: src/components/ReportDialog/SelectReportOptionView.tsx:55
+msgid "Why should this feed be reviewed?"
+msgstr ""
+
+#: src/components/ReportDialog/SelectReportOptionView.tsx:52
+msgid "Why should this list be reviewed?"
+msgstr ""
+
+#: src/components/ReportDialog/SelectReportOptionView.tsx:61
+msgid "Why should this message be reviewed?"
+msgstr ""
+
+#: src/components/ReportDialog/SelectReportOptionView.tsx:49
+msgid "Why should this post be reviewed?"
+msgstr ""
+
+#: src/components/ReportDialog/SelectReportOptionView.tsx:58
+msgid "Why should this starter pack be reviewed?"
+msgstr ""
+
+#: src/components/ReportDialog/SelectReportOptionView.tsx:46
+msgid "Why should this user be reviewed?"
+msgstr ""
+
+#: src/screens/Messages/components/MessageInput.tsx:149
+#: src/screens/Messages/components/MessageInput.web.tsx:214
+msgid "Write a message"
+msgstr "Scribe un message"
+
+#: src/view/com/composer/Composer.tsx:832
+msgid "Write post"
+msgstr "Scriber message"
+
+#: src/view/com/composer/Composer.tsx:742
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69
+msgid "Write your reply"
+msgstr "Scribe tu responsa"
+
+#: src/screens/Onboarding/index.tsx:25
+#: src/screens/Onboarding/state.ts:116
+msgid "Writers"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:337
+msgid "Wrong DID returned from server. Received: {0}"
+msgstr ""
+
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:86
+msgid "Yes"
+msgstr "Si"
+
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108
+msgid "Yes, deactivate"
+msgstr "Si, disactivar"
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:662
+msgid "Yes, delete this starter pack"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:724
+msgid "Yes, detach"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:734
+msgid "Yes, hide"
+msgstr "Si, celar"
+
+#: src/screens/Deactivated.tsx:146
+msgid "Yes, reactivate my account"
+msgstr "Si, reactivar mi conto"
+
+#: src/components/dms/DateDivider.tsx:46
+msgid "Yesterday"
+msgstr "Heri"
+
+#: src/screens/List/ListHiddenScreen.tsx:150
+msgid "you"
+msgstr "tu"
+
+#: src/components/NewskieDialog.tsx:43
+msgid "You"
+msgstr "Tu"
+
+#: src/screens/SignupQueued.tsx:157
+msgid "You are in line."
+msgstr ""
+
+#: src/view/com/composer/state/video.ts:410
+msgid "You are not allowed to upload videos."
+msgstr "Tu non es permitte incargar videos."
+
+#: src/view/com/profile/ProfileFollows.tsx:94
+msgid "You are not following anyone."
+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:198
+msgid "You can also temporarily deactivate your account instead, and reactivate it 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:26
+msgid "You can now sign in with your new password."
+msgstr ""
+
+#: src/screens/Deactivated.tsx:132
+msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users."
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:81
+msgid "You can set default interaction settings in <0>Settings → Moderation → Interaction settings.0>"
+msgstr ""
+
+#: src/components/interstitials/Trending.tsx:130
+#: src/components/interstitials/TrendingVideos.tsx:139
+#: src/screens/Search/components/ExploreTrendingTopics.tsx:136
+#: src/view/shell/desktop/SidebarTrendingTopics.tsx:109
+msgid "You can update this later from your settings."
+msgstr ""
+
+#: src/view/com/profile/ProfileFollowers.tsx:94
+msgid "You do not have any followers."
+msgstr ""
+
+#: src/screens/Profile/KnownFollowers.tsx:109
+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:137
+msgid "You don't have any pinned feeds."
+msgstr ""
+
+#: src/view/screens/SavedFeeds.tsx:177
+msgid "You don't have any saved feeds."
+msgstr ""
+
+#: src/view/com/post-thread/PostThread.tsx:268
+msgid "You have blocked the author or you have been blocked by the author."
+msgstr "Tu ha blocate le autor o tu ha essite blocate per le autor."
+
+#: src/components/dms/MessagesListBlockedFooter.tsx:65
+msgid "You have blocked this user"
+msgstr "Tu ha blocate iste usator"
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:71
+#: 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:91
+#: 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 "Tu ha celate iste message"
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:109
+msgid "You have hidden this post."
+msgstr "Tu ha celate iste message."
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:102
+#: src/lib/moderation/useModerationCauseDescription.ts:97
+msgid "You have muted this account."
+msgstr "Tu ha silentiate iste conto."
+
+#: src/lib/moderation/useModerationCauseDescription.ts:91
+msgid "You have muted this user"
+msgstr "Tu ha silentiate iste usator"
+
+#: src/screens/Messages/ChatList.tsx:198
+msgid "You have no conversations yet. Start one!"
+msgstr ""
+
+#: src/view/com/feeds/ProfileFeedgens.tsx:143
+msgid "You have no feeds."
+msgstr ""
+
+#: src/view/com/lists/MyLists.tsx:81
+#: src/view/com/lists/ProfileLists.tsx:139
+msgid "You have no lists."
+msgstr ""
+
+#: src/view/screens/ModerationBlockedAccounts.tsx:129
+msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account."
+msgstr ""
+
+#: src/view/screens/ModerationMutedAccounts.tsx:128
+msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account."
+msgstr ""
+
+#: src/components/Lists.tsx:57
+msgid "You have reached the end"
+msgstr ""
+
+#: 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:240
+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:116
+#: 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 "Tu pote solmente adder usque 3 fluxos"
+
+#: src/lib/media/picker.shared.ts:22
+msgid "You may only select up to 4 images"
+msgstr "Tu pote selectionar solmente 4 imagines"
+
+#: src/screens/Signup/StepInfo/Policies.tsx:106
+msgid "You must be 13 years of age or older to sign up."
+msgstr ""
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:323
+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:68
+msgid "You must grant access to your photo library to save the image."
+msgstr ""
+
+#: src/components/ReportDialog/SubmitView.tsx:211
+msgid "You must select at least one labeler for a report"
+msgstr ""
+
+#: src/screens/Deactivated.tsx:127
+msgid "You previously deactivated @{0}."
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:257
+#: src/view/shell/desktop/LeftNav.tsx:206
+msgid "You will be signed out of all your accounts."
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:217
+msgid "You will no longer receive notifications for this thread"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:213
+msgid "You will now receive notifications for this thread"
+msgstr ""
+
+#: src/screens/Login/SetNewPasswordForm.tsx:104
+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:139
+msgid "You: {0}"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:168
+msgid "You: {defaultEmbeddedContentMessage}"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:161
+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:178
+msgid "You'll receive an email at <0>{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:127
+msgid "You're in line"
+msgstr "Tu es in fila"
+
+#: 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:242
+msgid "You're ready to go!"
+msgstr "Toto preste!"
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:106
+#: src/lib/moderation/useModerationCauseDescription.ts:106
+msgid "You've chosen to hide a word or tag within this post."
+msgstr ""
+
+#: src/state/shell/progress-guide.tsx:234
+msgid "You've found some people to follow"
+msgstr "Tu ha trovate alicun personas a sequer"
+
+#: src/view/com/posts/FollowingEndOfFeed.tsx:44
+msgid "You've reached the end of your feed! Find some more accounts to follow."
+msgstr ""
+
+#: src/view/com/composer/state/video.ts:421
+msgid "You've reached your daily limit for video uploads (too many bytes)"
+msgstr ""
+
+#: src/view/com/composer/state/video.ts:425
+msgid "You've reached your daily limit for video uploads (too many videos)"
+msgstr ""
+
+#: src/screens/VideoFeed/index.tsx:1082
+msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
+msgstr ""
+
+#: src/screens/Signup/index.tsx:140
+msgid "Your account"
+msgstr "Tu conto"
+
+#: src/view/com/modals/DeleteAccount.tsx:84
+msgid "Your account has been deleted"
+msgstr "Tu conto ha essite supprimite"
+
+#: src/screens/Takendown.tsx:146
+msgid "Your account has been suspended"
+msgstr ""
+
+#: src/view/com/composer/state/video.ts:429
+msgid "Your account is not yet old enough to upload videos. Please try again later."
+msgstr ""
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:65
+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/Takendown.tsx:214
+msgid "Your account was found to be in violation of the <0>Bluesky Social Terms of Service0>. You have been sent an email outlining the specific violation and suspension period, if applicable. You can appeal this decision if you believe it was made in error."
+msgstr ""
+
+#: src/screens/Takendown.tsx:154
+msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email."
+msgstr ""
+
+#: src/screens/Signup/StepInfo/index.tsx:205
+msgid "Your birth date"
+msgstr "Tu data de anniversario"
+
+#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:195
+msgid "Your browser does not support the video format. Please try a different browser."
+msgstr "Tu navigator non supporta le formato de video. Retenta con un navigator differente."
+
+#: src/screens/Messages/components/ChatDisabled.tsx:25
+msgid "Your chats have been disabled"
+msgstr "Tu chats ha essite dishabilitate"
+
+#: src/view/com/modals/InAppBrowserConsent.tsx:44
+msgid "Your choice will be saved, but can be changed later in settings."
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:494
+msgid "Your current handle <0>{0}0> will automatically remain reserved for you. You can switch back to it at any time from this account."
+msgstr ""
+
+#: src/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:213
+msgid "Your first like!"
+msgstr "Tu prime me place!"
+
+#: src/view/com/posts/FollowingEmptyState.tsx:43
+msgid "Your following feed is empty! Follow more users to see what's happening."
+msgstr "Tu fluxo de sequites es vacue! Seque plus de usatores pro vider lo que passa."
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:221
+msgid "Your full handle will be <0>@{0}0>"
+msgstr "Tu nomine de usator complete sera <0>@{0}0>"
+
+#: src/screens/Signup/StepHandle.tsx:129
+msgid "Your full username will be"
+msgstr "Tu nomine complete de usator sera"
+
+#: src/components/dialogs/MutedWords.tsx:369
+msgid "Your muted words"
+msgstr "Tu parolas silentiate"
+
+#: src/view/com/modals/ChangePassword.tsx:158
+msgid "Your password has been changed successfully!"
+msgstr "Tu contrasigno ha essite cambiate con successo!"
+
+#: src/view/com/composer/Composer.tsx:485
+msgid "Your post has been published"
+msgstr "Tu message ha essite publicate"
+
+#: src/view/com/composer/Composer.tsx:482
+msgid "Your posts have been published"
+msgstr "Tu messages ha essite publicate"
+
+#: src/screens/Onboarding/StepFinished.tsx:257
+msgid "Your posts, likes, and blocks are public. Mutes are private."
+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:484
+msgid "Your reply has been published"
+msgstr "Tu responsa ha essite publicate"
+
+#: src/components/dms/ReportDialog.tsx:198
+msgid "Your report will be sent to the Bluesky Moderation Service"
+msgstr "Tu reporto sera inviate al Servicio de Moderation de Bluesky"
diff --git a/src/locale/locales/it/messages.po b/src/locale/locales/it/messages.po
index 0925e4825d..ec5ca2d05c 100644
--- a/src/locale/locales/it/messages.po
+++ b/src/locale/locales/it/messages.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Italian localization\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-01-24 00:43+0000\n"
-"PO-Revision-Date: 2025-01-24 17:53+0000\n"
+"POT-Creation-Date: 2025-02-04 00:43+0000\n"
+"PO-Revision-Date: 2025-02-04 07:28+0000\n"
"Last-Translator: Michele Locati , 2025\n"
"Language-Team: Italian (https://app.transifex.com/mlocati/teams/201833/it/)\n"
"Language: it\n"
@@ -23,7 +23,7 @@ msgstr ""
msgid "(active)"
msgstr "(attivo)"
-#: src/screens/Messages/components/ChatListItem.tsx:139
+#: src/screens/Messages/components/ChatListItem.tsx:145
msgid "(contains embedded content)"
msgstr "(contiene allegati)"
@@ -374,9 +374,9 @@ msgstr "7 giorni"
#: src/screens/Settings/Settings.tsx:215
#: src/screens/Settings/Settings.tsx:218
msgid "About"
-msgstr "Informazioni su"
+msgstr "Risorse aggiuntive"
-#: src/view/screens/Search/Search.tsx:858
+#: src/view/screens/Search/Search.tsx:864
msgid "Access navigation links and settings"
msgstr "Accedi alle impostazioni di navigazione"
@@ -728,10 +728,10 @@ 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:330
-#: src/components/ProfileCard.tsx:351
-#: src/view/com/profile/FollowButton.tsx:35
-#: src/view/com/profile/FollowButton.tsx:45
+#: src/components/ProfileCard.tsx:333
+#: src/components/ProfileCard.tsx:354
+#: src/view/com/profile/FollowButton.tsx:38
+#: src/view/com/profile/FollowButton.tsx:48
msgid "An issue occurred, please try again."
msgstr "Si è verificato un problema, riprova."
@@ -928,7 +928,7 @@ msgstr "Le opzioni di riproduzione automatica sono state spostate nelle <0>impos
msgid "Autoplay videos and GIFs"
msgstr "Riproduci automaticamente video e GIF"
-#: src/components/dms/MessagesListHeader.tsx:74
+#: src/components/dms/MessagesListHeader.tsx:81
#: src/components/moderation/LabelsOnMeDialog.tsx:290
#: src/components/moderation/LabelsOnMeDialog.tsx:291
#: src/screens/Login/ChooseAccountForm.tsx:90
@@ -962,7 +962,7 @@ msgstr "Prima di creare uno starter pack, devi verificare la tua email."
#: src/components/dms/dialogs/NewChatDialog.tsx:79
#: src/components/dms/MessageProfileButton.tsx:89
-#: src/screens/Messages/Conversation.tsx:209
+#: src/screens/Messages/Conversation.tsx:204
msgid "Before you may message another user, you must first verify your email."
msgstr "Prima di poter inviare un messaggio a un altro utente, devi verificare la tua email."
@@ -971,7 +971,7 @@ msgstr "Prima di poter inviare un messaggio a un altro utente, devi verificare l
msgid "BETA"
msgstr "BETA"
-#: src/components/dialogs/BirthDateSettings.tsx:106
+#: src/components/dialogs/BirthDateSettings.tsx:102
#: src/screens/Settings/AccountSettings.tsx:109
msgid "Birthday"
msgstr "Compleanno"
@@ -982,8 +982,8 @@ msgstr "Compleanno"
msgid "Block"
msgstr "Blocca"
-#: src/components/dms/ConvoMenu.tsx:191
-#: src/components/dms/ConvoMenu.tsx:195
+#: src/components/dms/ConvoMenu.tsx:250
+#: src/components/dms/ConvoMenu.tsx:253
#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:603
#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:605
msgid "Block account"
@@ -1070,8 +1070,8 @@ msgstr "Il blocco non impedirà l'applicazione delle etichette al tuo account, m
msgid "Blog"
msgstr "Blog"
-#: src/view/com/auth/server-input/index.tsx:92
-#: src/view/com/auth/server-input/index.tsx:94
+#: src/view/com/auth/server-input/index.tsx:132
+#: src/view/com/auth/server-input/index.tsx:133
msgid "Bluesky"
msgstr "Bluesky"
@@ -1079,13 +1079,13 @@ msgstr "Bluesky"
msgid "Bluesky cannot confirm the authenticity of the claimed date."
msgstr "Bluesky non può confermare l'autenticità della data dichiarata."
-#: src/view/com/auth/server-input/index.tsx:172
+#: src/view/com/auth/server-input/index.tsx:208
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 è una rete aperta dove puoi scegliere il fornitore che ospita i tuoi dati. Se sei uno sviluppatore, puoi utilizzare il tuo server."
-#: src/view/com/auth/server-input/index.tsx:109
+#: src/view/com/auth/server-input/index.tsx:145
msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option."
-msgstr "Bluesky è una rete aperta che ti permette di scegliere il fornitore dei tuoi dati. Se sei un nuovo utente, ti consigliamo di iniziare con l'opzione predefinita Bluesky Social."
+msgstr "Bluesky è una rete aperta che ti permette di scegliere chi ospita i tuoi dati. Se sei un nuovo utente, ti consigliamo di iniziare con l'opzione predefinita Bluesky Social."
#: src/components/ProgressGuide/List.tsx:53
#: src/components/ProgressGuide/List.tsx:70
@@ -1094,7 +1094,7 @@ msgstr "Bluesky è meglio con gli amici!"
#: src/screens/Takendown.tsx:217
msgid "Bluesky Social Terms of Service"
-msgstr "Termini di servizio di Bluesky Social"
+msgstr "Termini di servizio di Bluesky"
#: src/components/StarterPack/ProfileStarterPacks.tsx:299
msgid "Bluesky will choose a set of recommended accounts from people in your network."
@@ -1125,23 +1125,23 @@ msgstr "Sfoca le immagini e filtra dai feed"
msgid "Books"
msgstr "Libri"
-#: src/components/FeedInterstitials.tsx:349
+#: src/components/FeedInterstitials.tsx:370
msgid "Browse more accounts on the Explore page"
msgstr "Scopri altri account dalla Ricerca"
-#: src/components/FeedInterstitials.tsx:486
+#: src/components/FeedInterstitials.tsx:507
msgid "Browse more feeds on the Explore page"
msgstr "Scopri nuovi feed dalla Ricerca"
-#: src/components/FeedInterstitials.tsx:330
-#: src/components/FeedInterstitials.tsx:333
-#: src/components/FeedInterstitials.tsx:467
-#: src/components/FeedInterstitials.tsx:470
+#: src/components/FeedInterstitials.tsx:351
+#: src/components/FeedInterstitials.tsx:354
+#: src/components/FeedInterstitials.tsx:488
+#: src/components/FeedInterstitials.tsx:491
msgid "Browse more suggestions"
msgstr "Scopri nuovi suggerimenti"
-#: src/components/FeedInterstitials.tsx:357
-#: src/components/FeedInterstitials.tsx:495
+#: src/components/FeedInterstitials.tsx:378
+#: src/components/FeedInterstitials.tsx:516
msgid "Browse more suggestions on the Explore page"
msgstr "Scopri nuovi suggerimenti dalla Ricerca"
@@ -1218,7 +1218,7 @@ msgstr "Fotocamera"
#: src/view/com/modals/VerifyEmail.tsx:255
#: src/view/com/modals/VerifyEmail.tsx:261
#: src/view/com/util/post-ctrls/RepostButton.tsx:213
-#: src/view/screens/Search/Search.tsx:887
+#: src/view/screens/Search/Search.tsx:893
#: src/view/shell/desktop/LeftNav.tsx:209
msgid "Cancel"
msgstr "Annulla"
@@ -1252,7 +1252,7 @@ msgid "Cancel reactivation and log out"
msgstr "Annulla la riattivazione e disconnettiti"
#: src/view/com/modals/ListAddRemoveUsers.tsx:88
-#: src/view/screens/Search/Search.tsx:879
+#: src/view/screens/Search/Search.tsx:885
msgid "Cancel search"
msgstr "Annulla la ricerca"
@@ -1331,14 +1331,14 @@ msgstr "Modifica il tuo indirizzo email"
msgid "Chat"
msgstr "Messaggi"
-#: src/components/dms/ConvoMenu.tsx:85
+#: src/components/dms/ConvoMenu.tsx:179
msgid "Chat muted"
msgstr "Conversazione silenziata"
-#: src/components/dms/ConvoMenu.tsx:115
+#: src/components/dms/ConvoMenu.tsx:78
#: src/components/dms/MessageMenu.tsx:81
#: src/Navigation.tsx:394
-#: src/screens/Messages/ChatList.tsx:254
+#: src/screens/Messages/ChatList.tsx:253
msgid "Chat settings"
msgstr "Impostazioni chat"
@@ -1346,7 +1346,7 @@ msgstr "Impostazioni chat"
msgid "Chat Settings"
msgstr "Impostazioni chat"
-#: src/components/dms/ConvoMenu.tsx:87
+#: src/components/dms/ConvoMenu.tsx:181
msgid "Chat unmuted"
msgstr "Conversazione riattivata"
@@ -1391,12 +1391,12 @@ msgstr "Scegli gli algoritmi che compilano i tuoi feed personalizzati."
msgid "Choose this color as your avatar"
msgstr "Scegli questo colore per il tuo avatar"
-#: src/view/com/auth/server-input/index.tsx:86
+#: src/view/com/auth/server-input/index.tsx:126
msgid "Choose your account provider"
-msgstr "Seleziona il fornitore del tuo account"
+msgstr "Scegli il fornitore del tuo account"
#: src/view/screens/Feeds.tsx:728
-#: src/view/screens/Search/Explore.tsx:424
+#: src/view/screens/Search/Explore.tsx:427
msgid "Choose your own timeline! Feeds built by the community help you find content you love."
msgstr "Personalizza la tua cronologia! I feed creati dalla collettività ti permettono di scoprire i contenuti di tuo interesse."
@@ -1547,7 +1547,7 @@ msgstr "Linee guida della community"
#: src/screens/Onboarding/StepFinished.tsx:300
msgid "Complete onboarding and start using your account"
-msgstr "Completa l'incorporazione e inizia a usare il tuo account"
+msgstr "Completa la registrazione e inizia a usare il tuo account"
#: src/screens/Signup/index.tsx:144
msgid "Complete the challenge"
@@ -1700,7 +1700,7 @@ msgstr "Continua thread..."
msgid "Continue to next step"
msgstr "Vai al passaggio successivo"
-#: src/screens/Messages/components/ChatListItem.tsx:173
+#: src/screens/Messages/components/ChatListItem.tsx:179
msgid "Conversation deleted"
msgstr "Conversazione eliminata"
@@ -1807,7 +1807,7 @@ msgstr "Non è stato possibile caricare il feed"
msgid "Could not load list"
msgstr "Non è stato possibile caricare la lista"
-#: src/components/dms/ConvoMenu.tsx:91
+#: src/components/dms/ConvoMenu.tsx:185
msgid "Could not mute chat"
msgstr "Errore nel silenziare la conversazione"
@@ -1842,7 +1842,7 @@ msgstr "Crea uno starter pack per me"
#: src/view/shell/NavSignupCard.tsx:47
#: src/view/shell/NavSignupCard.tsx:52
msgid "Create account"
-msgstr "Crea un account"
+msgstr "Crea account"
#: src/screens/Signup/index.tsx:93
msgid "Create Account"
@@ -1883,8 +1883,8 @@ msgstr "L'autore è stato bloccato"
msgid "Culture"
msgstr "Cultura"
-#: src/view/com/auth/server-input/index.tsx:100
-#: src/view/com/auth/server-input/index.tsx:102
+#: src/view/com/auth/server-input/index.tsx:138
+#: src/view/com/auth/server-input/index.tsx:139
msgid "Custom"
msgstr "Personalizzato"
@@ -1897,7 +1897,7 @@ msgstr "Personalizza chi può interagire con questo post."
msgid "Dark"
msgstr "Scuro"
-#: src/view/screens/Debug.tsx:70
+#: src/view/screens/Debug.tsx:69
msgid "Dark mode"
msgstr "Aspetto scuro"
@@ -1919,7 +1919,7 @@ msgstr "Disattiva account"
msgid "Debug Moderation"
msgstr "Eliminare errori nella Moderazione"
-#: src/view/screens/Debug.tsx:90
+#: src/view/screens/Debug.tsx:89
msgid "Debug panel"
msgstr "Pannello per il debug"
@@ -2018,8 +2018,8 @@ msgstr "Eliminare questo post?"
msgid "Deleted"
msgstr "Eliminato"
-#: src/components/dms/MessagesListHeader.tsx:148
-#: src/screens/Messages/components/ChatListItem.tsx:107
+#: src/components/dms/MessagesListHeader.tsx:154
+#: src/screens/Messages/components/ChatListItem.tsx:113
msgid "Deleted Account"
msgstr "Account eliminato"
@@ -2120,7 +2120,7 @@ msgstr "Scoraggia le app dal mostrare il mio account agli utenti disconnessi"
msgid "Discover new custom feeds"
msgstr "Scopri nuovi feed personalizzati"
-#: src/view/screens/Search/Explore.tsx:422
+#: src/view/screens/Search/Explore.tsx:425
msgid "Discover new feeds"
msgstr "Scopri nuovi feed"
@@ -2189,17 +2189,17 @@ msgstr "Non inizia o termina con un trattino"
msgid "Domain verified!"
msgstr "Dominio verificato!"
-#: src/components/dialogs/BirthDateSettings.tsx:118
-#: src/components/dialogs/BirthDateSettings.tsx:124
+#: src/components/dialogs/BirthDateSettings.tsx:114
+#: src/components/dialogs/BirthDateSettings.tsx:120
#: src/components/dms/ReportDialog.tsx:323
-#: src/components/forms/DateField/index.tsx:77
-#: src/components/forms/DateField/index.tsx:83
+#: src/components/forms/DateField/index.tsx:87
+#: src/components/forms/DateField/index.tsx:93
#: src/screens/Onboarding/StepProfile/index.tsx:330
#: src/screens/Onboarding/StepProfile/index.tsx:333
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:215
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:222
-#: src/view/com/auth/server-input/index.tsx:192
-#: src/view/com/auth/server-input/index.tsx:193
+#: src/view/com/auth/server-input/index.tsx:228
+#: src/view/com/auth/server-input/index.tsx:229
#: src/view/com/composer/labels/LabelsBtn.tsx:224
#: src/view/com/composer/labels/LabelsBtn.tsx:231
#: src/view/com/composer/videos/SubtitleDialog.tsx:169
@@ -2226,7 +2226,7 @@ msgstr "Fatto{extraText}"
msgid "Double tap to close the dialog"
msgstr "Tocca due volte per chiudere la finestra"
-#: src/screens/VideoFeed/index.tsx:1037
+#: src/screens/VideoFeed/index.tsx:1039
msgid "Double tap to like"
msgstr "Tocca due volte per mettere mi piace"
@@ -2550,7 +2550,7 @@ msgstr "Inserisci il dominio che vuoi usare"
msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password."
msgstr "Inserisci l'email che hai usato per creare il tuo account. Ti invieremo un codice in modo che tu possa scegliere una nuova password."
-#: src/components/dialogs/BirthDateSettings.tsx:107
+#: src/components/dialogs/BirthDateSettings.tsx:103
msgid "Enter your birth date"
msgstr "Inserisci la tua data di nascita"
@@ -2738,8 +2738,8 @@ msgstr "Non è stato possibile eliminare il post, riprovare"
msgid "Failed to delete starter pack"
msgstr "Impossibile eliminare lo starter pack"
-#: src/view/screens/Search/Explore.tsx:460
-#: src/view/screens/Search/Explore.tsx:488
+#: src/view/screens/Search/Explore.tsx:463
+#: src/view/screens/Search/Explore.tsx:491
msgid "Failed to load feeds preferences"
msgstr "Impossibile caricare preferenze feed"
@@ -2751,12 +2751,12 @@ msgstr "Impossibile caricare GIF"
msgid "Failed to load past messages"
msgstr "Impossibile caricare messaggi vecchi"
-#: src/view/screens/Search/Explore.tsx:453
-#: src/view/screens/Search/Explore.tsx:481
+#: src/view/screens/Search/Explore.tsx:456
+#: src/view/screens/Search/Explore.tsx:484
msgid "Failed to load suggested feeds"
msgstr "Impossibile caricare feed consigliati"
-#: src/view/screens/Search/Explore.tsx:411
+#: src/view/screens/Search/Explore.tsx:414
msgid "Failed to load suggested follows"
msgstr "Impossibile caricare follow consigliati"
@@ -2897,16 +2897,16 @@ msgid "Flexible"
msgstr "Flessibile"
#. User is not following this account, click to follow
-#: src/components/ProfileCard.tsx:363
+#: src/components/ProfileCard.tsx:366
#: src/components/ProfileHoverCard/index.web.tsx:449
#: src/components/ProfileHoverCard/index.web.tsx:460
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234
-#: src/screens/VideoFeed/index.tsx:819
+#: src/screens/VideoFeed/index.tsx:821
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:132
msgid "Follow"
msgstr "Segui"
-#: src/view/com/profile/FollowButton.tsx:69
+#: src/view/com/profile/FollowButton.tsx:72
msgctxt "action"
msgid "Follow"
msgstr "Segui"
@@ -2916,7 +2916,7 @@ msgstr "Segui"
msgid "Follow {0}"
msgstr "Segui {0}"
-#: src/screens/VideoFeed/index.tsx:798
+#: src/screens/VideoFeed/index.tsx:800
msgid "Follow {handle}"
msgstr "Segui {handle}"
@@ -2948,14 +2948,14 @@ msgstr "Segui tutti"
msgid "Follow Back"
msgstr "Ricambia follow"
-#: src/view/com/profile/FollowButton.tsx:78
+#: src/view/com/profile/FollowButton.tsx:81
msgctxt "action"
msgid "Follow Back"
msgstr "Segui anche tu"
-#: src/view/screens/Search/Explore.tsx:368
+#: src/view/screens/Search/Explore.tsx:370
msgid "Follow more accounts to get connected to your interests and build your network."
-msgstr "Segui altri account per connetterti ai tuoi interessi e crea il tuo network personale."
+msgstr "Segui altri account per connetterti ai tuoi interessi e creare la tua rete personale."
#: src/components/KnownFollowers.tsx:232
msgid "Followed by <0>{0}0>"
@@ -2987,23 +2987,23 @@ msgid "Followers you know"
msgstr "Follower che conosci"
#. User is following this account, click to unfollow
-#: src/components/ProfileCard.tsx:357
+#: src/components/ProfileCard.tsx:360
#: src/components/ProfileHoverCard/index.web.tsx:448
#: src/components/ProfileHoverCard/index.web.tsx:459
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230
-#: src/screens/VideoFeed/index.tsx:817
+#: src/screens/VideoFeed/index.tsx:819
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:135
#: src/view/screens/Feeds.tsx:599
#: src/view/screens/SavedFeeds.tsx:422
msgid "Following"
msgstr "Following"
-#: src/components/ProfileCard.tsx:321
+#: src/components/ProfileCard.tsx:323
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
msgid "Following {0}"
msgstr "Stai seguendo {0}"
-#: src/screens/VideoFeed/index.tsx:797
+#: src/screens/VideoFeed/index.tsx:799
msgid "Following {handle}"
msgstr "Stai seguendo {handle}"
@@ -3122,8 +3122,8 @@ msgstr "Evidenti violazioni della legge o dei termini di servizio"
#: src/components/moderation/ScreenHider.tsx:163
#: src/screens/Profile/ProfileFeed/index.tsx:89
#: src/screens/VideoFeed/components/Header.tsx:163
-#: src/screens/VideoFeed/index.tsx:1098
-#: src/screens/VideoFeed/index.tsx:1102
+#: src/screens/VideoFeed/index.tsx:1100
+#: src/screens/VideoFeed/index.tsx:1104
#: src/view/com/auth/LoggedOut.tsx:72
#: src/view/screens/NotFound.tsx:57
#: src/view/screens/ProfileList.tsx:1009
@@ -3166,7 +3166,7 @@ msgstr "Vai alla home"
msgid "Go Home"
msgstr "Vai alla home"
-#: src/screens/Messages/components/ChatListItem.tsx:274
+#: src/screens/Messages/components/ChatListItem.tsx:282
msgid "Go to conversation with {0}"
msgstr "Vai alla conversazione con {0}"
@@ -3175,11 +3175,11 @@ msgstr "Vai alla conversazione con {0}"
msgid "Go to next"
msgstr "Prosegui"
-#: src/components/dms/ConvoMenu.tsx:170
+#: src/components/dms/ConvoMenu.tsx:230
msgid "Go to profile"
msgstr "Vai al profilo"
-#: src/components/dms/ConvoMenu.tsx:167
+#: src/components/dms/ConvoMenu.tsx:227
msgid "Go to user's profile"
msgstr "Vai al profilo dell'utente"
@@ -3439,7 +3439,7 @@ msgstr "Se rimuovi questo post, non potrai recuperarlo."
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "Se vuoi modificare la password, ti invieremo un codice per verificare che questo è il tuo account."
-#: src/view/com/auth/server-input/index.tsx:168
+#: src/view/com/auth/server-input/index.tsx:204
msgid "If you're a developer, you can host your own server."
msgstr "Se sei uno sviluppatore, puoi utilizzare il tuo server."
@@ -3560,7 +3560,7 @@ msgstr "Inviti, ma personali"
msgid "It looks like you may have entered your email address incorrectly. Are you sure it's right?"
msgstr "Sembra che tu abbia inserito il tuo indirizzo email in modo errato. Sei sicuro che sia corretto?"
-#: src/screens/Signup/StepInfo/index.tsx:235
+#: src/screens/Signup/StepInfo/index.tsx:236
msgid "It's correct"
msgstr "È corretto"
@@ -3574,7 +3574,7 @@ msgstr "ID processo: {0}"
#: src/view/com/auth/SplashScreen.web.tsx:178
msgid "Jobs"
-msgstr "Lavora con noi"
+msgstr "Opportunità di lavoro"
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207
@@ -3658,7 +3658,7 @@ msgstr "Ulteriori Informazioni"
msgid "Learn more about Bluesky"
msgstr "Scopri di più su Bluesky"
-#: src/view/com/auth/server-input/index.tsx:178
+#: src/view/com/auth/server-input/index.tsx:214
msgid "Learn more about self hosting your PDS."
msgstr "Maggiori informazioni su come ospitare il tuo server."
@@ -3678,7 +3678,7 @@ msgid "Learn more about what is public on Bluesky."
msgstr "Scopri cosa è pubblico su Bluesky."
#: src/components/moderation/ContentHider.tsx:239
-#: src/view/com/auth/server-input/index.tsx:180
+#: src/view/com/auth/server-input/index.tsx:216
msgid "Learn more."
msgstr "Saperne di più."
@@ -3686,15 +3686,15 @@ msgstr "Saperne di più."
msgid "Leave"
msgstr "Abbandona"
-#: src/components/dms/MessagesListBlockedFooter.tsx:66
#: src/components/dms/MessagesListBlockedFooter.tsx:73
+#: src/components/dms/MessagesListBlockedFooter.tsx:80
msgid "Leave chat"
msgstr "Abbandona la chat"
-#: src/components/dms/ConvoMenu.tsx:141
-#: src/components/dms/ConvoMenu.tsx:144
-#: src/components/dms/ConvoMenu.tsx:211
-#: src/components/dms/ConvoMenu.tsx:214
+#: src/components/dms/ConvoMenu.tsx:206
+#: src/components/dms/ConvoMenu.tsx:209
+#: src/components/dms/ConvoMenu.tsx:269
+#: src/components/dms/ConvoMenu.tsx:272
#: src/components/dms/LeaveConvoPrompt.tsx:40
msgid "Leave conversation"
msgstr "Abbandona conversazione"
@@ -3856,15 +3856,15 @@ msgstr "Liste"
msgid "Lists blocking this user:"
msgstr "Liste che bloccano questo utente:"
-#: src/view/screens/Search/Explore.tsx:134
+#: src/view/screens/Search/Explore.tsx:135
msgid "Load more"
msgstr "Carica di più"
-#: src/view/screens/Search/Explore.tsx:223
+#: src/view/screens/Search/Explore.tsx:224
msgid "Load more suggested feeds"
msgstr "Carica più feed consigliati"
-#: src/view/screens/Search/Explore.tsx:221
+#: src/view/screens/Search/Explore.tsx:222
msgid "Load more suggested follows"
msgstr "Carica più utenti suggeriti"
@@ -3956,8 +3956,8 @@ msgstr "Gestisci i feed salvati"
msgid "Manage your muted words and tags"
msgstr "Gestisci parole e tag silenziati"
-#: src/components/dms/ConvoMenu.tsx:154
-#: src/components/dms/ConvoMenu.tsx:161
+#: src/components/dms/ConvoMenu.tsx:218
+#: src/components/dms/ConvoMenu.tsx:221
msgid "Mark as read"
msgstr "Segna come letto"
@@ -3982,7 +3982,7 @@ msgid "Mentions"
msgstr "Menzioni"
#: src/components/Menu/index.tsx:103
-#: src/view/screens/Search/Search.tsx:856
+#: src/view/screens/Search/Search.tsx:862
msgid "Menu"
msgstr "Menu"
@@ -3991,7 +3991,7 @@ msgid "Message {0}"
msgstr "Messaggio {0}"
#: src/components/dms/MessageMenu.tsx:72
-#: src/screens/Messages/components/ChatListItem.tsx:174
+#: src/screens/Messages/components/ChatListItem.tsx:180
msgid "Message deleted"
msgstr "Messaggio eliminato"
@@ -4009,8 +4009,8 @@ msgid "Message is too long"
msgstr "Il messaggio è troppo lungo"
#: src/Navigation.tsx:618
-#: src/screens/Messages/ChatList.tsx:270
-#: src/screens/Messages/ChatList.tsx:294
+#: src/screens/Messages/ChatList.tsx:269
+#: src/screens/Messages/ChatList.tsx:293
msgid "Messages"
msgstr "Messaggi"
@@ -4133,8 +4133,8 @@ msgstr "Silenzia account"
msgid "Mute accounts"
msgstr "Silenzia account"
-#: src/components/dms/ConvoMenu.tsx:175
-#: src/components/dms/ConvoMenu.tsx:181
+#: src/components/dms/ConvoMenu.tsx:235
+#: src/components/dms/ConvoMenu.tsx:241
msgid "Mute conversation"
msgstr "Silenzia conversazione"
@@ -4275,8 +4275,8 @@ msgid "New"
msgstr "Nuova"
#: src/components/dms/dialogs/NewChatDialog.tsx:65
-#: src/screens/Messages/ChatList.tsx:277
-#: src/screens/Messages/ChatList.tsx:284
+#: src/screens/Messages/ChatList.tsx:276
+#: src/screens/Messages/ChatList.tsx:283
msgid "New chat"
msgstr "Nuova chat"
@@ -4390,7 +4390,7 @@ msgstr "Nessun feed trovato. Prova a cercarne altri."
msgid "No likes yet"
msgstr "Ancora nessun mi piace"
-#: src/components/ProfileCard.tsx:342
+#: src/components/ProfileCard.tsx:345
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119
msgid "No longer following {0}"
msgstr "Non segui più {0}"
@@ -4399,7 +4399,7 @@ msgstr "Non segui più {0}"
msgid "No longer than {0} characters"
msgstr "Non più di {0} caratteri"
-#: src/screens/Messages/components/ChatListItem.tsx:118
+#: src/screens/Messages/components/ChatListItem.tsx:124
msgid "No messages yet"
msgstr "Ancora nessun messaggio"
@@ -4599,7 +4599,7 @@ msgstr "su<0><1/><2><3/>2>0>"
#: src/screens/Settings/Settings.tsx:304
msgid "Onboarding reset"
-msgstr "Reimpostazione dell'onboarding"
+msgstr "Reimposta account"
#: src/view/com/composer/Composer.tsx:338
msgid "One or more GIFs is missing alt text."
@@ -4663,8 +4663,8 @@ msgstr "Apri il creatore di avatar"
msgid "Open change handle dialog"
msgstr "Apri la finestra di dialogo per la modifica del nome utente"
-#: src/screens/Messages/components/ChatListItem.tsx:282
-#: src/screens/Messages/components/ChatListItem.tsx:283
+#: src/screens/Messages/components/ChatListItem.tsx:290
+#: src/screens/Messages/components/ChatListItem.tsx:291
msgid "Open conversation options"
msgstr "Apri opzioni conversazione"
@@ -4827,7 +4827,7 @@ msgstr "Altro..."
#: src/components/dms/ReportDialog.tsx:339
msgid "Our moderation team has received your report."
-msgstr "Il nostro team di moderazione ha ricevuto la segnalazione."
+msgstr "Il team di moderazione ha ricevuto la tua segnalazione."
#: src/screens/Messages/components/ChatDisabled.tsx:28
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
@@ -5326,11 +5326,11 @@ msgstr "Riattacca citazione"
msgid "Reactivate your account"
msgstr "Riattiva account"
-#: src/screens/VideoFeed/index.tsx:932
+#: src/screens/VideoFeed/index.tsx:934
msgid "Read less"
msgstr "Leggi di meno"
-#: src/screens/VideoFeed/index.tsx:932
+#: src/screens/VideoFeed/index.tsx:934
msgid "Read more"
msgstr "Leggi di più"
@@ -5351,13 +5351,13 @@ msgstr "Leggi i termini di servizio di Bluesky"
#: src/screens/Takendown.tsx:162
#: src/screens/Takendown.tsx:170
msgid "Reason for appeal"
-msgstr "Motivo della richiesta di revisione della sospensione"
+msgstr "Motivo del ricorso"
#: src/components/dms/ReportDialog.tsx:210
msgid "Reason:"
msgstr "Motivo:"
-#: src/view/screens/Search/Search.tsx:1034
+#: src/view/screens/Search/Search.tsx:1040
msgid "Recent Searches"
msgstr "Ricerche recenti"
@@ -5450,11 +5450,11 @@ msgstr "Rimuovi l'immagine"
msgid "Remove mute word from your list"
msgstr "Rimuovi parola silenziata dalla tua lista"
-#: src/view/screens/Search/Search.tsx:1082
+#: src/view/screens/Search/Search.tsx:1088
msgid "Remove profile"
msgstr "Rimuovi profilo"
-#: src/view/screens/Search/Search.tsx:1084
+#: src/view/screens/Search/Search.tsx:1090
msgid "Remove profile from search history"
msgstr "Rimuovi profilo dalla cronologia di ricerca"
@@ -5465,7 +5465,7 @@ msgstr "Rimuovi citazione"
#: src/view/com/util/post-ctrls/RepostButton.tsx:155
#: src/view/com/util/post-ctrls/RepostButton.tsx:165
msgid "Remove repost"
-msgstr "Rimuovi ripubblicazione"
+msgstr "Rimuovi repost"
#: src/view/com/composer/videos/SubtitleDialog.tsx:260
msgid "Remove subtitle file"
@@ -5586,8 +5586,8 @@ msgid "Reply was successfully hidden"
msgstr "Risposta nascosta con successo"
#: src/components/dms/MessageMenu.tsx:132
-#: src/components/dms/MessagesListBlockedFooter.tsx:77
#: src/components/dms/MessagesListBlockedFooter.tsx:84
+#: src/components/dms/MessagesListBlockedFooter.tsx:91
msgid "Report"
msgstr "Segnala"
@@ -5596,8 +5596,8 @@ msgstr "Segnala"
msgid "Report Account"
msgstr "Segnala account"
-#: src/components/dms/ConvoMenu.tsx:200
-#: src/components/dms/ConvoMenu.tsx:203
+#: src/components/dms/ConvoMenu.tsx:258
+#: src/components/dms/ConvoMenu.tsx:261
#: src/components/dms/ReportConversationPrompt.tsx:17
msgid "Report conversation"
msgstr "Segnala conversazione"
@@ -5759,7 +5759,7 @@ msgstr "Reimposta il codice"
#: src/screens/Settings/Settings.tsx:344
#: src/screens/Settings/Settings.tsx:346
msgid "Reset onboarding state"
-msgstr "Reimposta lo stato dell'incorporazione"
+msgstr "Ripristina lo stato di registrazione"
#: src/screens/Login/ForgotPasswordForm.tsx:80
msgid "Reset password"
@@ -5804,12 +5804,12 @@ msgid "Returns to home page"
msgstr "Ritorna alla home"
#: src/screens/Profile/ProfileFeed/index.tsx:90
-#: src/screens/VideoFeed/index.tsx:1099
+#: src/screens/VideoFeed/index.tsx:1101
#: src/view/screens/NotFound.tsx:60
msgid "Returns to previous page"
msgstr "Ritorna alla pagina precedente"
-#: src/components/dialogs/BirthDateSettings.tsx:124
+#: src/components/dialogs/BirthDateSettings.tsx:120
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:438
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:444
#: src/components/StarterPack/QrCodeDialog.tsx:185
@@ -5834,7 +5834,7 @@ msgctxt "action"
msgid "Save"
msgstr "Salva"
-#: src/components/dialogs/BirthDateSettings.tsx:118
+#: src/components/dialogs/BirthDateSettings.tsx:114
msgid "Save birthday"
msgstr "Salva il compleanno"
@@ -5934,7 +5934,7 @@ msgstr "Cerca \"{interestsDisplayName}\"{activeText}"
msgid "Search for \"{query}\""
msgstr "Cerca \"{query}\""
-#: src/view/screens/Search/Search.tsx:980
+#: src/view/screens/Search/Search.tsx:986
msgid "Search for \"{searchText}\""
msgstr "Cerca \"{searchText}\""
@@ -6145,7 +6145,7 @@ msgstr "Invia tramite messaggi"
msgid "Sends email with confirmation code for account deletion"
msgstr "Invia un'email con il codice di conferma per l'eliminazione dell'account"
-#: src/view/com/auth/server-input/index.tsx:127
+#: src/view/com/auth/server-input/index.tsx:163
msgid "Server address"
msgstr "Indirizzo del server"
@@ -6420,7 +6420,7 @@ msgstr "Esci"
#: src/screens/Settings/Settings.tsx:256
#: src/view/shell/desktop/LeftNav.tsx:205
msgid "Sign out?"
-msgstr "Uscire?"
+msgstr "Vuoi uscire?"
#: src/components/moderation/ScreenHider.tsx:91
#: src/lib/moderation/useGlobalLabelStrings.ts:28
@@ -6437,7 +6437,7 @@ msgstr "Accesso effettuato come @{0}"
msgid "Signup without a starter pack"
msgstr "Iscriviti senza uno starter pack"
-#: src/components/FeedInterstitials.tsx:314
+#: src/components/FeedInterstitials.tsx:335
msgid "Similar accounts"
msgstr "Account simili"
@@ -6459,7 +6459,7 @@ msgstr "Più piccolo"
msgid "Software Dev"
msgstr "Sviluppo software"
-#: src/components/FeedInterstitials.tsx:449
+#: src/components/FeedInterstitials.tsx:470
msgid "Some other feeds you might like"
msgstr "Altri feed che potrebbero piacerti"
@@ -6467,7 +6467,7 @@ msgstr "Altri feed che potrebbero piacerti"
msgid "Some people can reply"
msgstr "Risposte limitate"
-#: src/screens/Messages/Conversation.tsx:102
+#: src/screens/Messages/Conversation.tsx:112
msgid "Something went wrong"
msgstr "Qualcosa è andato storto"
@@ -6632,11 +6632,11 @@ msgstr "Iscriviti alla lista"
msgid "Success!"
msgstr "Successo!"
-#: src/view/screens/Search/Explore.tsx:366
+#: src/view/screens/Search/Explore.tsx:368
msgid "Suggested accounts"
msgstr "Account suggeriti"
-#: src/components/FeedInterstitials.tsx:316
+#: src/components/FeedInterstitials.tsx:337
msgid "Suggested for you"
msgstr "Suggerito per te"
@@ -6703,7 +6703,7 @@ msgstr "Tocca per ignorare"
msgid "Tap to enter full screen"
msgstr "Tocca per entrare in modalità a schermo intero"
-#: src/screens/VideoFeed/index.tsx:931
+#: src/screens/VideoFeed/index.tsx:933
msgid "Tap to expand or collapse post text."
msgstr "Tocca per espandere o comprimere il testo del post."
@@ -6820,7 +6820,7 @@ msgstr "Impossibile trovare starter pack."
msgid "That's all, folks!"
msgstr "Questo è tutto, gente!"
-#: src/screens/VideoFeed/index.tsx:1071
+#: src/screens/VideoFeed/index.tsx:1073
msgid "That's everything!"
msgstr "È tutto!"
@@ -7065,7 +7065,7 @@ msgstr "Questo contenuto non è disponibile perché uno degli utenti coinvolti h
msgid "This content is not viewable without a Bluesky account."
msgstr "Questo contenuto non è visualizzabile senza un account Bluesky."
-#: src/screens/Messages/components/ChatListItem.tsx:276
+#: src/screens/Messages/components/ChatListItem.tsx:284
msgid "This conversation is with a deleted or a deactivated account. Press for options."
msgstr "L'utente di questa conversazione ha disattivato o eliminato l'account. Premi per le opzioni."
@@ -7180,7 +7180,7 @@ msgstr "Questo dovrebbe creare un record di dominio in:"
msgid "This user doesn't have any followers."
msgstr "Questo utente non ha follower."
-#: src/components/dms/MessagesListBlockedFooter.tsx:60
+#: src/components/dms/MessagesListBlockedFooter.tsx:67
msgid "This user has blocked you"
msgstr "Questo utente ti ha bloccato"
@@ -7359,10 +7359,10 @@ msgstr "Impossibile contattare il servizio. Verifica la tua connessione a intern
msgid "Unable to delete"
msgstr "Impossibile eliminare"
-#: src/components/dms/MessagesListBlockedFooter.tsx:89
#: src/components/dms/MessagesListBlockedFooter.tsx:96
-#: src/components/dms/MessagesListBlockedFooter.tsx:104
+#: src/components/dms/MessagesListBlockedFooter.tsx:103
#: src/components/dms/MessagesListBlockedFooter.tsx:111
+#: src/components/dms/MessagesListBlockedFooter.tsx:118
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:197
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283
#: src/view/com/profile/ProfileMenu.tsx:341
@@ -7375,8 +7375,8 @@ msgctxt "action"
msgid "Unblock"
msgstr "Sblocca"
-#: src/components/dms/ConvoMenu.tsx:191
-#: src/components/dms/ConvoMenu.tsx:195
+#: src/components/dms/ConvoMenu.tsx:250
+#: src/components/dms/ConvoMenu.tsx:253
msgid "Unblock account"
msgstr "Sblocca account"
@@ -7399,7 +7399,7 @@ msgstr "Annulla ripubblicazione"
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Annulla ripubblicazione ({0, plural, one {# ripubblicazione} other {# ripubblicazioni}})"
-#: src/view/com/profile/FollowButton.tsx:60
+#: src/view/com/profile/FollowButton.tsx:63
msgctxt "action"
msgid "Unfollow"
msgstr "Smetti di seguire"
@@ -7413,7 +7413,7 @@ msgstr "Smetti di seguire {0}"
msgid "Unfollow Account"
msgstr "Smetti di seguire questo account"
-#: src/screens/VideoFeed/index.tsx:801
+#: src/screens/VideoFeed/index.tsx:803
msgid "Unfollow user"
msgstr "Smetti di seguire"
@@ -7445,7 +7445,7 @@ msgstr "Riattiva {tag}"
msgid "Unmute Account"
msgstr "Riattiva questo account"
-#: src/components/dms/ConvoMenu.tsx:179
+#: src/components/dms/ConvoMenu.tsx:239
msgid "Unmute conversation"
msgstr "Riattiva conversazione"
@@ -7746,11 +7746,11 @@ msgstr "Video da {0}: {text}"
msgid "Video Games"
msgstr "Videogiochi"
-#: src/screens/VideoFeed/index.tsx:1029
+#: src/screens/VideoFeed/index.tsx:1031
msgid "Video is paused"
msgstr "Video in pausa"
-#: src/screens/VideoFeed/index.tsx:1029
+#: src/screens/VideoFeed/index.tsx:1031
msgid "Video is playing"
msgstr "Video in riproduzione"
@@ -7785,12 +7785,12 @@ msgstr "Vedi l'avatar di {0}"
#: src/components/ProfileCard.tsx:110
#: src/screens/Profile/components/ProfileFeedHeader.tsx:450
-#: src/screens/VideoFeed/index.tsx:762
+#: src/screens/VideoFeed/index.tsx:763
#: src/view/com/notifications/NotificationFeedItem.tsx:409
msgid "View {0}'s profile"
msgstr "Vedi il profilo di {0}"
-#: src/components/dms/MessagesListHeader.tsx:167
+#: src/components/dms/MessagesListHeader.tsx:173
msgid "View {displayName}'s profile"
msgstr "Vedi il profilo di {displayName}"
@@ -7905,7 +7905,7 @@ msgstr "Non siamo riusciti a trovare alcun risultato per quell'hashtag."
msgid "We couldn't find any results for that topic."
msgstr "Nessun risultato per questo argomento."
-#: src/screens/Messages/Conversation.tsx:103
+#: src/screens/Messages/Conversation.tsx:113
msgid "We couldn't load this conversation"
msgstr "Non riusciamo a caricare questa conversazione"
@@ -8037,7 +8037,7 @@ msgstr "Ops! Non è stato possibile caricare i video di tendenza."
#: src/screens/Takendown.tsx:173
msgid "Why are you appealing?"
-msgstr "Perché richiedi la revisione?"
+msgstr "Per quale motivo fai ricorso?"
#: src/components/ReportDialog/SelectReportOptionView.tsx:42
msgid "Why should this content be reviewed?"
@@ -8192,7 +8192,7 @@ msgstr "Non hai salvato nessun feed."
msgid "You have blocked the author or you have been blocked by the author."
msgstr "Hai bloccato l'autore o sei stato bloccato dall'autore."
-#: src/components/dms/MessagesListBlockedFooter.tsx:58
+#: src/components/dms/MessagesListBlockedFooter.tsx:65
msgid "You have blocked this user"
msgstr "Hai bloccato questo utente"
@@ -8329,15 +8329,15 @@ msgstr "Riceverai le notifiche per questo thread"
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "Riceverai un'email con un codice di recupero. Inserisci il codice qui, poi inserisci la tua nuova password."
-#: src/screens/Messages/components/ChatListItem.tsx:133
+#: src/screens/Messages/components/ChatListItem.tsx:139
msgid "You: {0}"
msgstr "Tu: {0}"
-#: src/screens/Messages/components/ChatListItem.tsx:162
+#: src/screens/Messages/components/ChatListItem.tsx:168
msgid "You: {defaultEmbeddedContentMessage}"
msgstr "Tu: {defaultEmbeddedContentMessage}"
-#: src/screens/Messages/components/ChatListItem.tsx:155
+#: src/screens/Messages/components/ChatListItem.tsx:161
msgid "You: {short}"
msgstr "Tu: {short}"
@@ -8399,7 +8399,7 @@ msgstr "Hai raggiunto il limite giornaliero di video caricati (troppi byte)"
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Hai raggiunto il limite giornaliero di video caricati (troppi video)"
-#: src/screens/VideoFeed/index.tsx:1080
+#: src/screens/VideoFeed/index.tsx:1082
msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
msgstr "Non ci sono altri video da guardare. Forse è il momento giusto per fare una pausa?"
@@ -8425,11 +8425,11 @@ msgstr "L'archivio del tuo account, che contiene tutti i record di dati pubblici
#: src/screens/Takendown.tsx:214
msgid "Your account was found to be in violation of the <0>Bluesky Social Terms of Service0>. You have been sent an email outlining the specific violation and suspension period, if applicable. You can appeal this decision if you believe it was made in error."
-msgstr "Abbiamo riscontrato che il tuo account viola i <0>termini di servizio di Bluesky Social0>. Ti abbiamo inviato un'email che descrive la violazione e il periodo di sospensione, se applicabile. Se ritieni che questa decisione sia stata presa per errore, puoi richiedere una revisione della sospensione."
+msgstr "Abbiamo riscontrato che il tuo account viola i <0>termini di servizio di Bluesky0>. Ti abbiamo inviato un'email che descrive la violazione e il periodo di sospensione, se applicabile. Se ritieni che questa decisione sia stata presa per errore, puoi richiedere una revisione della sospensione."
#: src/screens/Takendown.tsx:154
msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email."
-msgstr "La tua richiesta di revisione è stata inviata. Riceverai un'email se la revisione avrà esito positivo."
+msgstr "La richiesta di revisione è stata inviata. Se il ricorso ha esito positivo, riceverai un'email."
#: src/screens/Signup/StepInfo/index.tsx:205
msgid "Your birth date"
diff --git a/src/locale/locales/pt-BR/messages.po b/src/locale/locales/pt-BR/messages.po
index 408a8a885e..17e4d7f998 100644
--- a/src/locale/locales/pt-BR/messages.po
+++ b/src/locale/locales/pt-BR/messages.po
@@ -8,9 +8,9 @@ msgstr ""
"Language: pt-BR\n"
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2024-10-10 23:30:00\n"
+"PO-Revision-Date: 2025-01-25 16:40:00\n"
"Last-Translator: Felps3000\n"
-"Language-Team: maisondasilva, MightyLoggor, gildaswise, gleydson, faeriarum, fabiohcnobre, garccez\n"
+"Language-Team: Felps3000, maisondasilva, MightyLoggor, gildaswise, gleydson, faeriarum, fabiohcnobre, garccez\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: src/components/ProgressGuide/FollowDialog.tsx:567
@@ -268,11 +268,11 @@ msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedA
#: src/view/com/notifications/NotificationFeedItem.tsx:223
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your post"
-msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}}0> curtiram seu post"
+msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}}0> curtiram sua postagem"
#: src/view/com/notifications/NotificationFeedItem.tsx:247
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your post"
-msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}}0> repostaram seu post"
+msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}}0> repostaram sua postagem"
#: src/view/com/notifications/NotificationFeedItem.tsx:351
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> signed up with your starter pack"
@@ -292,11 +292,11 @@ msgstr "{firstAuthorLink} curtiu seu feed personalizado"
#: src/view/com/notifications/NotificationFeedItem.tsx:235
msgid "{firstAuthorLink} liked your post"
-msgstr "{firstAuthorLink} curtiu seu post"
+msgstr "{firstAuthorLink} curtiu sua postagem"
#: src/view/com/notifications/NotificationFeedItem.tsx:259
msgid "{firstAuthorLink} reposted your post"
-msgstr "{firstAuthorLink} repostou seu post"
+msgstr "{firstAuthorLink} repostou sua postagem"
#: src/view/com/notifications/NotificationFeedItem.tsx:363
msgid "{firstAuthorLink} signed up with your starter pack"
@@ -312,11 +312,11 @@ msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuth
#: src/view/com/notifications/NotificationFeedItem.tsx:216
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post"
-msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} curtiram seu post"
+msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} curtiram sua postagem"
#: src/view/com/notifications/NotificationFeedItem.tsx:240
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post"
-msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} repostaram seu post"
+msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} repostaram sua postagem"
#: src/view/com/notifications/NotificationFeedItem.tsx:344
msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack"
@@ -336,11 +336,11 @@ msgstr "{firstAuthorName} curtiu seu feed personalizado"
#: src/view/com/notifications/NotificationFeedItem.tsx:221
msgid "{firstAuthorName} liked your post"
-msgstr "{firstAuthorName} curtiu seu post"
+msgstr "{firstAuthorName} curtiu sua postagem"
#: src/view/com/notifications/NotificationFeedItem.tsx:245
msgid "{firstAuthorName} reposted your post"
-msgstr "{firstAuthorName} repostou seu post"
+msgstr "{firstAuthorName} repostou sua postagem"
#: src/view/com/notifications/NotificationFeedItem.tsx:349
msgid "{firstAuthorName} signed up with your starter pack"
@@ -363,7 +363,7 @@ msgstr "{handle} não pode receber mensagens"
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:260
msgid "{notificationCount} unread items"
-msgstr ""
+msgstr "{notificationCount} itens não lidos"
#: src/view/shell/Drawer.tsx:448
msgid "{numUnreadNotifications} unread"
@@ -470,7 +470,7 @@ msgstr "<0>Você0> e<1> 1><2>{0} 2>estão incluídos no seu pacote inicial
#: src/screens/Profile/Header/Handle.tsx:52
msgid "⚠Invalid Handle"
-msgstr "⚠Usuário Inválido"
+msgstr "⚠Nome de Usuário Inválido"
#: src/components/dialogs/MutedWords.tsx:193
msgid "24 hours"
@@ -669,7 +669,7 @@ msgstr "Adicionar nova postagem"
#: src/view/screens/ProfileList.tsx:903
#: src/view/screens/ProfileList.tsx:921
msgid "Add people"
-msgstr ""
+msgstr "Adicionar pessoas"
#: src/screens/StarterPack/Wizard/index.tsx:197
#~ msgid "Add people to your starter pack that you think others will enjoy following"
@@ -755,7 +755,7 @@ msgstr "Avançado"
#: src/view/screens/Notifications.tsx:86
msgid "All"
-msgstr ""
+msgstr "Todos"
#: src/screens/StarterPack/StarterPackScreen.tsx:381
msgid "All accounts have been followed!"
@@ -782,7 +782,7 @@ msgstr "Permitir novas mensagens de"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:314
msgid "Allow quote posts"
-msgstr ""
+msgstr "Permitir citações"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:359
msgid "Allow replies from:"
@@ -957,15 +957,15 @@ msgstr "Qualquer pessoa pode interagir"
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23
msgid "App Icon"
-msgstr ""
+msgstr "Ícone do Aplicativo"
#: src/screens/Settings/LanguageSettings.tsx:80
msgid "App Language"
-msgstr "Idioma do aplicativo"
+msgstr "Idioma do Aplicativo"
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:122
msgid "App Password"
-msgstr "Senha do Aplicativo"
+msgstr "Senha de Aplicativo"
#: src/screens/Settings/AppPasswords.tsx:147
msgid "App password deleted"
@@ -973,11 +973,11 @@ msgstr "Senha de Aplicativo excluída"
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:84
msgid "App password name must be unique"
-msgstr "O nome da senha do aplicativo deve ser único"
+msgstr "O nome da senha de aplicativo deve ser único"
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:62
msgid "App password names can only contain letters, numbers, spaces, dashes, and underscores"
-msgstr "O nome da senha do aplicativo só pode conter letras, números, travessões e underline"
+msgstr "O nome da senha de aplicativo só pode conter letras, números, travessões e underline"
#: src/view/com/modals/AddAppPasswords.tsx:138
#~ msgid "App Password names can only contain letters, numbers, spaces, dashes, and underscores."
@@ -985,7 +985,7 @@ msgstr "O nome da senha do aplicativo só pode conter letras, números, travess
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:80
msgid "App password names must be at least 4 characters long"
-msgstr "O nome da senha do aplicativo deve ter pelo menos 4 caracteres"
+msgstr "O nome da senha de aplicativo deve ter pelo menos 4 caracteres"
#: src/view/com/modals/AddAppPasswords.tsx:103
#~ msgid "App Password names must be at least 4 characters long."
@@ -998,12 +998,12 @@ msgstr "O nome da senha do aplicativo deve ter pelo menos 4 caracteres"
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:66
msgid "App passwords"
-msgstr "Senhas do aplicativo"
+msgstr "Senhas de aplicativo"
#: src/Navigation.tsx:291
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
-msgstr "Senhas de Aplicativos"
+msgstr "Senhas de Aplicativo"
#: src/components/moderation/LabelsOnMeDialog.tsx:148
#: src/components/moderation/LabelsOnMeDialog.tsx:151
@@ -1057,7 +1057,7 @@ msgstr "Arquivado desde {0}"
#: src/view/com/post-thread/PostThreadItem.tsx:803
#: src/view/com/post-thread/PostThreadItem.tsx:842
msgid "Archived post"
-msgstr "Post arquivado"
+msgstr "Postagem arquivada"
#: src/screens/StarterPack/StarterPackScreen.tsx:610
#~ msgid "Are you sure you want delete this starter pack?"
@@ -1065,11 +1065,11 @@ msgstr "Post arquivado"
#: src/screens/Settings/AppPasswords.tsx:209
msgid "Are you sure you want to delete the app password \"{0}\"?"
-msgstr "Tem certeza de que deseja excluir a senha do aplicativo \"{0}\"?"
+msgstr "Tem certeza de que deseja excluir a senha de aplicativo \"{0}\"?"
#: 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}\"?"
+#~ msgstr "Tem certeza de que deseja excluir a senha de aplicativo \"{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."
@@ -1109,7 +1109,7 @@ msgstr "Tem certeza que deseja descartar este rascunho?"
#: src/view/com/composer/Composer.tsx:853
msgid "Are you sure you'd like to discard this post?"
-msgstr "Tem certeza de que deseja descartar este post?"
+msgstr "Tem certeza de que deseja descartar esta postagem?"
#: src/components/dialogs/MutedWords.tsx:433
msgid "Are you sure?"
@@ -1175,7 +1175,7 @@ msgstr "Você deve verificar seu email antes de criar uma lista."
#: src/view/com/composer/Composer.tsx:606
msgid "Before creating a post, you must first verify your email."
-msgstr "Você deve verificar seu email antes de criar um post."
+msgstr "Você deve verificar seu email antes de criar uma postagem."
#: src/components/StarterPack/ProfileStarterPacks.tsx:340
msgid "Before creating a starter pack, you must first verify your email."
@@ -1337,7 +1337,7 @@ msgstr ""
#: src/screens/Settings/AppIconSettings/index.tsx:102
msgid "Bluesky+ icons"
-msgstr ""
+msgstr "Ícones do Bluesky+"
#: src/lib/moderation/useLabelBehaviorDescription.ts:53
msgid "Blur images"
@@ -1383,15 +1383,15 @@ msgstr "Navegar por outros feeds"
#: src/components/TrendingTopics.tsx:176
msgid "Browse posts about {displayName}"
-msgstr ""
+msgstr "Navegar em postagens sobre {displayName}"
#: src/components/TrendingTopics.tsx:184
msgid "Browse posts tagged with {displayName}"
-msgstr ""
+msgstr "Navegar em postagens marcadas com {displayName}"
#: src/components/TrendingTopics.tsx:222
msgid "Browse topic {displayName}"
-msgstr ""
+msgstr "Navegar tópico {displayName}"
#: src/view/com/auth/SplashScreen.web.tsx:168
msgid "Business"
@@ -1419,7 +1419,7 @@ msgstr "Por {0}"
#: src/screens/Profile/components/ProfileFeedHeader.tsx:447
msgid "By <0>{0}0>"
-msgstr ""
+msgstr "Por <0>{0}0>"
#: src/screens/Signup/StepInfo/Policies.tsx:80
#~ msgid "By creating an account you agree to the {els}."
@@ -1494,7 +1494,7 @@ msgstr "Cancelar exclusão da conta"
#: src/view/com/modals/ChangeHandle.tsx:137
#~ msgid "Cancel change handle"
-#~ msgstr "Cancelar alteração de usuário"
+#~ msgstr "Cancelar alteração de nome de usuário"
#: src/view/com/modals/CropImage.web.tsx:94
msgid "Cancel image crop"
@@ -1552,12 +1552,12 @@ msgstr "Alterar"
#: src/screens/Settings/AppIconSettings/index.tsx:39
msgid "Change app icon"
-msgstr ""
+msgstr "Alterar ícone do aplicativo"
#: src/screens/Settings/AppIconSettings/index.tsx:38
#: src/screens/Settings/AppIconSettings/index.tsx:221
msgid "Change app icon to \"{0}\""
-msgstr ""
+msgstr "Alterar ícone do aplicativo para \"{0}\""
#: src/screens/Settings/AccountSettings.tsx:97
#: src/screens/Settings/AccountSettings.tsx:101
@@ -1571,12 +1571,12 @@ msgstr "Alterar endereço de email"
#: src/view/screens/Settings/index.tsx:685
#~ msgid "Change handle"
-#~ msgstr "Alterar usuário"
+#~ msgstr "Alterar nome de usuário"
#: src/screens/Settings/components/ChangeHandleDialog.tsx:92
#: src/screens/Settings/components/ChangeHandleDialog.tsx:96
msgid "Change Handle"
-msgstr "Alterar Usuário"
+msgstr "Alterar Nome de Usuário"
#: src/view/com/modals/VerifyEmail.tsx:155
msgid "Change my email"
@@ -1714,7 +1714,7 @@ msgstr "Selecionar esta cor como seu avatar"
#: src/view/screens/Feeds.tsx:728
#: src/view/screens/Search/Explore.tsx:411
msgid "Choose your own timeline! Feeds built by the community help you find content you love."
-msgstr ""
+msgstr "Escolha sua própria timeline! Feeds construídos pela comunidade te ajudam a encontrar o conteúdo que você ama."
#: src/screens/Signup/StepInfo/index.tsx:201
msgid "Choose your password"
@@ -1830,7 +1830,7 @@ msgstr "Fechar janela"
#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137
#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173
msgid "Close emoji picker"
-msgstr ""
+msgstr "Fechar selecionador de emoji"
#: src/components/dialogs/GifSelect.tsx:169
msgid "Close GIF dialog"
@@ -1867,7 +1867,7 @@ msgstr "Fecha alerta de troca de senha"
#: 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"
+#~ msgstr "Fecha o editor de postagem e descarta o rascunho"
#: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:32
msgid "Closes viewer for header image"
@@ -2003,7 +2003,7 @@ msgstr "Contatar suporte"
#: src/screens/Settings/ContentAndMediaSettings.tsx:49
msgid "Content & Media"
-msgstr ""
+msgstr "Conteúdo & Mídia"
#: src/screens/Settings/AccessibilitySettings.tsx:109
#: src/screens/Settings/Settings.tsx:175
@@ -2118,7 +2118,7 @@ msgstr "Copiar"
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:196
msgid "Copy App Password"
-msgstr "Copiar Senha do Aplicativo"
+msgstr "Copiar Senha de Aplicativo"
#: src/screens/Settings/AboutSettings.tsx:68
msgid "Copy build version to clipboard"
@@ -2285,7 +2285,7 @@ msgstr "{0} criada"
#: src/screens/List/ListHiddenScreen.tsx:127
msgid "Creator has been blocked"
-msgstr ""
+msgstr "Criador bloqueado"
#: src/screens/Onboarding/index.tsx:26
#: src/screens/Onboarding/state.ts:99
@@ -2359,7 +2359,7 @@ msgstr "Padrão"
#: src/screens/Settings/AppIconSettings/index.tsx:75
msgid "Default icons"
-msgstr ""
+msgstr "Ícones padrão"
#: src/components/dms/MessageMenu.tsx:151
#: src/screens/Settings/AppPasswords.tsx:212
@@ -2565,7 +2565,7 @@ msgstr "Descartar rascunho?"
#: src/view/com/composer/Composer.tsx:852
msgid "Discard post?"
-msgstr "Descartar post?"
+msgstr "Descartar postagem?"
#: src/screens/Settings/components/PwiOptOut.tsx:80
#: src/screens/Settings/components/PwiOptOut.tsx:84
@@ -2873,7 +2873,7 @@ msgstr "Educação"
#: src/screens/List/ListHiddenScreen.tsx:141
msgid "Either the creator of this list has blocked you or you have blocked the creator."
-msgstr ""
+msgstr "O criador dessa lista bloqueou você ou você bloqueou o criador."
#: src/screens/Settings/AccountSettings.tsx:60
#: src/screens/Signup/StepInfo/index.tsx:170
@@ -2991,7 +2991,7 @@ msgstr "Habilitar mídia somente para este site"
#: src/screens/Settings/ContentAndMediaSettings.tsx:122
#: src/screens/Settings/ContentAndMediaSettings.tsx:136
msgid "Enable trending topics"
-msgstr ""
+msgstr "Ativar trending topics"
#: src/screens/Messages/Settings.tsx:130
#: src/screens/Messages/Settings.tsx:133
@@ -3071,7 +3071,7 @@ msgstr "Digite seu novo endereço de e-mail abaixo."
#: src/screens/Login/index.tsx:98
msgid "Enter your username and password"
-msgstr "Digite seu nome de usuário e senha"
+msgstr "Digite seu usuário e senha"
#: src/view/com/composer/Composer.tsx:1644
#: src/view/com/util/error/ErrorScreen.tsx:42
@@ -3172,7 +3172,7 @@ msgstr "Experimental"
#: 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"
+#~ msgstr "Experimental: Quando esta 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"
#: src/components/dialogs/MutedWords.tsx:500
msgid "Expired"
@@ -3225,7 +3225,7 @@ msgstr "Preferências de Mídia Externa"
#: src/screens/Settings/components/ChangeHandleDialog.tsx:570
msgid "Failed to change handle. Please try again."
-msgstr "Não foi possível alterar o usuário. Por favor tente novamente."
+msgstr "Não foi possível alterar o nome de usuário. Por favor tente novamente."
#: src/view/com/modals/AddAppPasswords.tsx:119
#: src/view/com/modals/AddAppPasswords.tsx:123
@@ -3334,7 +3334,7 @@ msgstr "Falha ao carregar o vídeo"
#: src/screens/Settings/components/ChangeHandleDialog.tsx:343
msgid "Failed to verify handle. Please try again."
-msgstr "Não foi possível verificar o usuário. Por favor tente novamente."
+msgstr "Não foi possível verificar o nome de usuário. Por favor tente novamente."
#: src/Navigation.tsx:231
msgid "Feed"
@@ -3347,7 +3347,7 @@ msgstr "Feed por {0}"
#: src/screens/Profile/components/ProfileFeedHeader.tsx:353
msgid "Feed menu"
-msgstr ""
+msgstr "Menu do feed"
#: src/view/screens/Feeds.tsx:709
#~ msgid "Feed offline"
@@ -3398,11 +3398,11 @@ msgstr "Feeds atualizados!"
#: src/screens/Search/components/ExploreRecommendations.tsx:54
msgid "Feeds we think you might like."
-msgstr ""
+msgstr "Feeds que talvez você goste."
#: src/view/com/modals/ChangeHandle.tsx:468
#~ msgid "File Contents"
-#~ msgstr "Conteúdo do arquivo"
+#~ msgstr "Conteúdo do Arquivo"
#: src/screens/Settings/components/ExportCarDialog.tsx:43
msgid "File saved successfully!"
@@ -3430,7 +3430,7 @@ msgstr "Encontre contas para seguir"
#: src/components/ProgressGuide/FollowDialog.tsx:88
#: src/components/ProgressGuide/FollowDialog.tsx:417
msgid "Find people to follow"
-msgstr ""
+msgstr "Encontre pessoas para seguir"
#: src/view/screens/Search/Search.tsx:595
msgid "Find posts and users on Bluesky"
@@ -3507,7 +3507,7 @@ msgstr "Seguir {name}"
#: src/components/ProgressGuide/List.tsx:52
#: src/state/shell/progress-guide.tsx:229
msgid "Follow 10 accounts"
-msgstr ""
+msgstr "Seguir 10 contas"
#: src/components/ProgressGuide/List.tsx:69
msgid "Follow 7 accounts"
@@ -3831,20 +3831,20 @@ msgstr "Metade do caminho!"
#: src/screens/Settings/AccountSettings.tsx:126
#: src/screens/Settings/AccountSettings.tsx:131
msgid "Handle"
-msgstr "Usuário"
+msgstr "Nome de usuário"
#: src/screens/Settings/components/ChangeHandleDialog.tsx:574
msgid "Handle already taken. Please try a different one."
-msgstr "Usuário já utilizado. Por favor tente um usuário diferente."
+msgstr "Nome de usuário já utilizado. Por favor tente um usuário diferente."
#: src/screens/Settings/components/ChangeHandleDialog.tsx:191
#: src/screens/Settings/components/ChangeHandleDialog.tsx:327
msgid "Handle changed!"
-msgstr "Usuário alterado!"
+msgstr "Nome de usuário alterado!"
#: src/screens/Settings/components/ChangeHandleDialog.tsx:578
msgid "Handle too long. Please try a shorter one."
-msgstr "Usuário muito longo. Por favor tente um nome de usuário mais curto."
+msgstr "Nome de usuário muito longo. Por favor tente um nome de usuário mais curto."
#: src/screens/Settings/AccessibilitySettings.tsx:87
msgid "Haptics"
@@ -3963,13 +3963,13 @@ msgstr "Ocultar esta resposta?"
#: src/screens/Search/components/ExploreTrendingTopics.tsx:83
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:62
msgid "Hide trending topics"
-msgstr ""
+msgstr "Esconder trending topics"
#: src/components/interstitials/Trending.tsx:99
#: src/screens/Search/components/ExploreTrendingTopics.tsx:135
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:108
msgid "Hide trending topics?"
-msgstr ""
+msgstr "Esconder trending topics"
#: src/view/com/notifications/NotificationFeedItem.tsx:592
msgid "Hide user list"
@@ -4083,7 +4083,7 @@ msgstr "Se você deletar esta lista, você não poderá recuperá-la."
#: src/screens/Settings/components/ChangeHandleDialog.tsx:250
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
-msgstr ""
+msgstr "Se você tem um domínio próprio, você pode usá-lo como seu nome de usuário. Isso permite que você auto-verifique a sua identidade. <0>Saiba mais aqui.0>"
#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:658
msgid "If you remove this post, you won't be able to recover it."
@@ -4095,7 +4095,7 @@ msgstr "Se você quiser alterar sua senha, enviaremos um código para verificar
#: 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 usuário ou e-mail, faça isso antes de desativar."
+msgstr "Se você estiver tentando alterar seu nome de usuário ou e-mail, faça isso antes de desativar."
#: src/lib/moderation/useReportOptions.ts:38
msgid "Illegal and Urgent"
@@ -4184,7 +4184,7 @@ msgstr "Código de confirmação da autenticação de dois fatores inválido."
#: src/screens/Settings/components/ChangeHandleDialog.tsx:580
msgid "Invalid handle. Please try a different one."
-msgstr "Usuário inválido. Por favor tente um usuário diferente."
+msgstr "Nome de usuário inválido. Por favor tente um diferente."
#: src/view/com/post-thread/PostThreadItem.tsx:277
msgid "Invalid or unsupported post record"
@@ -4437,7 +4437,7 @@ msgstr "Curtir"
#: src/view/com/util/post-ctrls/PostCtrls.tsx:311
msgid "Like ({0, plural, one {# like} other {# likes}})"
-msgstr ""
+msgstr "Curtidas ({0, plural, one {# curtida} other {# curtidas}})"
#: src/components/ProgressGuide/List.tsx:63
msgid "Like 10 posts"
@@ -4446,11 +4446,11 @@ msgstr "Curtir 10 postagens"
#: src/state/shell/progress-guide.tsx:214
#: src/state/shell/progress-guide.tsx:219
msgid "Like 10 posts to train the Discover feed"
-msgstr "Curtir 10 postagens para treinar o feed de Descobertas"
+msgstr "Curta 10 postagens para treinar o feed de Descobertas"
#: src/screens/Profile/components/ProfileFeedHeader.tsx:501
msgid "Like feed"
-msgstr ""
+msgstr "Feed de curtidas"
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:275
msgid "Like this feed"
@@ -4471,7 +4471,7 @@ msgstr "Curtido Por"
#: src/components/FeedCard.tsx:213
#: src/view/com/feeds/FeedSourceCard.tsx:303
msgid "Liked by {0, plural, one {# user} other {# users}}"
-msgstr ""
+msgstr "Curtido por {0, plural, one {# usuário} other {# usuários}}"
#: src/view/com/feeds/FeedSourceCard.tsx:268
#~ msgid "Liked by {0} {1}"
@@ -4486,7 +4486,7 @@ msgstr ""
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:309
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
-msgstr ""
+msgstr "Curtido por {likeCount, plural, one {# usuário} other {# usuários}}"
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:287
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:301
@@ -4500,7 +4500,7 @@ msgstr ""
#: src/view/com/notifications/FeedItem.tsx:178
#~ msgid "liked your post"
-#~ msgstr "curtiram seu post"
+#~ msgstr "curtiram sua postagem"
#: src/view/screens/Profile.tsx:234
msgid "Likes"
@@ -4534,11 +4534,11 @@ msgstr "Lista por {0}"
#: src/view/com/profile/ProfileSubpageHeader.tsx:156
msgid "List by <0/>"
-msgstr ""
+msgstr "Lista por <0/>"
#: src/view/com/profile/ProfileSubpageHeader.tsx:154
msgid "List by you"
-msgstr ""
+msgstr "Lista feita por você"
#: src/view/screens/ProfileList.tsx:455
msgid "List deleted"
@@ -4634,7 +4634,7 @@ msgstr "Fazer login em uma conta que não está listada"
#: src/view/shell/desktop/RightNav.tsx:121
msgid "Logo by @sawaratsuki.bsky.social"
-msgstr ""
+msgstr "Logo por @sawaratsuki.bsky.social"
#: src/view/shell/desktop/RightNav.tsx:103
#~ msgid "Logo by <0/>"
@@ -4651,7 +4651,7 @@ msgstr "Segure para abrir o menu da tag #{tag}"
#: src/screens/Login/SetNewPasswordForm.tsx:110
msgid "Looks like XXXXX-XXXXX"
-msgstr "Tem esse formato: XXXXX-XXXXX"
+msgstr "Tem este formato: XXXXX-XXXXX"
#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:39
msgid "Looks like you haven't saved any feeds! Use our recommendations or browse more below."
@@ -4709,7 +4709,7 @@ msgstr "Usuários mencionados"
#: src/view/screens/Notifications.tsx:99
msgid "Mentions"
-msgstr ""
+msgstr "Menções"
#: src/components/Menu/index.tsx:96
#: src/view/screens/Search/Search.tsx:863
@@ -4977,7 +4977,7 @@ msgstr "Palavras/tags silenciadas"
#: src/view/screens/ProfileList.tsx:747
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."
+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:34
#: src/components/dialogs/BirthDateSettings.tsx:37
@@ -5057,7 +5057,7 @@ msgstr "Nunca perca o acesso aos seus seguidores ou dados."
#: src/screens/Settings/components/ChangeHandleDialog.tsx:550
msgid "Nevermind, create a handle for me"
-msgstr "Deixa pra lá, crie um usuário pra mim"
+msgstr "Deixa pra lá, crie um nome de usuário pra mim"
#: src/view/screens/Lists.tsx:74
#: src/view/screens/ModerationModlists.tsx:74
@@ -5083,12 +5083,12 @@ msgstr "Novo chat"
#: src/screens/Settings/components/ChangeHandleDialog.tsx:212
#: src/screens/Settings/components/ChangeHandleDialog.tsx:358
msgid "New handle"
-msgstr "Novo usuário"
+msgstr "Novo nome de usuário"
#: src/view/screens/Lists.tsx:66
#: src/view/screens/ModerationModlists.tsx:66
msgid "New list"
-msgstr ""
+msgstr "Nova lista"
#: src/components/dms/NewMessagesPill.tsx:92
msgid "New messages"
@@ -5507,7 +5507,7 @@ msgstr "Abrir criador de avatar"
#: src/screens/Settings/AccountSettings.tsx:127
msgid "Open change handle dialog"
-msgstr "Abrir tela de mudança de usuário"
+msgstr "Abrir tela de mudança de nome de usuário"
#: src/screens/Messages/components/ChatListItem.tsx:272
#: src/screens/Messages/components/ChatListItem.tsx:273
@@ -5516,17 +5516,17 @@ msgstr "Abrir opções de conversa"
#: src/components/Layout/Header/index.tsx:145
msgid "Open drawer menu"
-msgstr ""
+msgstr "Abrir menu"
#: src/screens/Messages/components/MessageInput.web.tsx:181
#: src/view/com/composer/Composer.tsx:1228
#: src/view/com/composer/Composer.tsx:1229
msgid "Open emoji picker"
-msgstr "Abrir seletor de emojis"
+msgstr "Abrir selecionador de emojis"
#: src/screens/Profile/components/ProfileFeedHeader.tsx:190
msgid "Open feed info screen"
-msgstr ""
+msgstr "Abri tela de informação do feed"
#: src/screens/Profile/components/ProfileFeedHeader.tsx:290
#: src/screens/Profile/components/ProfileFeedHeader.tsx:295
@@ -5584,7 +5584,7 @@ msgstr "Abre {numItems} opções"
#: src/view/com/composer/labels/LabelsBtn.tsx:62
msgid "Opens a dialog to add a content warning to your post"
-msgstr "Abre uma caixa de diálogo para adicionar um aviso de conteúdo para o seu post"
+msgstr "Abre uma caixa de diálogo para adicionar um aviso de conteúdo para a sua postagem"
#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:61
msgid "Opens a dialog to choose who can reply to this thread"
@@ -5662,7 +5662,7 @@ msgstr "Abre a lista de códigos de convite"
#: 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"
+#~ msgstr "Abre modal para troca do seu nome de usuário do Bluesky"
#: src/view/screens/Settings/index.tsx:755
#~ msgid "Opens modal for downloading your Bluesky account data (repository)"
@@ -5695,7 +5695,7 @@ msgstr "Abre o formulário de redefinição de senha"
#: src/view/screens/Settings/index.tsx:665
#~ msgid "Opens the app password settings"
-#~ msgstr "Abre as configurações de senha do aplicativo"
+#~ msgstr "Abre as configurações de senha de aplicativo"
#: src/view/screens/Settings/index.tsx:541
#~ msgid "Opens the Following feed preferences"
@@ -5858,7 +5858,7 @@ msgstr "Imagens destinadas a adultos."
#: src/screens/Profile/components/ProfileFeedHeader.tsx:519
#: src/screens/Profile/components/ProfileFeedHeader.tsx:526
msgid "Pin feed"
-msgstr ""
+msgstr "Fixar feed"
#: src/view/screens/ProfileList.tsx:685
msgid "Pin to home"
@@ -5880,7 +5880,7 @@ msgstr "Fixado"
#: src/screens/Profile/components/ProfileFeedHeader.tsx:162
#: src/screens/Profile/components/ProfileFeedHeader.tsx:174
msgid "Pinned {0} to Home"
-msgstr ""
+msgstr "Fixou {0} à Tela Inicial"
#: src/view/screens/SavedFeeds.tsx:123
msgid "Pinned Feeds"
@@ -5925,7 +5925,7 @@ msgstr "Reproduz o GIF"
#: src/screens/Signup/state.ts:217
msgid "Please choose your handle."
-msgstr "Por favor, escolha seu usuário."
+msgstr "Por favor, escolha seu nome de usuário."
#: src/screens/Signup/state.ts:210
#: src/screens/Signup/StepInfo/index.tsx:114
@@ -6023,7 +6023,7 @@ msgstr "Postado por {0}"
#: src/Navigation.tsx:218
#: src/Navigation.tsx:225
msgid "Post by @{0}"
-msgstr "Post por @{0}"
+msgstr "Postagem por @{0}"
#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:175
msgid "Post deleted"
@@ -6210,11 +6210,11 @@ msgstr "Público"
#: src/view/com/lists/MyLists.tsx:77
msgid "Public, sharable lists of users to mute or block in bulk."
-msgstr ""
+msgstr "Lista pública e compartilhável de usuários para silenciar ou bloquear em massa."
#: src/view/com/lists/MyLists.tsx:72
msgid "Public, sharable lists which can be used to drive feeds."
-msgstr ""
+msgstr "Listas públicas e compartilháveis que podem ser utilizadas para direcionar feeds."
#: src/view/screens/ModerationModlists.tsx:75
#~ msgid "Public, shareable lists of users to mute or block in bulk."
@@ -6305,7 +6305,7 @@ msgstr "Aleatório"
#: src/screens/Settings/components/ChangeHandleDialog.tsx:583
msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again."
-msgstr "Limite de operações excedido – você tentou mudar seu usuário muitas vezes em um curto período. Espere um minuto antes de tentar novamente."
+msgstr "Limite de operações excedido – você tentou mudar seu nome de usuário muitas vezes em um curto período. Espere um minuto antes de tentar novamente."
#: src/view/com/modals/EditImage.tsx:237
#~ msgid "Ratios"
@@ -6348,7 +6348,7 @@ msgstr "Buscas Recentes"
#: src/screens/Search/components/ExploreRecommendations.tsx:50
msgid "Recommended"
-msgstr ""
+msgstr "Recomendado"
#: src/view/com/auth/onboarding/RecommendedFeeds.tsx:117
#~ msgid "Recommended Feeds"
@@ -6552,7 +6552,7 @@ msgstr "Responder"
#: src/view/com/util/post-ctrls/PostCtrls.tsx:263
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
-msgstr ""
+msgstr "Responder ({0, plural, one {# resposta} other {# respostas}})"
#: src/view/screens/PreferencesFollowingFeed.tsx:142
#~ msgid "Reply Filters"
@@ -6578,7 +6578,7 @@ msgstr "Configurações de resposta são escolhidas pelo autor da thread"
#: src/view/com/post-thread/PostThread.tsx:648
msgid "Reply sorting"
-msgstr ""
+msgstr "Ordem das repostas"
#: src/view/com/post/Post.tsx:177
#: src/view/com/posts/FeedItem.tsx:285
@@ -6595,12 +6595,12 @@ msgstr "Responder <0><1/>0>"
#: src/view/com/posts/PostFeedItem.tsx:544
msgctxt "description"
msgid "Reply to a blocked post"
-msgstr "Responder para um post bloqueado"
+msgstr "Responder uma postagem bloqueada"
#: src/view/com/posts/PostFeedItem.tsx:546
msgctxt "description"
msgid "Reply to a post"
-msgstr "Responder para um post"
+msgstr "Responder uma postagem"
#: src/view/com/post/Post.tsx:202
#: src/view/com/posts/PostFeedItem.tsx:550
@@ -6708,7 +6708,7 @@ msgstr "Repostar"
#: src/view/com/util/post-ctrls/RepostButton.tsx:74
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
-msgstr ""
+msgstr "Repostar ({0, plural, one {# repostagem} other {# repostagens}})"
#: src/screens/StarterPack/StarterPackScreen.tsx:548
#: src/view/com/util/post-ctrls/RepostButton.tsx:148
@@ -6913,7 +6913,7 @@ msgstr "Salvar Alterações"
#: src/view/com/modals/ChangeHandle.tsx:158
#~ msgid "Save handle change"
-#~ msgstr "Salvar usuário"
+#~ msgstr "Salvar alteração de nome de usuário"
#: src/components/StarterPack/ShareDialog.tsx:150
#: src/components/StarterPack/ShareDialog.tsx:157
@@ -6926,7 +6926,7 @@ msgstr "Salvar corte de imagem"
#: src/screens/Settings/components/ChangeHandleDialog.tsx:231
msgid "Save new handle"
-msgstr "Salvar novo usuário"
+msgstr "Salvar novo nome de usuário"
#: src/components/StarterPack/QrCodeDialog.tsx:179
msgid "Save QR code"
@@ -6960,7 +6960,7 @@ msgstr "Salva todas as alterações"
#: src/view/com/modals/ChangeHandle.tsx:159
#~ msgid "Saves handle change to {handle}"
-#~ msgstr "Salva mudança de usuário para {handle}"
+#~ msgstr "Salva mudança de nome de usuário para {handle}"
#: src/view/com/modals/CropImage.web.tsx:105
msgid "Saves image crop settings"
@@ -6996,15 +6996,15 @@ msgstr "Buscar"
#: src/components/ProgressGuide/FollowDialog.tsx:745
msgid "Search by name or interest"
-msgstr ""
+msgstr "Pesquisar por nome ou interesse"
#: src/view/screens/Feeds.tsx:441
msgid "Search feeds"
-msgstr ""
+msgstr "Pesquisar feeds"
#: src/components/ProgressGuide/FollowDialog.tsx:575
msgid "Search for \"{interestsDisplayName}\"{activeText}"
-msgstr ""
+msgstr "Pesquisar por \"{interestsDisplayName}\"{activeText}"
#: src/view/shell/desktop/Search.tsx:201
msgid "Search for \"{query}\""
@@ -7132,7 +7132,7 @@ msgstr "Selecionar GIF \"{0}\""
#: src/components/dialogs/MutedWords.tsx:142
msgid "Select how long to mute this word for."
-msgstr "Selecione por quanto tempo essa palavra deve ser silenciada."
+msgstr "Selecione por quanto tempo esta palavra deve ser silenciada."
#: src/view/com/composer/videos/SubtitleDialog.tsx:245
msgid "Select language..."
@@ -7172,7 +7172,7 @@ msgstr "Selecione o serviço que hospeda seus dados."
#: src/screens/Onboarding/StepTopicalFeeds.tsx:100
#~ msgid "Select topical feeds to follow from the list below"
-#~ msgstr "Selecione feeds de assuntos para seguir"
+#~ msgstr "Selecione da lista abaixo feeds de tópicos para seguir"
#: src/view/com/composer/videos/SelectVideoBtn.tsx:100
msgid "Select video"
@@ -7288,7 +7288,7 @@ msgstr "URL do servidor"
#: src/screens/Settings/AppIconSettings/index.tsx:178
msgid "Set app icon to {0}"
-msgstr ""
+msgstr "Configurar o ícone do aplicativo para {0}"
#: src/screens/Moderation/index.tsx:290
msgid "Set birthdate"
@@ -7445,7 +7445,7 @@ msgstr "Compartilhar QR code"
#: src/screens/Profile/components/ProfileFeedHeader.tsx:470
msgid "Share this feed"
-msgstr ""
+msgstr "Compartilhar este feed"
#: src/screens/StarterPack/StarterPackScreen.tsx:416
msgid "Share this starter pack"
@@ -7510,7 +7510,7 @@ msgstr "Mostrar respostas ocultas"
#: src/view/com/post-thread/PostThreadItem.tsx:805
msgid "Show information about when this post was created"
-msgstr "Mostrar informação sobre quando este post foi criado"
+msgstr "Mostrar informação sobre quando esta postagem foi criada"
#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:473
#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:475
@@ -7576,11 +7576,11 @@ msgstr "Mostrar respostas"
#: src/view/com/post-thread/PostThread.tsx:622
msgid "Show replies as"
-msgstr ""
+msgstr "Mostrar respostas como"
#: src/screens/Settings/ThreadPreferences.tsx:151
msgid "Show replies as threaded"
-msgstr ""
+msgstr "Mostrar respostas como thread"
#: src/screens/Settings/ThreadPreferences.tsx:126
msgid "Show replies by people you follow before all other replies"
@@ -7728,7 +7728,7 @@ msgstr "É Necessário Fazer Login"
#: src/lib/hooks/useAccountSwitcher.ts:41
#: src/screens/Login/ChooseAccountForm.tsx:53
msgid "Signed in as @{0}"
-msgstr "autenticado como @{0}"
+msgstr "Autenticado como @{0}"
#: src/view/com/notifications/FeedItem.tsx:218
#~ msgid "signed up with your starter pack"
@@ -7791,7 +7791,7 @@ msgstr "Algo deu errado!"
#: src/screens/Profile/components/ProfileFeedHeader.tsx:538
msgid "Something wrong? Let us know."
-msgstr ""
+msgstr "Algo errado? Nos avise."
#: src/App.native.tsx:122
#: src/App.web.tsx:97
@@ -7851,12 +7851,12 @@ msgstr "Começar um novo chat"
#: src/view/screens/ProfileList.tsx:817
#: src/view/screens/ProfileList.tsx:938
msgid "Start adding people"
-msgstr ""
+msgstr "Comece a adicionar pessoas"
#: src/view/screens/ProfileList.tsx:824
#: src/view/screens/ProfileList.tsx:945
msgid "Start adding people!"
-msgstr ""
+msgstr "Comece a adicionar pessoas!"
#: src/components/dms/dialogs/SearchablePeopleList.tsx:353
msgid "Start chat with {displayName}"
@@ -7882,7 +7882,7 @@ msgstr "Pacote inicial por {0}"
#: src/view/com/profile/ProfileSubpageHeader.tsx:182
msgid "Starter pack by <0/>"
-msgstr ""
+msgstr "Pacote inicial por <0/>"
#: src/components/StarterPack/StarterPackCard.tsx:80
#: src/view/com/profile/ProfileSubpageHeader.tsx:180
@@ -8038,7 +8038,12 @@ msgstr "Apenas Tags"
#: src/screens/Settings/AppIconSettings/index.tsx:216
msgid "Tap to change app icon"
-msgstr ""
+msgstr "Toque para alterar o ícone do aplicativo"
+
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:138
+#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:174
+msgid "Tap to close the emoji picker"
+msgstr "Toque para fechar o selecionador de emoji"
#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:138
#: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:174
@@ -8072,7 +8077,7 @@ msgstr "Toque para ver a imagem completa"
#: src/state/shell/progress-guide.tsx:233
msgid "Task complete - 10 follows!"
-msgstr ""
+msgstr "Tarefa completa - 10 seguidas!"
#: src/state/shell/progress-guide.tsx:223
msgid "Task complete - 10 likes!"
@@ -8156,7 +8161,7 @@ msgstr "Obrigado. Sua denúncia foi enviada."
#: 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."
+msgstr "Obrigado, você verificou seu endereço e-mail com sucesso. Você pode fechar este diálogo."
#: src/screens/Settings/components/ChangeHandleDialog.tsx:470
msgid "That contains the following:"
@@ -8164,7 +8169,7 @@ msgstr "Contém o seguinte:"
#: src/screens/Signup/StepHandle.tsx:51
msgid "That handle is already taken."
-msgstr "Este identificador de usuário já está sendo usado."
+msgstr "Este nome de usuário já está sendo usado."
#: src/screens/StarterPack/StarterPackScreen.tsx:103
#: src/screens/StarterPack/StarterPackScreen.tsx:104
@@ -8173,7 +8178,7 @@ msgstr "Este identificador de usuário já está sendo usado."
#: src/screens/StarterPack/Wizard/index.tsx:104
#: src/screens/StarterPack/Wizard/index.tsx:114
msgid "That starter pack could not be found."
-msgstr "Esse pacote inicial não pôde ser encontrado."
+msgstr "Este pacote inicial não pôde ser encontrado."
#: src/view/com/post-thread/PostQuotes.tsx:132
msgid "That's all, folks!"
@@ -8187,7 +8192,7 @@ msgstr "A conta poderá interagir com você após o desbloqueio."
#: src/screens/Settings/AppIconSettings/index.tsx:41
#: src/screens/Settings/AppIconSettings/index.tsx:222
msgid "The app will be restarted"
-msgstr ""
+msgstr "O aplicativo vai ser reiniciado"
#: src/components/moderation/ModerationDetailsDialog.tsx:127
#~ msgid "the author"
@@ -8337,7 +8342,7 @@ msgstr "Tivemos um problema ao carregar esta lista. Toque aqui para tentar de no
#: src/screens/Settings/AppPasswords.tsx:60
msgid "There was an issue fetching your app passwords"
-msgstr "Houve um problema ao recuperar suas senhas do aplicativo"
+msgstr "Houve um problema ao recuperar suas senhas de aplicativo"
#: src/view/com/feeds/ProfileFeedgens.tsx:155
#: src/view/com/lists/ProfileLists.tsx:154
@@ -8473,7 +8478,7 @@ msgstr "Esta conversa é com uma conta excluída ou desativada. Pressione para o
#: src/screens/Settings/components/ExportCarDialog.tsx:94
msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost0>."
-msgstr "Esta funcionalidade está em beta. Você pode ler mais sobre exportação de repositórios <0>neste post0> do nosso blog."
+msgstr "Esta funcionalidade está em beta. Você pode ler mais sobre exportação de repositórios <0>nesta postagem0> do nosso blog."
#: src/lib/strings/errors.ts:21
msgid "This feature is not available while using an App Password. Please sign in with your main password."
@@ -8553,7 +8558,7 @@ msgstr "Esta lista - criada por <0>{0}0> - contém possíveis violações das
#: src/view/screens/ProfileList.tsx:933
msgid "This list is empty."
-msgstr ""
+msgstr "Esta lista está vazia."
#: src/screens/Profile/ErrorState.tsx:40
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
@@ -8561,11 +8566,11 @@ msgstr "Este serviço de moderação está indisponível. Veja mais detalhes aba
#: src/view/com/modals/AddAppPasswords.tsx:110
#~ msgid "This name is already in use"
-#~ msgstr "Você já tem uma senha com esse nome"
+#~ msgstr "Você já tem uma senha com este nome"
#: src/view/com/post-thread/PostThreadItem.tsx:845
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
-msgstr "Este post alega ter sido criado em <0>{0}0>, mas ele apareceu no Bluesky em <1>{1}1>."
+msgstr "Esta postagem alega ter sido criada em <0>{0}0>, mas ela apareceu no Bluesky em <1>{1}1>."
#: src/view/com/post-thread/PostThreadItem.tsx:152
msgid "This post has been deleted."
@@ -8660,12 +8665,12 @@ msgstr "Isso removerá sua postagem desta postagem de citação para todos os us
#: src/view/com/post-thread/PostThread.tsx:606
#: src/view/com/post-thread/PostThread.tsx:609
msgid "Thread options"
-msgstr ""
+msgstr "Opções das threads"
#: src/screens/Settings/ContentAndMediaSettings.tsx:66
#: src/screens/Settings/ContentAndMediaSettings.tsx:69
msgid "Thread preferences"
-msgstr "Preferências das Threads"
+msgstr "Preferências das threads"
#: src/screens/Settings/ThreadPreferences.tsx:45
msgid "Thread Preferences"
@@ -8682,7 +8687,7 @@ msgstr ""
#: src/screens/Settings/ThreadPreferences.tsx:142
msgid "Threaded mode"
-msgstr "Visualização de threads"
+msgstr "Modo de visualização de threads"
#: src/view/screens/PreferencesThreads.tsx:114
#~ msgid "Threaded Mode"
@@ -8745,7 +8750,7 @@ msgstr "Principais"
#: src/Navigation.tsx:383
msgid "Topic"
-msgstr ""
+msgstr "Tópico"
#: src/view/com/modals/EditImage.tsx:272
#~ msgid "Transformations"
@@ -8857,7 +8862,7 @@ msgstr "Desfazer repostagem"
#: src/view/com/util/post-ctrls/RepostButton.tsx:68
msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
-msgstr ""
+msgstr "Desfazer repostagem ({0, plural, one {# repostagem} other {# repostagens}})"
#: src/view/com/profile/FollowButton.tsx:60
msgctxt "action"
@@ -8883,7 +8888,7 @@ msgstr "Descurtir"
#: src/view/com/util/post-ctrls/PostCtrls.tsx:305
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
-msgstr ""
+msgstr "Descurtir ({0, plural, one {# curtida} other {# curtidas}})"
#: src/view/screens/ProfileFeed.tsx:576
#~ msgid "Unlike this feed"
@@ -8941,7 +8946,7 @@ msgstr "Desafixar"
#: src/screens/Profile/components/ProfileFeedHeader.tsx:519
#: src/screens/Profile/components/ProfileFeedHeader.tsx:526
msgid "Unpin feed"
-msgstr ""
+msgstr "Desafixar feed"
#: src/screens/Profile/components/ProfileFeedHeader.tsx:309
#: src/screens/Profile/components/ProfileFeedHeader.tsx:311
@@ -8959,7 +8964,7 @@ msgstr "Desafixar lista de moderação"
#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
msgid "Unpinned {0} from Home"
-msgstr ""
+msgstr "Desafixou {0} da Tela Inicial"
#: src/view/screens/ProfileList.tsx:352
msgid "Unpinned from your feeds"
@@ -9117,7 +9122,7 @@ msgstr "Usar recomendados"
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:190
msgid "Use this to sign into the other app along with your handle."
-msgstr "Use esta senha para entrar no outro aplicativo juntamente com seu identificador."
+msgstr "Use esta senha para entrar no outro aplicativo juntamente com seu nome de usuário."
#: src/view/com/modals/InviteCodes.tsx:201
msgid "Used by:"
@@ -9429,7 +9434,7 @@ msgstr "Não encontramos nenhuma postagem com esta hashtag."
#: src/screens/Topic.tsx:178
msgid "We couldn't find any results for that topic."
-msgstr ""
+msgstr "Nós não encontramos nenhum resultado para este tópico."
#: src/screens/Messages/Conversation.tsx:103
msgid "We couldn't load this conversation"
@@ -9547,7 +9552,7 @@ msgstr "Como você quer chamar seu pacote inicial?"
#: src/screens/Search/components/ExploreTrendingTopics.tsx:79
msgid "What people are posting about."
-msgstr ""
+msgstr "Sobre o que as pessoas estão postando."
#: src/view/com/auth/SplashScreen.tsx:38
#: src/view/com/auth/SplashScreen.web.tsx:99
@@ -9735,7 +9740,7 @@ msgstr "Você pode reativar sua conta para continuar fazendo login. Seu perfil e
#: src/screens/Search/components/ExploreTrendingTopics.tsx:136
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:109
msgid "You can update this later from your settings."
-msgstr ""
+msgstr "Você pode atualizar isso depois nas configurações."
#: src/view/com/profile/ProfileFollowers.tsx:94
msgid "You do not have any followers."
@@ -9919,7 +9924,7 @@ msgstr "Você vai receber notificações desta thread"
#: 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."
+msgstr "Você receberá um e-mail com um \"código de redefinição\". Digite este código aqui, e então digite sua nova senha."
#: src/screens/Messages/components/ChatListItem.tsx:124
msgid "You: {0}"
@@ -9981,7 +9986,7 @@ msgstr "Você escolheu esconder uma palavra ou tag desta postagem."
#: src/state/shell/progress-guide.tsx:234
msgid "You've found some people to follow"
-msgstr ""
+msgstr "Você encontrou algumas pessoas para seguir"
#: src/view/com/posts/FollowingEndOfFeed.tsx:44
msgid "You've reached the end of your feed! Find some more accounts to follow."
@@ -10029,7 +10034,7 @@ msgstr "Sua escolha será salva, mas você pode trocá-la nas configurações de
#: src/screens/Settings/components/ChangeHandleDialog.tsx:496
msgid "Your current handle <0>{0}0> will automatically remain reserved for you. You can switch back to it at any time from this account."
-msgstr ""
+msgstr "Seu nome de usuário atual <0>{0}0> vai automaticamente permanecer reservado para você. Você pode voltar para ele a qualquer momento a partir dessa conta."
#: src/screens/Onboarding/StepFollowingFeed.tsx:62
#~ msgid "Your default feed is \"Following\""
@@ -10060,7 +10065,7 @@ msgstr "Seu feed inicial está vazio! Siga mais usuários para acompanhar o que
#: src/screens/Settings/components/ChangeHandleDialog.tsx:223
msgid "Your full handle will be <0>@{0}0>"
-msgstr "Seu usuário completo será <0>@{0}0>"
+msgstr "Seu nome de usuário completo será <0>@{0}0>"
#: src/screens/Signup/StepHandle.tsx:125
msgid "Your full username will be"
diff --git a/src/locale/locales/sv/messages.po b/src/locale/locales/sv/messages.po
index b49d70be69..db3d629166 100644
--- a/src/locale/locales/sv/messages.po
+++ b/src/locale/locales/sv/messages.po
@@ -1,11 +1,11 @@
msgid ""
msgstr ""
-"Project-Id-Version: \n"
+"Project-Id-Version: Bluesky 1.97.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-11-05 16:01-0800\n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
-"Language-Team: \n"
+"Language-Team: @nilaallj.se\n"
"Language: sv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -19,7 +19,7 @@ msgstr ""
msgid "(active)"
msgstr "(aktiv)"
-#: src/screens/Messages/components/ChatListItem.tsx:130
+#: src/screens/Messages/components/ChatListItem.tsx:139
msgid "(contains embedded content)"
msgstr "(innehåller inbäddat innehåll)"
@@ -102,7 +102,7 @@ msgstr "{0, plural, one {citat} other {citat}}"
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {återpublicering} other {återpubliceringar}}"
-#: src/screens/Settings/Settings.tsx:422
+#: src/screens/Settings/Settings.tsx:424
msgid "{0}"
msgstr "{0}"
@@ -128,11 +128,11 @@ msgstr "{0} av {1}"
msgid "{0} people have used this starter pack!"
msgstr "{0} personer har använt det här startpaketet"
-#: src/view/shell/bottom-bar/BottomBar.tsx:208
+#: src/view/shell/bottom-bar/BottomBar.tsx:207
msgid "{0} unread items"
msgstr "{0} olästa poster"
-#: src/view/com/util/UserAvatar.tsx:435
+#: src/view/com/util/UserAvatar.tsx:436
msgid "{0}'s avatar"
msgstr "{0}s avatar"
@@ -169,7 +169,7 @@ msgstr "{0}må"
msgid "{0}s"
msgstr "{0}s"
-#: src/view/shell/desktop/LeftNav.tsx:189
+#: src/view/shell/desktop/LeftNav.tsx:384
msgid "{count} unread items"
msgstr "{count} olästa poster"
@@ -178,11 +178,11 @@ msgstr "{count} olästa poster"
msgid "{displayName}'s Starter Pack"
msgstr "{displayName}s startpaket"
-#: src/screens/SignupQueued.tsx:219
+#: src/screens/SignupQueued.tsx:216
msgid "{estimatedTimeHrs, plural, one {hour} other {hours}}"
msgstr "{estimatedTimeHrs, plural, one {timme} other {timmar}}"
-#: src/screens/SignupQueued.tsx:225
+#: src/screens/SignupQueued.tsx:222
msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}"
msgstr "{estimatedTimeMins, plural, one {minut} other {minuter}}"
@@ -283,15 +283,15 @@ msgstr "{following} följda"
msgid "{handle} can't be messaged"
msgstr "Det går inte att skicka meddelanden till {handle}"
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:260
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:262
msgid "{notificationCount} unread items"
msgstr "{notificationCount} olästa poster"
-#: src/view/shell/Drawer.tsx:448
+#: src/view/shell/Drawer.tsx:453
msgid "{numUnreadNotifications} unread"
msgstr "{numUnreadNotifications} oläst"
-#: src/view/shell/bottom-bar/BottomBar.tsx:235
+#: src/view/shell/bottom-bar/BottomBar.tsx:234
msgid "{numUnreadNotifications} unread items"
msgstr "{numUnreadNotifications} olästa poster"
@@ -353,7 +353,7 @@ msgstr "⚠ Ogiltigt användarnamn"
msgid "24 hours"
msgstr "24 timmar"
-#: src/screens/Login/LoginForm.tsx:252
+#: src/screens/Login/LoginForm.tsx:260
msgid "2FA Confirmation"
msgstr "2FA-bekräftelse"
@@ -365,14 +365,14 @@ msgstr "30 dagar"
msgid "7 days"
msgstr "7 dagar"
-#: src/Navigation.tsx:363
+#: src/Navigation.tsx:364
#: src/screens/Settings/AboutSettings.tsx:28
#: src/screens/Settings/Settings.tsx:215
#: src/screens/Settings/Settings.tsx:218
msgid "About"
msgstr "Om"
-#: src/view/screens/Search/Search.tsx:866
+#: src/view/screens/Search/Search.tsx:858
msgid "Access navigation links and settings"
msgstr "Öppna navigeringslänkar och inställningar"
@@ -382,12 +382,12 @@ msgstr "Öppna navigeringslänkar och inställningar"
msgid "Accessibility"
msgstr "Tillgänglighet"
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:324
msgid "Accessibility Settings"
msgstr "Tillgänglighetsinställningar"
-#: src/Navigation.tsx:339
-#: src/screens/Login/LoginForm.tsx:178
+#: src/Navigation.tsx:340
+#: src/screens/Login/LoginForm.tsx:186
#: src/screens/Settings/AccountSettings.tsx:45
#: src/screens/Settings/Settings.tsx:153
#: src/screens/Settings/Settings.tsx:156
@@ -416,11 +416,11 @@ msgstr "Konto ignorerat"
msgid "Account Muted by List"
msgstr "Konto ignorerat av lista"
-#: src/screens/Settings/Settings.tsx:428
+#: src/screens/Settings/Settings.tsx:430
msgid "Account options"
msgstr "Kontoalternativ"
-#: src/screens/Settings/Settings.tsx:464
+#: src/screens/Settings/Settings.tsx:466
msgid "Account removed from quick access"
msgstr "Konto borttaget från snabbåtkomst"
@@ -480,12 +480,14 @@ msgstr "Lägg till alternativtext"
msgid "Add alt text (optional)"
msgstr "Lägg till alternativtext (valfritt)"
-#: src/screens/Settings/Settings.tsx:372
-#: src/screens/Settings/Settings.tsx:375
+#: src/screens/Settings/Settings.tsx:373
+#: src/screens/Settings/Settings.tsx:376
+#: src/view/shell/desktop/LeftNav.tsx:281
+#: src/view/shell/desktop/LeftNav.tsx:285
msgid "Add another account"
msgstr "Lägg till ett annat konto"
-#: src/view/com/composer/Composer.tsx:728
+#: src/view/com/composer/Composer.tsx:735
msgid "Add another post"
msgstr "Lägg till ett ytterligare inlägg"
@@ -507,7 +509,7 @@ msgstr "Lägg till ignorerat ord för konfigurerade inställningar"
msgid "Add muted words and tags"
msgstr "Lägg till ord och taggar att ignorera"
-#: src/view/com/composer/Composer.tsx:1242
+#: src/view/com/composer/Composer.tsx:1249
msgid "Add new post"
msgstr "Lägg till ett ytterligare inlägg"
@@ -528,7 +530,7 @@ msgstr "Lägg till några flöden i ditt startpaket!"
msgid "Add the default feed of only people you follow"
msgstr "Lägg till standardflödet med bara personer du följer"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:389
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:387
msgid "Add the following DNS record to your domain:"
msgstr "Lägg till följande DNS-post i din domän:"
@@ -552,7 +554,7 @@ msgstr "Tillagd i listan"
#: src/view/com/feeds/FeedSourceCard.tsx:125
msgid "Added to my feeds"
-msgstr "Tillagd i mina flöden"
+msgstr "Tillagt i mina flöden"
#: src/view/com/composer/labels/LabelsBtn.tsx:160
msgid "Adult"
@@ -584,7 +586,7 @@ msgstr "Avancerat"
#: src/view/screens/Notifications.tsx:86
msgid "All"
-msgstr "Allt"
+msgstr "Alla"
#: src/screens/StarterPack/StarterPackScreen.tsx:381
msgid "All accounts have been followed!"
@@ -678,15 +680,15 @@ msgstr "Ett fel uppstod"
msgid "An error occurred while compressing the video."
msgstr "Ett fel uppstod under komprimeringen av videoklippet."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:333
+#: src/components/StarterPack/ProfileStarterPacks.tsx:332
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "Ett fel uppstod när ditt startpaket skulle genereras. Vill du försöka igen?"
-#: src/view/com/util/post-embeds/VideoEmbed.tsx:133
+#: src/view/com/util/post-embeds/VideoEmbed.tsx:160
msgid "An error occurred while loading the video. Please try again later."
msgstr "Ett fel uppstod under inläsningen av videoklippet. Försök igen senare."
-#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:176
+#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:198
msgid "An error occurred while loading the video. Please try again."
msgstr "Ett fel uppstod under inläsningen av videoklippet. Försök igen."
@@ -755,8 +757,8 @@ msgstr "Animerade gif-bilder"
msgid "Anti-Social Behavior"
msgstr "Antisocialt beteende"
-#: src/view/screens/Search/Search.tsx:337
-#: src/view/screens/Search/Search.tsx:338
+#: src/view/screens/Search/Search.tsx:333
+#: src/view/screens/Search/Search.tsx:334
msgid "Any language"
msgstr "Alla språk"
@@ -764,7 +766,7 @@ msgstr "Alla språk"
msgid "Anybody can interact"
msgstr "Vem som helst kan interagera"
-#: src/Navigation.tsx:371
+#: src/Navigation.tsx:372
#: src/screens/Settings/AppIconSettings/index.tsx:67
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23
@@ -800,7 +802,7 @@ msgstr "Namn på applösenord måste vara minst 4 tecken långa"
msgid "App passwords"
msgstr "Applösenord"
-#: src/Navigation.tsx:291
+#: src/Navigation.tsx:292
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "Applösenord"
@@ -812,13 +814,22 @@ msgstr "Begär omprövning"
#: src/components/moderation/LabelsOnMeDialog.tsx:243
msgid "Appeal \"{0}\" label"
-msgstr "Begär omprövning för etiketten ”{0}”"
+msgstr "Begär omprövning av etiketten ”{0}”"
#: src/components/moderation/LabelsOnMeDialog.tsx:233
#: src/screens/Messages/components/ChatDisabled.tsx:91
msgid "Appeal submitted"
msgstr "Omprövningsbegäran skickad"
+#: src/screens/Takendown.tsx:111
+#: src/screens/Takendown.tsx:144
+msgid "Appeal suspension"
+msgstr "Begär omprövning av avstängning"
+
+#: src/screens/Takendown.tsx:114
+msgid "Appeal Suspension"
+msgstr "Begär omprövning av avstängning"
+
#: src/screens/Messages/components/ChatDisabled.tsx:51
#: src/screens/Messages/components/ChatDisabled.tsx:53
#: src/screens/Messages/components/ChatDisabled.tsx:99
@@ -826,7 +837,7 @@ msgstr "Omprövningsbegäran skickad"
msgid "Appeal this decision"
msgstr "Begär omprövning av beslutet"
-#: src/Navigation.tsx:331
+#: src/Navigation.tsx:332
#: src/screens/Settings/AppearanceSettings.tsx:85
#: src/screens/Settings/Settings.tsx:183
#: src/screens/Settings/Settings.tsx:186
@@ -851,7 +862,7 @@ msgstr "Arkiverat inlägg"
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "Är du säker på att du vill ta bort applösenordet ”{0}”?"
-#: src/components/dms/MessageMenu.tsx:149
+#: src/components/dms/MessageMenu.tsx:150
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant."
msgstr "Är du säker på att du vill ta bort det här meddelandet? Meddelandet kommer att tas bort för dig, men inte för den andra deltagaren."
@@ -863,7 +874,7 @@ msgstr "Är du säker på att du vill ta bort det här startpaketet?"
msgid "Are you sure you want to discard your changes?"
msgstr "Är du säker på att du vill slänga dina ändringar?"
-#: src/components/dms/LeaveConvoPrompt.tsx:47
+#: src/components/dms/LeaveConvoPrompt.tsx:42
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr "Är du säker på att du vill lämna den här konversationen? Dina meddelanden kommer att tas bort för dig, men inte för den andra deltagaren."
@@ -875,11 +886,11 @@ msgstr "Är du säker på att du vill ta bort {0} från dina flöden?"
msgid "Are you sure you want to remove this from your feeds?"
msgstr "Är du säker på att du vill ta bort det här från dina flöden?"
-#: src/view/com/composer/Composer.tsx:679
+#: src/view/com/composer/Composer.tsx:686
msgid "Are you sure you'd like to discard this draft?"
msgstr "Är du säker på att du vill slänga det här utkastet?"
-#: src/view/com/composer/Composer.tsx:853
+#: src/view/com/composer/Composer.tsx:860
msgid "Are you sure you'd like to discard this post?"
msgstr "Är du säker på att du vill slänga det här inlägget?"
@@ -903,7 +914,7 @@ msgstr "Konst"
msgid "Artistic or non-erotic nudity."
msgstr "Konstnärlig eller icke-erotisk nakenhet."
-#: src/screens/Signup/StepHandle.tsx:173
+#: src/screens/Signup/StepHandle.tsx:180
msgid "At least 3 characters"
msgstr "Minst 3 tecken"
@@ -911,8 +922,8 @@ msgstr "Minst 3 tecken"
msgid "Autoplay options have moved to the <0>Content and Media settings0>."
msgstr "Inställningar för automatisk uppspelning har flyttat till <0>Innehåll och media0>."
-#: src/screens/Settings/ContentAndMediaSettings.tsx:106
-#: src/screens/Settings/ContentAndMediaSettings.tsx:112
+#: src/screens/Settings/ContentAndMediaSettings.tsx:107
+#: src/screens/Settings/ContentAndMediaSettings.tsx:113
msgid "Autoplay videos and GIFs"
msgstr "Spela upp videoklipp och gif-bilder automatiskt"
@@ -923,10 +934,10 @@ msgstr "Spela upp videoklipp och gif-bilder automatiskt"
#: src/screens/Login/ChooseAccountForm.tsx:95
#: src/screens/Login/ForgotPasswordForm.tsx:123
#: src/screens/Login/ForgotPasswordForm.tsx:129
-#: src/screens/Login/LoginForm.tsx:292
-#: src/screens/Login/LoginForm.tsx:298
-#: src/screens/Login/SetNewPasswordForm.tsx:154
+#: src/screens/Login/LoginForm.tsx:300
+#: src/screens/Login/LoginForm.tsx:306
#: src/screens/Login/SetNewPasswordForm.tsx:160
+#: src/screens/Login/SetNewPasswordForm.tsx:166
#: src/screens/Messages/components/ChatDisabled.tsx:133
#: src/screens/Messages/components/ChatDisabled.tsx:134
#: src/screens/Profile/Header/Shell.tsx:115
@@ -940,11 +951,11 @@ msgstr "Tillbaka"
msgid "Before creating a list, you must first verify your email."
msgstr "Du måste verifiera din e‑postadress innan du kan skapa en lista."
-#: src/view/com/composer/Composer.tsx:606
+#: src/view/com/composer/Composer.tsx:613
msgid "Before creating a post, you must first verify your email."
msgstr "Du måste verifiera din e‑postadress innan du kan skriva ett inlägg."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:340
+#: src/components/StarterPack/ProfileStarterPacks.tsx:339
msgid "Before creating a starter pack, you must first verify your email."
msgstr "Du måste verifiera din e‑postadress innan du kan skapa ett startpaket."
@@ -955,6 +966,7 @@ msgid "Before you may message another user, you must first verify your email."
msgstr "Du måste verifiera din e‑postadress innan du kan skicka ett meddelande till en annan användare."
#: src/screens/Search/components/ExploreTrendingTopics.tsx:74
+#: src/screens/Search/components/ExploreTrendingVideos.tsx:111
msgid "BETA"
msgstr "BETA"
@@ -969,8 +981,8 @@ msgstr "Födelsedag"
msgid "Block"
msgstr "Blockera"
-#: src/components/dms/ConvoMenu.tsx:188
-#: src/components/dms/ConvoMenu.tsx:192
+#: src/components/dms/ConvoMenu.tsx:191
+#: src/components/dms/ConvoMenu.tsx:195
#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:603
#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:605
msgid "Block account"
@@ -990,6 +1002,14 @@ msgstr "Blockera konto?"
msgid "Block accounts"
msgstr "Blockera konton"
+#: src/components/dms/ReportDialog.tsx:325
+msgid "Block and Delete"
+msgstr "Blockera och ta bort"
+
+#: src/components/dms/ReportDialog.tsx:343
+msgid "Block and/or delete this conversation"
+msgstr "Blockera och/eller ta bort den här konversationen"
+
#: src/view/screens/ProfileList.tsx:760
msgid "Block list"
msgstr "Blockeringslista"
@@ -998,6 +1018,15 @@ msgstr "Blockeringslista"
msgid "Block these accounts?"
msgstr "Blockera dessa konton?"
+#: src/components/dms/ReportDialog.tsx:347
+#: src/components/dms/ReportDialog.tsx:350
+msgid "Block user"
+msgstr "Blockera användare"
+
+#: src/components/dms/ReportDialog.tsx:329
+msgid "Block User"
+msgstr "Blockera användare"
+
#: src/view/com/util/post-embeds/QuoteEmbed.tsx:83
msgid "Blocked"
msgstr "Blockerat"
@@ -1006,7 +1035,7 @@ msgstr "Blockerat"
msgid "Blocked accounts"
msgstr "Blockerade konton"
-#: src/Navigation.tsx:155
+#: src/Navigation.tsx:156
#: src/view/screens/ModerationBlockedAccounts.tsx:101
msgid "Blocked Accounts"
msgstr "Blockerade konton"
@@ -1018,7 +1047,7 @@ msgstr "Blockerade konton kan inte svara i dina trådar, nämna dig eller på an
#: src/view/screens/ModerationBlockedAccounts.tsx:112
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 "Blockerade konton kan inte svara i dina trådar, nämna dig eller på annat sätt interagera med dig. Du kan inte se deras innehåll, och de hindras från att se ditt."
+msgstr "Blockerade konton kan inte svara i dina trådar, nämna dig eller på annat sätt interagera med dig. Du kan inte se deras innehåll, och de kan inte se ditt."
#: src/view/com/post-thread/PostThread.tsx:464
msgid "Blocked post."
@@ -1040,25 +1069,33 @@ msgstr "Blockering hindrar inte att etiketter sätts på ditt konto, men det hin
msgid "Blog"
msgstr "Blogg"
-#: src/view/com/auth/server-input/index.tsx:86
-#: src/view/com/auth/server-input/index.tsx:88
+#: src/view/com/auth/server-input/index.tsx:92
+#: src/view/com/auth/server-input/index.tsx:94
msgid "Bluesky"
msgstr "Bluesky"
#: src/view/com/post-thread/PostThreadItem.tsx:859
msgid "Bluesky cannot confirm the authenticity of the claimed date."
-msgstr "Bluesky kan inte bekräfta äktheten av det påstådda datumet."
+msgstr "Bluesky kan inte bekräfta äktheten av det angivna datumet."
-#: src/view/com/auth/server-input/index.tsx:151
+#: src/view/com/auth/server-input/index.tsx:172
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 är ett öppet nätverk där du kan välja din värdleverantör. Om du är en utvecklare kan du vara värd för din egen server."
+#: src/view/com/auth/server-input/index.tsx:109
+msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option."
+msgstr "Bluesky är ett öppet nätverk där du kan välja din leverantör. Om du är ny här rekommenderar vi att du håller dig till standardalternativet Bluesky Social."
+
#: src/components/ProgressGuide/List.tsx:53
#: src/components/ProgressGuide/List.tsx:70
msgid "Bluesky is better with friends!"
msgstr "Bluesky är bättre med vänner!"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:300
+#: src/screens/Takendown.tsx:217
+msgid "Bluesky Social Terms of Service"
+msgstr "Användarvillkor för Bluesky Social"
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:299
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bluesky väljer en uppsättning rekommenderade konton från personer i ditt nätverk."
@@ -1087,23 +1124,23 @@ msgstr "Gör bilder suddiga och filtrera bort från flöden"
msgid "Books"
msgstr "Böcker"
-#: src/components/FeedInterstitials.tsx:348
+#: src/components/FeedInterstitials.tsx:349
msgid "Browse more accounts on the Explore page"
msgstr "Bläddra bland fler konton på sidan Utforska"
-#: src/components/FeedInterstitials.tsx:481
+#: src/components/FeedInterstitials.tsx:486
msgid "Browse more feeds on the Explore page"
msgstr "Bläddra bland fler flöden på sidan Utforska"
#: src/components/FeedInterstitials.tsx:330
#: src/components/FeedInterstitials.tsx:333
-#: src/components/FeedInterstitials.tsx:463
-#: src/components/FeedInterstitials.tsx:466
+#: src/components/FeedInterstitials.tsx:467
+#: src/components/FeedInterstitials.tsx:470
msgid "Browse more suggestions"
msgstr "Bläddra bland fler förslag"
-#: src/components/FeedInterstitials.tsx:356
-#: src/components/FeedInterstitials.tsx:490
+#: src/components/FeedInterstitials.tsx:357
+#: src/components/FeedInterstitials.tsx:495
msgid "Browse more suggestions on the Explore page"
msgstr "Bläddra bland fler förslag på sidan Utforska"
@@ -1152,10 +1189,9 @@ msgstr "Genom att skapa ett konto godkänner du våra <0>användarvillkor0>."
msgid "Camera"
msgstr "Kamera"
-#: src/components/Menu/index.tsx:297
+#: src/components/Menu/index.tsx:304
#: src/components/Prompt.tsx:129
#: src/components/Prompt.tsx:131
-#: src/components/TagMenu/index.tsx:283
#: src/screens/Deactivated.tsx:157
#: src/screens/Profile/Header/EditProfileDialog.tsx:220
#: src/screens/Profile/Header/EditProfileDialog.tsx:228
@@ -1164,7 +1200,9 @@ msgstr "Kamera"
#: src/screens/Settings/components/ChangeHandleDialog.tsx:76
#: src/screens/Settings/components/ChangeHandleDialog.tsx:83
#: src/screens/Settings/Settings.tsx:260
-#: src/view/com/composer/Composer.tsx:916
+#: src/screens/Takendown.tsx:99
+#: src/screens/Takendown.tsx:102
+#: src/view/com/composer/Composer.tsx:923
#: src/view/com/modals/ChangeEmail.tsx:213
#: src/view/com/modals/ChangeEmail.tsx:215
#: src/view/com/modals/ChangePassword.tsx:268
@@ -1179,7 +1217,8 @@ msgstr "Kamera"
#: src/view/com/modals/VerifyEmail.tsx:255
#: src/view/com/modals/VerifyEmail.tsx:261
#: src/view/com/util/post-ctrls/RepostButton.tsx:213
-#: src/view/screens/Search/Search.tsx:895
+#: src/view/screens/Search/Search.tsx:887
+#: src/view/shell/desktop/LeftNav.tsx:209
msgid "Cancel"
msgstr "Avbryt"
@@ -1212,7 +1251,7 @@ msgid "Cancel reactivation and log out"
msgstr "Avbryt återaktivering och logga ut"
#: src/view/com/modals/ListAddRemoveUsers.tsx:88
-#: src/view/screens/Search/Search.tsx:887
+#: src/view/screens/Search/Search.tsx:879
msgid "Cancel search"
msgstr "Avbryt sökning"
@@ -1287,21 +1326,21 @@ msgstr "Ändra din e‑postadress"
msgid "Change your email address"
msgstr "Ändra din e‑postadress"
-#: src/Navigation.tsx:388
-#: src/view/shell/bottom-bar/BottomBar.tsx:205
-#: src/view/shell/desktop/LeftNav.tsx:335
-#: src/view/shell/Drawer.tsx:417
+#: src/Navigation.tsx:389
+#: src/view/shell/bottom-bar/BottomBar.tsx:204
+#: src/view/shell/desktop/LeftNav.tsx:530
+#: src/view/shell/Drawer.tsx:422
msgid "Chat"
msgstr "Chatt"
-#: src/components/dms/ConvoMenu.tsx:82
+#: src/components/dms/ConvoMenu.tsx:85
msgid "Chat muted"
msgstr "Chatt ignorerad"
-#: src/components/dms/ConvoMenu.tsx:112
+#: src/components/dms/ConvoMenu.tsx:115
#: src/components/dms/MessageMenu.tsx:81
-#: src/Navigation.tsx:393
-#: src/screens/Messages/ChatList.tsx:246
+#: src/Navigation.tsx:394
+#: src/screens/Messages/ChatList.tsx:254
msgid "Chat settings"
msgstr "Chattinställningar"
@@ -1309,7 +1348,7 @@ msgstr "Chattinställningar"
msgid "Chat Settings"
msgstr "Chattinställningar"
-#: src/components/dms/ConvoMenu.tsx:84
+#: src/components/dms/ConvoMenu.tsx:87
msgid "Chat unmuted"
msgstr "Chatt inte lägre ignorerad"
@@ -1318,7 +1357,7 @@ msgstr "Chatt inte lägre ignorerad"
msgid "Check my status"
msgstr "Kontrollera min status"
-#: src/screens/Login/LoginForm.tsx:285
+#: src/screens/Login/LoginForm.tsx:293
msgid "Check your email for a login code and enter it here."
msgstr "Titta i din e‑post efter en inloggningskod och ange den här."
@@ -1326,7 +1365,7 @@ msgstr "Titta i din e‑post efter en inloggningskod och ange den här."
msgid "Check your inbox for an email with the confirmation code to enter below:"
msgstr "Titta i din inkorg efter ett e‑postmeddelande med den bekräftelsekod som ska anges nedan:"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:372
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:370
msgid "Choose domain verification method"
msgstr "Välj metod för att verifiera din domän"
@@ -1334,7 +1373,7 @@ msgstr "Välj metod för att verifiera din domän"
msgid "Choose Feeds"
msgstr "Välj flöden"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:308
+#: src/components/StarterPack/ProfileStarterPacks.tsx:307
msgid "Choose for me"
msgstr "Välj åt mig"
@@ -1346,11 +1385,10 @@ msgstr "Välj personer"
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älj självsatta etiketter som är relevanta för den media du publicerar. Om ingen väljs antas inlägget som lämpligt för alla läsare."
-#: src/view/com/auth/server-input/index.tsx:76
-msgid "Choose Service"
-msgstr "Välj tjänst"
+#~ msgid "Choose Service"
+#~ msgstr "Välj tjänst"
-#: src/screens/Onboarding/StepFinished.tsx:280
+#: src/screens/Onboarding/StepFinished.tsx:287
msgid "Choose the algorithms that power your custom feeds."
msgstr "Välj de algoritmer du vill ska styra dina anpassade flöden."
@@ -1358,12 +1396,16 @@ msgstr "Välj de algoritmer du vill ska styra dina anpassade flöden."
msgid "Choose this color as your avatar"
msgstr "Välj den här färgen som din avatar"
+#: src/view/com/auth/server-input/index.tsx:86
+msgid "Choose your account provider"
+msgstr "Välj din kontoleverantör"
+
#: src/view/screens/Feeds.tsx:728
-#: src/view/screens/Search/Explore.tsx:411
+#: src/view/screens/Search/Explore.tsx:424
msgid "Choose your own timeline! Feeds built by the community help you find content you love."
msgstr "Välj din egen tidslinje! Flöden som har skapats av andra i gemenskapen hjälper dig att hitta innehåll du gillar."
-#: src/screens/Signup/StepInfo/index.tsx:201
+#: src/screens/Signup/StepInfo/index.tsx:195
msgid "Choose your password"
msgstr "Välj ditt lösenord"
@@ -1371,11 +1413,11 @@ msgstr "Välj ditt lösenord"
msgid "Choose your username"
msgstr "Välj ditt användarnamn"
-#: src/screens/Settings/Settings.tsx:350
+#: src/screens/Settings/Settings.tsx:351
msgid "Clear all storage data"
msgstr "Rensa all lagrad data"
-#: src/screens/Settings/Settings.tsx:352
+#: src/screens/Settings/Settings.tsx:353
msgid "Clear all storage data (restart after this)"
msgstr "Rensa all lagrad data (starta om efter detta)"
@@ -1387,9 +1429,8 @@ msgstr "Rensa sökfrågan"
msgid "click here"
msgstr "klicka här"
-#: src/components/TagMenu/index.web.tsx:152
-msgid "Click here to open tag menu for {tag}"
-msgstr "Klicka här för att öppna taggmenyn för {tag}"
+#~ msgid "Click here to open tag menu for {tag}"
+#~ msgstr "Klicka här för att öppna taggmenyn för {tag}"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:307
msgid "Click to disable quote posts of this post."
@@ -1399,6 +1440,10 @@ msgstr "Klicka för att inaktivera citeringar av detta inlägg."
msgid "Click to enable quote posts of this post."
msgstr "Klicka för att tillåta citeringar av detta inlägg."
+#: src/components/RichTextTag.tsx:54
+msgid "Click to open tag menu for {tag}"
+msgstr "Klicka för att öppna taggmenyn för {tag}"
+
#: src/components/dms/MessageItem.tsx:241
msgid "Click to retry failed message"
msgstr "Klicka för att försöka på nytt med misslyckat meddelande"
@@ -1414,6 +1459,8 @@ msgstr "Galopp 🐴 galopp 🐴"
#: src/components/dialogs/GifSelect.tsx:281
#: src/components/dialogs/VerifyEmailDialog.tsx:289
#: src/components/dms/dialogs/SearchablePeopleList.tsx:265
+#: src/components/dms/ReportDialog.tsx:372
+#: src/components/dms/ReportDialog.tsx:381
#: src/components/NewskieDialog.tsx:146
#: src/components/NewskieDialog.tsx:153
#: src/components/ProgressGuide/FollowDialog.tsx:429
@@ -1463,8 +1510,7 @@ msgstr "Stäng bildvisare"
msgid "Close navigation footer"
msgstr "Stäng sidfot med navigering"
-#: src/components/Menu/index.tsx:291
-#: src/components/TagMenu/index.tsx:277
+#: src/components/Menu/index.tsx:298
msgid "Close this dialog"
msgstr "Stäng den här dialogrutan"
@@ -1502,24 +1548,24 @@ msgstr "Komedi"
msgid "Comics"
msgstr "Serierutor"
-#: src/Navigation.tsx:281
+#: src/Navigation.tsx:282
#: src/view/screens/CommunityGuidelines.tsx:34
msgid "Community Guidelines"
msgstr "Gemenskapens riktlinjer"
-#: src/screens/Onboarding/StepFinished.tsx:293
+#: src/screens/Onboarding/StepFinished.tsx:300
msgid "Complete onboarding and start using your account"
-msgstr "Slutför introduktion och börja använda ditt konto"
+msgstr "Slutför introduktionen och börja använda ditt konto"
#: src/screens/Signup/index.tsx:144
msgid "Complete the challenge"
msgstr "Slutför kontrollen"
-#: src/view/shell/desktop/LeftNav.tsx:301
+#: src/view/shell/desktop/LeftNav.tsx:496
msgid "Compose new post"
msgstr "Skriv ett nytt inlägg"
-#: src/view/com/composer/Composer.tsx:819
+#: src/view/com/composer/Composer.tsx:826
msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length"
msgstr "Skriv inlägg som är upp till {MAX_GRAPHEME_LENGTH} tecken långa"
@@ -1527,7 +1573,7 @@ msgstr "Skriv inlägg som är upp till {MAX_GRAPHEME_LENGTH} tecken långa"
msgid "Compose reply"
msgstr "Skriv svar"
-#: src/view/com/composer/Composer.tsx:1635
+#: src/view/com/composer/Composer.tsx:1643
msgid "Compressing video..."
msgstr "Komprimerar videoklipp…"
@@ -1573,7 +1619,7 @@ msgid "Confirm your birthdate"
msgstr "Bekräfta ditt födelsedatum"
#: src/components/dialogs/VerifyEmailDialog.tsx:214
-#: src/screens/Login/LoginForm.tsx:258
+#: src/screens/Login/LoginForm.tsx:266
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:144
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:150
#: src/view/com/modals/ChangeEmail.tsx:152
@@ -1587,7 +1633,7 @@ msgstr "Bekräftelsekod"
msgid "Confirmation Code"
msgstr "Bekräftelsekod"
-#: src/screens/Login/LoginForm.tsx:319
+#: src/screens/Login/LoginForm.tsx:327
msgid "Connecting..."
msgstr "Ansluter…"
@@ -1596,7 +1642,7 @@ msgstr "Ansluter…"
msgid "Contact support"
msgstr "Kontakta supporten"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:49
+#: src/screens/Settings/ContentAndMediaSettings.tsx:50
msgid "Content & Media"
msgstr "Innehåll och media"
@@ -1606,7 +1652,7 @@ msgstr "Innehåll och media"
msgid "Content and media"
msgstr "Innehåll och media"
-#: src/Navigation.tsx:355
+#: src/Navigation.tsx:356
msgid "Content and Media"
msgstr "Innehåll och media"
@@ -1652,9 +1698,9 @@ msgstr "Fortsätt"
msgid "Continue as {0} (currently signed in)"
msgstr "Fortsätt som {0} (nuvarande inloggad)"
-#: src/view/com/post-thread/PostThreadLoadMore.tsx:52
+#: src/view/com/post-thread/PostThreadLoadMore.tsx:60
msgid "Continue thread..."
-msgstr "Fortsätt på tråd…"
+msgstr "Utöka tråd…"
#: src/screens/Onboarding/StepInterests/index.tsx:241
#: src/screens/Onboarding/StepProfile/index.tsx:275
@@ -1662,7 +1708,7 @@ msgstr "Fortsätt på tråd…"
msgid "Continue to next step"
msgstr "Fortsätt till nästa steg"
-#: src/screens/Messages/components/ChatListItem.tsx:164
+#: src/screens/Messages/components/ChatListItem.tsx:173
msgid "Conversation deleted"
msgstr "Konversation borttagen"
@@ -1708,11 +1754,11 @@ msgstr "Kopiera byggversion till urklipp"
msgid "Copy code"
msgstr "Kopiera kod"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:474
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:472
msgid "Copy DID"
-msgstr "Kopia DID"
+msgstr "Kopiera DID"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:407
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:405
msgid "Copy host"
msgstr "Kopiera värd"
@@ -1747,20 +1793,21 @@ msgstr "Kopiera inläggstext"
msgid "Copy QR code"
msgstr "Kopiera QR-kod"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:428
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:426
msgid "Copy TXT record value"
msgstr "Kopiera värde för TXT-post"
-#: src/Navigation.tsx:286
+#: src/Navigation.tsx:287
#: src/view/screens/CopyrightPolicy.tsx:31
msgid "Copyright Policy"
msgstr "Upphovsrättspolicy"
-#: src/components/dms/LeaveConvoPrompt.tsx:38
+#: src/components/dms/LeaveConvoPrompt.tsx:33
+#: src/components/dms/ReportDialog.tsx:308
msgid "Could not leave chat"
msgstr "Det gick inte att lämna chatten"
-#: src/screens/Profile/ProfileFeed/index.tsx:73
+#: src/screens/Profile/ProfileFeed/index.tsx:80
msgid "Could not load feed"
msgstr "Det gick inte att läsa in flödet"
@@ -1768,7 +1815,7 @@ msgstr "Det gick inte att läsa in flödet"
msgid "Could not load list"
msgstr "Det gick inte att läsa in listan"
-#: src/components/dms/ConvoMenu.tsx:88
+#: src/components/dms/ConvoMenu.tsx:91
msgid "Could not mute chat"
msgstr "Det gick inte att ignorera chatten"
@@ -1776,7 +1823,7 @@ msgstr "Det gick inte att ignorera chatten"
msgid "Could not process your video"
msgstr "Kunde inte bearbeta ditt videoklipp"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:290
+#: src/components/StarterPack/ProfileStarterPacks.tsx:289
msgid "Create"
msgstr "Skapa"
@@ -1784,18 +1831,24 @@ msgstr "Skapa"
msgid "Create a QR code for a starter pack"
msgstr "Skapa en QR-kod för ett startpaket"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:168
-#: src/components/StarterPack/ProfileStarterPacks.tsx:271
-#: src/Navigation.tsx:418
+#: src/components/StarterPack/ProfileStarterPacks.tsx:167
+#: src/components/StarterPack/ProfileStarterPacks.tsx:270
+#: src/Navigation.tsx:419
msgid "Create a starter pack"
msgstr "Skapa ett startpaket"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:252
+#: src/components/StarterPack/ProfileStarterPacks.tsx:251
msgid "Create a starter pack for me"
msgstr "Skapa ett startpaket åt mig"
#: src/view/com/auth/SplashScreen.tsx:55
#: src/view/com/auth/SplashScreen.web.tsx:117
+#: src/view/shell/bottom-bar/BottomBar.tsx:304
+#: src/view/shell/bottom-bar/BottomBar.tsx:309
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:202
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:207
+#: src/view/shell/NavSignupCard.tsx:47
+#: src/view/shell/NavSignupCard.tsx:52
msgid "Create account"
msgstr "Skapa konto"
@@ -1812,7 +1865,7 @@ msgstr "Skapa ett konto"
msgid "Create an avatar instead"
msgstr "Skapa en avatar istället"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:175
+#: src/components/StarterPack/ProfileStarterPacks.tsx:174
msgid "Create another"
msgstr "Skapa en annan"
@@ -1821,7 +1874,7 @@ msgstr "Skapa en annan"
msgid "Create new account"
msgstr "Skapa nytt konto"
-#: src/components/ReportDialog/SelectReportOptionView.tsx:101
+#: src/components/ReportDialog/SelectReportOptionView.tsx:99
msgid "Create report for {0}"
msgstr "Skapa rapport för {0}"
@@ -1838,10 +1891,10 @@ msgstr "Skaparen har blockerats"
msgid "Culture"
msgstr "Kultur"
-#: src/view/com/auth/server-input/index.tsx:94
-#: src/view/com/auth/server-input/index.tsx:96
+#: src/view/com/auth/server-input/index.tsx:100
+#: src/view/com/auth/server-input/index.tsx:102
msgid "Custom"
-msgstr "Anpassat"
+msgstr "Anpassad"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:292
msgid "Customize who can interact with this post."
@@ -1860,7 +1913,7 @@ msgstr "Mörkt läge"
msgid "Dark theme"
msgstr "Mörkt tema"
-#: src/screens/Signup/StepInfo/index.tsx:222
+#: src/screens/Signup/StepInfo/index.tsx:216
msgid "Date of birth"
msgstr "Födelsedatum"
@@ -1870,7 +1923,7 @@ msgstr "Födelsedatum"
msgid "Deactivate account"
msgstr "Inaktivera konto"
-#: src/screens/Settings/Settings.tsx:331
+#: src/screens/Settings/Settings.tsx:332
msgid "Debug Moderation"
msgstr "Felsök moderering"
@@ -1886,7 +1939,7 @@ msgstr "Förvald"
msgid "Default icons"
msgstr "Förvalda ikoner"
-#: src/components/dms/MessageMenu.tsx:151
+#: src/components/dms/MessageMenu.tsx:152
#: src/screens/Settings/AppPasswords.tsx:212
#: src/screens/StarterPack/StarterPackScreen.tsx:586
#: src/screens/StarterPack/StarterPackScreen.tsx:665
@@ -1913,10 +1966,19 @@ msgstr "Ta bort applösenord"
msgid "Delete app password?"
msgstr "Ta bort applösenord?"
-#: src/screens/Settings/Settings.tsx:338
+#: src/screens/Settings/Settings.tsx:339
msgid "Delete chat declaration record"
msgstr "Ta bort chattdeklarationsposten"
+#: src/components/dms/ReportDialog.tsx:353
+#: src/components/dms/ReportDialog.tsx:356
+msgid "Delete conversation"
+msgstr "Ta bort konversation"
+
+#: src/components/dms/ReportDialog.tsx:327
+msgid "Delete Conversation"
+msgstr "Ta bort konversation"
+
#: src/components/dms/MessageMenu.tsx:124
msgid "Delete for me"
msgstr "Ta bort för mig"
@@ -1925,7 +1987,7 @@ msgstr "Ta bort för mig"
msgid "Delete List"
msgstr "Ta bort lista"
-#: src/components/dms/MessageMenu.tsx:147
+#: src/components/dms/MessageMenu.tsx:148
msgid "Delete message"
msgstr "Ta bort meddelande"
@@ -1937,7 +1999,7 @@ msgstr "Ta bort meddelandet för mig"
msgid "Delete my account"
msgstr "Ta bort mitt konto"
-#: src/view/com/composer/Composer.tsx:827
+#: src/view/com/composer/Composer.tsx:834
#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:642
#: src/view/com/util/forms/PostDropdownBtnMenuItems.tsx:644
msgid "Delete post"
@@ -2039,8 +2101,8 @@ msgid "Disabled"
msgstr "Inaktiverat"
#: src/screens/Profile/Header/EditProfileDialog.tsx:84
-#: src/view/com/composer/Composer.tsx:681
-#: src/view/com/composer/Composer.tsx:860
+#: src/view/com/composer/Composer.tsx:688
+#: src/view/com/composer/Composer.tsx:867
msgid "Discard"
msgstr "Släng"
@@ -2048,11 +2110,11 @@ msgstr "Släng"
msgid "Discard changes?"
msgstr "Vill du slänga ändringarna?"
-#: src/view/com/composer/Composer.tsx:678
+#: src/view/com/composer/Composer.tsx:685
msgid "Discard draft?"
msgstr "Vill du slänga utkastet?"
-#: src/view/com/composer/Composer.tsx:852
+#: src/view/com/composer/Composer.tsx:859
msgid "Discard post?"
msgstr "Vill du slänga inlägget?"
@@ -2066,7 +2128,7 @@ msgstr "Be appar att inte visa mitt innehåll för utloggade användare"
msgid "Discover new custom feeds"
msgstr "Upptäck nya anpassade flöden"
-#: src/view/screens/Search/Explore.tsx:409
+#: src/view/screens/Search/Explore.tsx:422
msgid "Discover new feeds"
msgstr "Upptäck nya flöden"
@@ -2074,11 +2136,11 @@ msgstr "Upptäck nya flöden"
msgid "Discover New Feeds"
msgstr "Upptäck nya flöden"
-#: src/components/Dialog/index.tsx:311
+#: src/components/Dialog/index.tsx:313
msgid "Dismiss"
msgstr "Avfärda"
-#: src/view/com/composer/Composer.tsx:1559
+#: src/view/com/composer/Composer.tsx:1567
msgid "Dismiss error"
msgstr "Avvisa fel"
@@ -2086,6 +2148,10 @@ msgstr "Avvisa fel"
msgid "Dismiss getting started guide"
msgstr "Avfärda kom-igång-guide"
+#: src/components/interstitials/TrendingVideos.tsx:92
+msgid "Dismiss this section"
+msgstr "Avfärda den här sektionen"
+
#: src/screens/Settings/AccessibilitySettings.tsx:71
#: src/screens/Settings/AccessibilitySettings.tsx:76
msgid "Display larger alt text badges"
@@ -2110,8 +2176,8 @@ msgstr "Visningsnamnet är för långt"
msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}."
msgstr "Visningsnamnet är för långt. Det maximala antalet tecken är {DISPLAY_NAME_MAX_GRAPHEMES}."
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:373
#: src/screens/Settings/components/ChangeHandleDialog.tsx:375
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:377
msgid "DNS Panel"
msgstr "DNS-panel"
@@ -2123,24 +2189,25 @@ msgstr "Undanta användare som du följer från att ignoreras genom det här ord
msgid "Does not include nudity."
msgstr "Innehåller ingen nakenhet."
-#: src/screens/Signup/StepHandle.tsx:159
+#: src/screens/Signup/StepHandle.tsx:163
msgid "Doesn't begin or end with a hyphen"
msgstr "Börjar eller slutar inte med ett bindestreck"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:490
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:488
msgid "Domain verified!"
msgstr "Domän verifierad!"
#: src/components/dialogs/BirthDateSettings.tsx:118
#: src/components/dialogs/BirthDateSettings.tsx:124
+#: src/components/dms/ReportDialog.tsx:323
#: 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/screens/Settings/components/AddAppPasswordDialog.tsx:215
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:222
-#: src/view/com/auth/server-input/index.tsx:170
-#: src/view/com/auth/server-input/index.tsx:171
+#: src/view/com/auth/server-input/index.tsx:192
+#: src/view/com/auth/server-input/index.tsx:193
#: src/view/com/composer/labels/LabelsBtn.tsx:224
#: src/view/com/composer/labels/LabelsBtn.tsx:231
#: src/view/com/composer/videos/SubtitleDialog.tsx:169
@@ -2163,10 +2230,14 @@ msgstr "Klar"
msgid "Done{extraText}"
msgstr "Klar{extraText}"
-#: src/components/Dialog/index.tsx:312
+#: src/components/Dialog/index.tsx:314
msgid "Double tap to close the dialog"
msgstr "Dubbeltryck för att stänga dialogrutan"
+#: src/screens/VideoFeed/index.tsx:1037
+msgid "Double tap to like"
+msgstr "Dubbeltryck för att gilla"
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317
msgid "Download Bluesky"
msgstr "Ladda ner Bluesky"
@@ -2184,7 +2255,7 @@ msgstr "Släpp för att lägga till bilder"
msgid "Duration:"
msgstr "Varaktighet:"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:213
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:211
msgid "e.g. alice"
msgstr "t.ex. alice"
@@ -2196,7 +2267,7 @@ msgstr "t.ex. Alice Efternamn"
msgid "e.g. Alice Roberts"
msgstr "t.ex. Alice Roberts"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:359
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:357
msgid "e.g. alice.com"
msgstr "t.ex. alice.com"
@@ -2240,7 +2311,7 @@ msgctxt "action"
msgid "Edit"
msgstr "Ändra"
-#: src/view/com/util/UserAvatar.tsx:347
+#: src/view/com/util/UserAvatar.tsx:348
#: src/view/com/util/UserBanner.tsx:95
msgid "Edit avatar"
msgstr "Ändra avatar"
@@ -2268,7 +2339,7 @@ msgstr "Ändra listdetaljer"
msgid "Edit Moderation List"
msgstr "Ändra modereringslista"
-#: src/Navigation.tsx:296
+#: src/Navigation.tsx:297
#: src/view/screens/Feeds.tsx:515
msgid "Edit My Feeds"
msgstr "Ändra mina flöden"
@@ -2318,7 +2389,7 @@ msgstr "Ändra ditt visningsnamn"
msgid "Edit your profile description"
msgstr "Ändra din profilbeskrivning"
-#: src/Navigation.tsx:423
+#: src/Navigation.tsx:424
msgid "Edit your starter pack"
msgstr "Ändra ditt startpaket"
@@ -2332,7 +2403,7 @@ msgid "Either the creator of this list has blocked you or you have blocked the c
msgstr "Antingen har skaparen av den här listan blockerat dig, eller så har du blockerat skaparen."
#: src/screens/Settings/AccountSettings.tsx:60
-#: src/screens/Signup/StepInfo/index.tsx:170
+#: src/screens/Signup/StepInfo/index.tsx:164
#: src/view/com/modals/ChangeEmail.tsx:136
msgid "Email"
msgstr "E-post"
@@ -2427,18 +2498,26 @@ msgstr "Aktivera undertexter"
msgid "Enable this source only"
msgstr "Aktivera endast denna källa"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:122
-#: src/screens/Settings/ContentAndMediaSettings.tsx:136
+#: src/screens/Settings/ContentAndMediaSettings.tsx:123
+#: src/screens/Settings/ContentAndMediaSettings.tsx:137
msgid "Enable trending topics"
msgstr "Aktivera trendande ämnen"
+#: src/screens/Settings/ContentAndMediaSettings.tsx:158
+msgid "Enable trending videos in your Discover feed"
+msgstr "Visa trendande videoklipp i ditt Upptäck-flöde"
+
+#: src/screens/Settings/ContentAndMediaSettings.tsx:144
+msgid "Enable trending videos in your Discover feed."
+msgstr "Visa trendande videoklipp i ditt Upptäck-flöde."
+
#: src/screens/Messages/Settings.tsx:130
#: src/screens/Messages/Settings.tsx:133
#: src/screens/Moderation/index.tsx:327
msgid "Enabled"
msgstr "Aktiverat"
-#: src/screens/Profile/Sections/Feed.tsx:114
+#: src/screens/Profile/Sections/Feed.tsx:116
msgid "End of feed"
msgstr "Slut på flödet"
@@ -2446,7 +2525,7 @@ msgstr "Slut på flödet"
msgid "Ensure you have selected a language for each subtitle file."
msgstr "Se till att du har valt ett språk för varje undertextfil."
-#: src/screens/Login/SetNewPasswordForm.tsx:133
+#: src/screens/Login/SetNewPasswordForm.tsx:139
msgid "Enter a password"
msgstr "Ange ett lösenord"
@@ -2471,7 +2550,7 @@ msgstr "Öppna helskärm"
msgid "Enter the code you received to change your password."
msgstr "Ange den kod du fick för att ändra ditt lösenord."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:353
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:351
msgid "Enter the domain you want to use"
msgstr "Ange den domän du vill använda"
@@ -2484,7 +2563,7 @@ msgid "Enter your birth date"
msgstr "Ange ditt födelsedatum"
#: src/screens/Login/ForgotPasswordForm.tsx:99
-#: src/screens/Signup/StepInfo/index.tsx:182
+#: src/screens/Signup/StepInfo/index.tsx:176
msgid "Enter your email address"
msgstr "Ange din e-postadress"
@@ -2500,7 +2579,7 @@ msgstr "Ange din nya e-postadress nedan."
msgid "Enter your username and password"
msgstr "Ange ditt användarnamn och lösenord"
-#: src/view/com/composer/Composer.tsx:1644
+#: src/view/com/composer/Composer.tsx:1652
#: src/view/com/util/error/ErrorScreen.tsx:42
msgid "Error"
msgstr "Fel"
@@ -2514,7 +2593,7 @@ msgid "Error receiving captcha response."
msgstr "Fel vid mottagning av captcha-svar."
#: src/screens/Onboarding/StepInterests/index.tsx:183
-#: src/view/screens/Search/Search.tsx:111
+#: src/view/screens/Search/Search.tsx:110
msgid "Error:"
msgstr "Fel:"
@@ -2584,7 +2663,7 @@ msgstr "Utöka lista över användare"
msgid "Expand or collapse the full post you are replying to"
msgstr "Utöka eller fäll ihop det inlägg som du svarar på i sin helhet"
-#: src/lib/api/index.ts:400
+#: src/lib/api/index.ts:405
msgid "Expected uri to resolve to a record"
msgstr "Förväntade att URI:n skulle lösa till en post"
@@ -2618,8 +2697,8 @@ msgstr "Exportera min data"
msgid "Export My Data"
msgstr "Exportera min data"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:82
-#: src/screens/Settings/ContentAndMediaSettings.tsx:85
+#: src/screens/Settings/ContentAndMediaSettings.tsx:83
+#: src/screens/Settings/ContentAndMediaSettings.tsx:86
msgid "External media"
msgstr "Extern media"
@@ -2633,12 +2712,12 @@ msgstr "Extern media"
msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
msgstr "Extern media kan göra det möjligt för webbplatser att samla in information om dig och din enhet. Ingen information skickas eller begärs förrän du trycker på spelaknappen."
-#: src/Navigation.tsx:315
+#: src/Navigation.tsx:316
#: src/screens/Settings/ExternalMediaPreferences.tsx:31
msgid "External Media Preferences"
msgstr "Inställningar för extern media"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:570
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:568
msgid "Failed to change handle. Please try again."
msgstr "Det gick inte att ändra användarnamn. Försök igen."
@@ -2667,8 +2746,8 @@ msgstr "Det gick inte att ta bort inlägget. Försök igen"
msgid "Failed to delete starter pack"
msgstr "Det gick inte att ta bort startpaketet"
-#: src/view/screens/Search/Explore.tsx:447
-#: src/view/screens/Search/Explore.tsx:475
+#: src/view/screens/Search/Explore.tsx:460
+#: src/view/screens/Search/Explore.tsx:488
msgid "Failed to load feeds preferences"
msgstr "Det gick inte att läsa in flödesinställningar"
@@ -2680,12 +2759,12 @@ msgstr "Det gick inte att läsa in gif-bilder"
msgid "Failed to load past messages"
msgstr "Det gick inte att läsa in tidigare meddelanden"
-#: src/view/screens/Search/Explore.tsx:440
-#: src/view/screens/Search/Explore.tsx:468
+#: src/view/screens/Search/Explore.tsx:453
+#: src/view/screens/Search/Explore.tsx:481
msgid "Failed to load suggested feeds"
msgstr "Det gick inte att läsa in föreslagna flöden"
-#: src/view/screens/Search/Explore.tsx:398
+#: src/view/screens/Search/Explore.tsx:411
msgid "Failed to load suggested follows"
msgstr "Det gick inte att läsa in föreslagna konton att följa"
@@ -2729,11 +2808,11 @@ msgstr "Det gick inte att uppdatera inställningarna"
msgid "Failed to upload video"
msgstr "Det gick inte att ladda upp videoklippet"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:343
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:341
msgid "Failed to verify handle. Please try again."
msgstr "Det gick inte att verifiera användarnamnet. Försök igen."
-#: src/Navigation.tsx:231
+#: src/Navigation.tsx:232
msgid "Feed"
msgstr "Flöde"
@@ -2752,7 +2831,7 @@ msgstr "Växla läge på flöde"
#: src/view/shell/desktop/RightNav.tsx:93
#: src/view/shell/desktop/RightNav.tsx:94
-#: src/view/shell/Drawer.tsx:319
+#: src/view/shell/Drawer.tsx:324
msgid "Feedback"
msgstr "Feedback"
@@ -2761,14 +2840,14 @@ msgstr "Feedback"
msgid "Feedback sent!"
msgstr "Feedback skickat!"
-#: src/Navigation.tsx:403
+#: src/Navigation.tsx:404
#: src/screens/StarterPack/StarterPackScreen.tsx:183
#: src/view/screens/Feeds.tsx:508
-#: src/view/screens/Profile.tsx:235
+#: src/view/screens/Profile.tsx:238
#: src/view/screens/SavedFeeds.tsx:96
-#: src/view/screens/Search/Search.tsx:526
-#: src/view/shell/desktop/LeftNav.tsx:445
-#: src/view/shell/Drawer.tsx:476
+#: src/view/screens/Search/Search.tsx:522
+#: src/view/shell/desktop/LeftNav.tsx:640
+#: src/view/shell/Drawer.tsx:481
msgid "Feeds"
msgstr "Flöden"
@@ -2793,7 +2872,7 @@ msgstr "Filen sparades utan problem!"
msgid "Filter from feeds"
msgstr "Filtrera bort från flöden"
-#: src/screens/Onboarding/StepFinished.tsx:296
+#: src/screens/Onboarding/StepFinished.tsx:303
msgid "Finalizing"
msgstr "Slutför"
@@ -2809,7 +2888,7 @@ msgstr "Hitta konton att följa"
msgid "Find people to follow"
msgstr "Hitta personer att följa"
-#: src/view/screens/Search/Search.tsx:596
+#: src/view/screens/Search/Search.tsx:588
msgid "Find posts and users on Bluesky"
msgstr "Hitta inlägg och användare på Bluesky"
@@ -2821,7 +2900,7 @@ msgstr "Slutför"
msgid "Fitness"
msgstr "Fitness"
-#: src/screens/Onboarding/StepFinished.tsx:276
+#: src/screens/Onboarding/StepFinished.tsx:283
msgid "Flexible"
msgstr "Flexibelt"
@@ -2830,6 +2909,7 @@ msgstr "Flexibelt"
#: src/components/ProfileHoverCard/index.web.tsx:449
#: src/components/ProfileHoverCard/index.web.tsx:460
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234
+#: src/screens/VideoFeed/index.tsx:819
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:132
msgid "Follow"
msgstr "Följ"
@@ -2844,6 +2924,10 @@ msgstr "Följ"
msgid "Follow {0}"
msgstr "Följ {0}"
+#: src/screens/VideoFeed/index.tsx:798
+msgid "Follow {handle}"
+msgstr "Följ {handle}"
+
#: src/view/com/posts/AviFollowButton.tsx:68
msgid "Follow {name}"
msgstr "Följ {name}"
@@ -2877,23 +2961,23 @@ msgctxt "action"
msgid "Follow Back"
msgstr "Följ tillbaka"
-#: src/view/screens/Search/Explore.tsx:355
+#: src/view/screens/Search/Explore.tsx:368
msgid "Follow more accounts to get connected to your interests and build your network."
msgstr "Följ fler användare för att anknyta till dina intressen och bygga upp ditt nätverk."
-#: src/components/KnownFollowers.tsx:231
+#: src/components/KnownFollowers.tsx:232
msgid "Followed by <0>{0}0>"
msgstr "Följs av <0>{0}0>"
-#: src/components/KnownFollowers.tsx:217
+#: src/components/KnownFollowers.tsx:218
msgid "Followed by <0>{0}0> and {1, plural, one {# other} other {# others}}"
msgstr "Följs av <0>{0}0> och {1, plural, one {# annan} other {# andra}}"
-#: src/components/KnownFollowers.tsx:204
+#: src/components/KnownFollowers.tsx:205
msgid "Followed by <0>{0}0> and <1>{1}1>"
msgstr "Följs av <0>{0}0> och <1>{1}1>"
-#: src/components/KnownFollowers.tsx:186
+#: src/components/KnownFollowers.tsx:187
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "Följs av <0>{0}0>, <1>{1}1>, och {2, plural, one {# annan} other {# andra}}"
@@ -2901,7 +2985,7 @@ msgstr "Följs av <0>{0}0>, <1>{1}1>, och {2, plural, one {# annan} other {#
msgid "Followed users"
msgstr "Användare jag följer"
-#: src/Navigation.tsx:192
+#: src/Navigation.tsx:193
msgid "Followers of @{0} that you know"
msgstr "Följare av @{0} som du känner"
@@ -2915,6 +2999,7 @@ msgstr "Följare som du känner"
#: src/components/ProfileHoverCard/index.web.tsx:448
#: src/components/ProfileHoverCard/index.web.tsx:459
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230
+#: src/screens/VideoFeed/index.tsx:817
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:135
#: src/view/screens/Feeds.tsx:599
#: src/view/screens/SavedFeeds.tsx:422
@@ -2926,16 +3011,20 @@ msgstr "Följer"
msgid "Following {0}"
msgstr "Följer {0}"
+#: src/screens/VideoFeed/index.tsx:797
+msgid "Following {handle}"
+msgstr "Följer {handle}"
+
#: src/view/com/posts/AviFollowButton.tsx:50
msgid "Following {name}"
msgstr "Följer {name}"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:74
-#: src/screens/Settings/ContentAndMediaSettings.tsx:77
+#: src/screens/Settings/ContentAndMediaSettings.tsx:75
+#: src/screens/Settings/ContentAndMediaSettings.tsx:78
msgid "Following feed preferences"
msgstr "Inställningar för Följer-flödet"
-#: src/Navigation.tsx:302
+#: src/Navigation.tsx:303
#: src/screens/Settings/FollowingFeedPreferences.tsx:53
msgid "Following Feed Preferences"
msgstr "Inställningar för Följer-flödet"
@@ -2971,7 +3060,7 @@ msgstr "Av säkerhetsskäl kommer du inte kunna se det här igen. Om du tappar b
#: src/screens/Settings/AppearanceSettings.tsx:142
msgid "For the best experience, we recommend using the theme font."
-msgstr "Vi rekommenderar att använda tematypsnittet för bästa upplevelse."
+msgstr "Vi rekommenderar tematypsnittet för bästa upplevelse."
#: src/components/dialogs/MutedWords.tsx:178
msgid "Forever"
@@ -2982,11 +3071,11 @@ msgstr "Obegränsad"
msgid "Forgot Password"
msgstr "Glömt lösenord"
-#: src/screens/Login/LoginForm.tsx:232
+#: src/screens/Login/LoginForm.tsx:240
msgid "Forgot password?"
msgstr "Glömt lösenordet?"
-#: src/screens/Login/LoginForm.tsx:243
+#: src/screens/Login/LoginForm.tsx:251
msgid "Forgot?"
msgstr "Glömt?"
@@ -3007,11 +3096,11 @@ msgstr "Från <0/>"
msgid "Gallery"
msgstr "Galleri"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:297
+#: src/components/StarterPack/ProfileStarterPacks.tsx:296
msgid "Generate a starter pack"
msgstr "Generera ett startpaket"
-#: src/view/shell/Drawer.tsx:323
+#: src/view/shell/Drawer.tsx:328
msgid "Get help"
msgstr "Få hjälp"
@@ -3039,7 +3128,10 @@ msgstr "Uppenbara överträdelser av lagar eller användarvillkor"
#: src/components/Layout/Header/index.tsx:118
#: src/components/moderation/ScreenHider.tsx:154
#: src/components/moderation/ScreenHider.tsx:163
-#: src/screens/Profile/ProfileFeed/index.tsx:82
+#: src/screens/Profile/ProfileFeed/index.tsx:89
+#: src/screens/VideoFeed/components/Header.tsx:163
+#: src/screens/VideoFeed/index.tsx:1098
+#: src/screens/VideoFeed/index.tsx:1102
#: src/view/com/auth/LoggedOut.tsx:72
#: src/view/screens/NotFound.tsx:57
#: src/view/screens/ProfileList.tsx:1009
@@ -3050,20 +3142,20 @@ msgstr "Gå tillbaka"
#: src/screens/List/ListHiddenScreen.tsx:221
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/Profile/ProfileFeed/index.tsx:87
+#: src/screens/Profile/ProfileFeed/index.tsx:94
#: src/screens/StarterPack/StarterPackScreen.tsx:758
#: src/view/screens/NotFound.tsx:56
#: src/view/screens/ProfileList.tsx:1014
msgid "Go Back"
msgstr "Gå tillbaka"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:542
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:540
msgid "Go back to previous page"
msgstr "Gå tillbaka till föregående sida"
-#: src/components/dms/ReportDialog.tsx:149
-#: src/components/ReportDialog/SelectReportOptionView.tsx:80
-#: src/components/ReportDialog/SubmitView.tsx:109
+#: src/components/dms/ReportDialog.tsx:190
+#: src/components/ReportDialog/SelectReportOptionView.tsx:78
+#: src/components/ReportDialog/SubmitView.tsx:110
#: src/screens/Onboarding/Layout.tsx:101
#: src/screens/Onboarding/Layout.tsx:190
#: src/screens/Signup/BackNextButtons.tsx:35
@@ -3082,7 +3174,7 @@ msgstr "Gå hem"
msgid "Go Home"
msgstr "Gå till Hem"
-#: src/screens/Messages/components/ChatListItem.tsx:264
+#: src/screens/Messages/components/ChatListItem.tsx:274
msgid "Go to conversation with {0}"
msgstr "Gå till konversation med {0}"
@@ -3091,11 +3183,11 @@ msgstr "Gå till konversation med {0}"
msgid "Go to next"
msgstr "Gå till nästa"
-#: src/components/dms/ConvoMenu.tsx:167
+#: src/components/dms/ConvoMenu.tsx:170
msgid "Go to profile"
msgstr "Gå till profil"
-#: src/components/dms/ConvoMenu.tsx:164
+#: src/components/dms/ConvoMenu.tsx:167
msgid "Go to user's profile"
msgstr "Gå till användarens profil"
@@ -3115,16 +3207,16 @@ msgstr "Halvvägs där!"
msgid "Handle"
msgstr "Användarnamn"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:574
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:572
msgid "Handle already taken. Please try a different one."
msgstr "Användarnamnet används redan av en annan. Försök med ett annat."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:191
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:327
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:189
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:325
msgid "Handle changed!"
msgstr "Användarnamnet har ändrats!"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:578
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:576
msgid "Handle too long. Please try a shorter one."
msgstr "Användarnamnet är för långt. Försök med ett kortare."
@@ -3136,14 +3228,17 @@ msgstr "Haptik"
msgid "Harassment, trolling, or intolerance"
msgstr "Trakasserier, trolling eller intolerans"
-#: src/Navigation.tsx:378
+#: src/Navigation.tsx:379
msgid "Hashtag"
msgstr "Hashtagg"
-#: src/components/RichText.tsx:218
-msgid "Hashtag: #{tag}"
+#: src/components/RichTextTag.tsx:51
+msgid "Hashtag {tag}"
msgstr "Hashtagg: #{tag}"
+#~ msgid "Hashtag: #{tag}"
+#~ msgstr "Hashtagg: #{tag}"
+
#: src/screens/Signup/index.tsx:173
msgid "Having trouble?"
msgstr "Har du problem?"
@@ -3152,7 +3247,7 @@ msgstr "Har du problem?"
#: src/screens/Settings/Settings.tsx:211
#: src/view/shell/desktop/RightNav.tsx:111
#: src/view/shell/desktop/RightNav.tsx:112
-#: src/view/shell/Drawer.tsx:332
+#: src/view/shell/Drawer.tsx:337
msgid "Help"
msgstr "Hjälp"
@@ -3164,11 +3259,21 @@ msgstr "Låt folk veta att du inte är en bot genom att ladda upp en bild eller
msgid "Here is your app password!"
msgstr "Är är ditt applösenord!"
+#: src/components/VideoPostCard.tsx:172
+#: src/components/VideoPostCard.tsx:448
+msgid "Hidden"
+msgstr "Dolt"
+
+#: src/screens/VideoFeed/index.tsx:606
+msgid "Hidden by your moderation settings."
+msgstr "Dolt av dina modereringsinställningar."
+
#: src/components/ListCard.tsx:130
msgid "Hidden list"
msgstr "Dold lista"
-#: src/components/interstitials/Trending.tsx:101
+#: src/components/interstitials/Trending.tsx:131
+#: src/components/interstitials/TrendingVideos.tsx:140
#: src/components/moderation/ContentHider.tsx:200
#: src/components/moderation/LabelPreference.tsx:135
#: src/components/moderation/PostHider.tsx:122
@@ -3216,18 +3321,22 @@ msgstr "Dölj det här inlägget?"
msgid "Hide this reply?"
msgstr "Dölj det här svaret?"
-#: src/components/interstitials/Trending.tsx:84
+#: src/components/interstitials/Trending.tsx:113
#: src/screens/Search/components/ExploreTrendingTopics.tsx:83
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:62
msgid "Hide trending topics"
msgstr "Dölj trendande ämnen"
-#: src/components/interstitials/Trending.tsx:99
+#: src/components/interstitials/Trending.tsx:129
#: src/screens/Search/components/ExploreTrendingTopics.tsx:135
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:108
msgid "Hide trending topics?"
msgstr "Dölj trendande ämnen?"
+#: src/components/interstitials/TrendingVideos.tsx:138
+msgid "Hide trending videos?"
+msgstr "Dölj trendande videoklipp?"
+
#: src/view/com/notifications/NotificationFeedItem.tsx:592
msgid "Hide user list"
msgstr "Dölj användarlista"
@@ -3264,21 +3373,20 @@ msgstr "Hmmmm, vi kunde inte ladda den modereringstjänsten."
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "Vänta lite! Vi ger gradvis tillgång till videoklipp till fler användare, och du står fortfarande i kön. Kom tillbaka och försök snart igen!"
-#: src/Navigation.tsx:594
-#: src/Navigation.tsx:614
-#: src/view/shell/bottom-bar/BottomBar.tsx:163
-#: src/view/shell/desktop/LeftNav.tsx:389
-#: src/view/shell/Drawer.tsx:391
+#: src/Navigation.tsx:603
+#: src/Navigation.tsx:623
+#: src/view/shell/bottom-bar/BottomBar.tsx:162
+#: src/view/shell/desktop/LeftNav.tsx:584
+#: src/view/shell/Drawer.tsx:396
msgid "Home"
msgstr "Hem"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:400
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:398
msgid "Host:"
msgstr "Värd:"
#: src/screens/Login/ForgotPasswordForm.tsx:83
-#: src/screens/Login/LoginForm.tsx:168
-#: src/screens/Signup/StepInfo/index.tsx:133
+#: src/screens/Login/LoginForm.tsx:176
msgid "Hosting provider"
msgstr "Värdleverantör"
@@ -3308,8 +3416,8 @@ msgstr "Jag har en kod"
msgid "I have a confirmation code"
msgstr "Jag har en bekräftelsekod"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:263
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:269
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:261
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:267
msgid "I have my own domain"
msgstr "Jag har min egen domän"
@@ -3330,7 +3438,7 @@ msgstr "Om du inte är vuxen enligt ditt lands lagar måste din förälder eller
msgid "If you delete this list, you won't be able to recover it."
msgstr "Om du raderar den här listan kommer du inte att kunna återställa den."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:250
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:248
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "Om du har en egen domän kan du använda den som ditt användarnamn. Det gör det möjligt för dig att själv verifiera din identitet. <0>Läs mer här.0>"
@@ -3342,6 +3450,10 @@ msgstr "Om du tar bort det här inlägget kommer du inte att kunna återställa
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "Om du vill ändra ditt lösenord skickar vi en kod till dig för att verifiera att det här är ditt konto."
+#: src/view/com/auth/server-input/index.tsx:168
+msgid "If you're a developer, you can host your own server."
+msgstr "Om du är en utvecklare kan du stå som värd för din egen server."
+
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr "Om du försöker ändra ditt användarnamn eller din e-postadress ska du göra det innan du avaktiverar."
@@ -3370,7 +3482,11 @@ msgstr "Imitation, felaktig information eller falska påståenden"
msgid "Inappropriate messages or explicit links"
msgstr "Olämpliga meddelanden eller explicita länkar"
-#: src/screens/Login/SetNewPasswordForm.tsx:121
+#: src/screens/Login/LoginForm.tsx:157
+msgid "Incorrect username or password"
+msgstr "Felaktigt användarnamn eller lösenord"
+
+#: src/screens/Login/SetNewPasswordForm.tsx:127
msgid "Input code sent to your email for password reset"
msgstr "Ange den kod som har skickats till din e-post för att återställa lösenordet"
@@ -3378,7 +3494,7 @@ msgstr "Ange den kod som har skickats till din e-post för att återställa lös
msgid "Input confirmation code for account deletion"
msgstr "Ange bekräftelsekod för att ta bort kontot"
-#: src/screens/Login/SetNewPasswordForm.tsx:145
+#: src/screens/Login/SetNewPasswordForm.tsx:151
msgid "Input new password"
msgstr "Ange nytt lösenord"
@@ -3386,15 +3502,15 @@ msgstr "Ange nytt lösenord"
msgid "Input password for account deletion"
msgstr "Ange lösenord för att ta bort kontot"
-#: src/screens/Login/LoginForm.tsx:273
+#: src/screens/Login/LoginForm.tsx:281
msgid "Input the code which has been emailed to you"
msgstr "Ange koden som har skickats till dig via e-post"
-#: src/screens/Login/LoginForm.tsx:202
+#: src/screens/Login/LoginForm.tsx:210
msgid "Input the username or email address you used at signup"
msgstr "Ange användarnamnet eller e-postadressen som du använde när du registrerade dig"
-#: src/screens/Login/LoginForm.tsx:227
+#: src/screens/Login/LoginForm.tsx:235
msgid "Input your password"
msgstr "Ange ditt lösenord"
@@ -3402,12 +3518,12 @@ msgstr "Ange ditt lösenord"
msgid "Interaction limited"
msgstr "Interaktion begränsad"
-#: src/screens/Login/LoginForm.tsx:144
+#: src/screens/Login/LoginForm.tsx:149
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:70
msgid "Invalid 2FA confirmation code."
msgstr "Ogiltig bekräftelsekod för 2FA."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:580
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:578
msgid "Invalid handle. Please try a different one."
msgstr "Ogiltigt användarnamn. Försök med ett annat."
@@ -3415,10 +3531,8 @@ msgstr "Ogiltigt användarnamn. Försök med ett annat."
msgid "Invalid or unsupported post record"
msgstr "Ogiltig eller icke stödd inläggspost"
-#: src/screens/Login/LoginForm.tsx:90
-#: src/screens/Login/LoginForm.tsx:149
-msgid "Invalid username or password"
-msgstr "Ogiltigt användarnamn eller lösenord"
+#~ msgid "Invalid username or password"
+#~ msgstr "Ogiltigt användarnamn eller lösenord"
#: src/components/intents/VerifyEmailIntentDialog.tsx:91
msgid "Invalid Verification Code"
@@ -3428,7 +3542,7 @@ msgstr "Ogiltig verifieringskod"
msgid "Invite a Friend"
msgstr "Bjud in en vän"
-#: src/screens/Signup/StepInfo/index.tsx:151
+#: src/screens/Signup/StepInfo/index.tsx:145
msgid "Invite code"
msgstr "Inbjudningskod"
@@ -3460,7 +3574,7 @@ msgstr "Inbjudningar, men personliga"
msgid "It looks like you may have entered your email address incorrectly. Are you sure it's right?"
msgstr "Det verkar som att du har angett din e-postadress fel. Är du säker på att du har skrivit rätt?"
-#: src/screens/Signup/StepInfo/index.tsx:241
+#: src/screens/Signup/StepInfo/index.tsx:235
msgid "It's correct"
msgstr "Det är korrekt"
@@ -3468,7 +3582,7 @@ msgstr "Det är korrekt"
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "Just nu är det bara du! Lägg till fler personer i ditt startpaket genom att söka ovan."
-#: src/view/com/composer/Composer.tsx:1578
+#: src/view/com/composer/Composer.tsx:1586
msgid "Job ID: {0}"
msgstr "Jobb-ID: {0}"
@@ -3486,7 +3600,7 @@ msgstr "Gå med i Bluesky"
#: src/components/StarterPack/QrCode.tsx:62
#: src/view/shell/NavSignupCard.tsx:40
msgid "Join the conversation"
-msgstr "Delta i konversationen"
+msgstr "Delta i samtalen"
#: src/screens/Onboarding/index.tsx:21
#: src/screens/Onboarding/state.ts:104
@@ -3502,7 +3616,7 @@ msgid "Labeled by the author."
msgstr "Märkt av användaren."
#: src/view/com/composer/labels/LabelsBtn.tsx:75
-#: src/view/screens/Profile.tsx:229
+#: src/view/screens/Profile.tsx:231
msgid "Labels"
msgstr "Etiketter"
@@ -3526,7 +3640,7 @@ msgstr "Etiketter på ditt innehåll"
msgid "Language selection"
msgstr "Språkval"
-#: src/Navigation.tsx:165
+#: src/Navigation.tsx:166
msgid "Language Settings"
msgstr "Språkinställningar"
@@ -3542,11 +3656,11 @@ msgstr "Större"
#: src/screens/Hashtag.tsx:95
#: src/screens/Topic.tsx:77
-#: src/view/screens/Search/Search.tsx:510
+#: src/view/screens/Search/Search.tsx:506
msgid "Latest"
msgstr "Senaste"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:254
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:252
msgid "learn more"
msgstr "läs mer"
@@ -3558,7 +3672,7 @@ msgstr "Läs mer"
msgid "Learn more about Bluesky"
msgstr "Läs mer om Bluesky"
-#: src/view/com/auth/server-input/index.tsx:156
+#: src/view/com/auth/server-input/index.tsx:178
msgid "Learn more about self hosting your PDS."
msgstr "Läs mer om att stå som värd för din egen PDS."
@@ -3578,11 +3692,11 @@ msgid "Learn more about what is public on Bluesky."
msgstr "Läs mer om vad som är offentligt på Bluesky."
#: src/components/moderation/ContentHider.tsx:239
-#: src/view/com/auth/server-input/index.tsx:158
+#: src/view/com/auth/server-input/index.tsx:180
msgid "Learn more."
msgstr "Läs mer."
-#: src/components/dms/LeaveConvoPrompt.tsx:49
+#: src/components/dms/LeaveConvoPrompt.tsx:44
msgid "Leave"
msgstr "Lämna"
@@ -3591,11 +3705,11 @@ msgstr "Lämna"
msgid "Leave chat"
msgstr "Lämna chatt"
-#: src/components/dms/ConvoMenu.tsx:138
#: src/components/dms/ConvoMenu.tsx:141
-#: src/components/dms/ConvoMenu.tsx:208
+#: src/components/dms/ConvoMenu.tsx:144
#: src/components/dms/ConvoMenu.tsx:211
-#: src/components/dms/LeaveConvoPrompt.tsx:45
+#: src/components/dms/ConvoMenu.tsx:214
+#: src/components/dms/LeaveConvoPrompt.tsx:40
msgid "Leave conversation"
msgstr "Lämna konversation"
@@ -3607,11 +3721,11 @@ msgstr "Lämna alla alternativ omarkerade för att se alla språk."
msgid "Leaving Bluesky"
msgstr "Du är på väg att lämna Bluesky"
-#: src/screens/SignupQueued.tsx:140
+#: src/screens/SignupQueued.tsx:155
msgid "left to go."
msgstr "kvar."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:313
+#: src/components/StarterPack/ProfileStarterPacks.tsx:312
msgid "Let me choose"
msgstr "Låt mig välja"
@@ -3620,7 +3734,7 @@ msgstr "Låt mig välja"
msgid "Let's get your password reset!"
msgstr "Låt oss få ditt lösenord återställt!"
-#: src/screens/Onboarding/StepFinished.tsx:296
+#: src/screens/Onboarding/StepFinished.tsx:303
msgid "Let's go!"
msgstr "Nu kör vi!"
@@ -3654,8 +3768,8 @@ msgid "Like this feed"
msgstr "Gilla det här flödet"
#: src/components/LikesDialog.tsx:85
-#: src/Navigation.tsx:236
-#: src/Navigation.tsx:241
+#: src/Navigation.tsx:237
+#: src/Navigation.tsx:242
msgid "Liked by"
msgstr "Gillat av"
@@ -3677,7 +3791,7 @@ msgstr "Gillat av {0, plural, one {# användare} other {# användare}}"
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "Gillat av {likeCount, plural, one {# användare} other {# användare}}"
-#: src/view/screens/Profile.tsx:234
+#: src/view/screens/Profile.tsx:237
msgid "Likes"
msgstr "Gillamarkeringar"
@@ -3690,7 +3804,7 @@ msgstr "Gillamarkeringar på det här inlägget"
msgid "Linear"
msgstr "Linjärt"
-#: src/Navigation.tsx:198
+#: src/Navigation.tsx:199
msgid "List"
msgstr "Lista"
@@ -3743,12 +3857,12 @@ msgstr "Blockeringen av listan har hävts"
msgid "List unmuted"
msgstr "Listan ignoreras inte mer"
-#: src/Navigation.tsx:135
+#: src/Navigation.tsx:136
#: src/view/screens/Lists.tsx:62
-#: src/view/screens/Profile.tsx:230
-#: src/view/screens/Profile.tsx:237
-#: src/view/shell/desktop/LeftNav.tsx:463
-#: src/view/shell/Drawer.tsx:491
+#: src/view/screens/Profile.tsx:232
+#: src/view/screens/Profile.tsx:240
+#: src/view/shell/desktop/LeftNav.tsx:658
+#: src/view/shell/Drawer.tsx:496
msgid "Lists"
msgstr "Listor"
@@ -3756,15 +3870,15 @@ msgstr "Listor"
msgid "Lists blocking this user:"
msgstr "Listor som blockerar den här användaren:"
-#: src/view/screens/Search/Explore.tsx:133
+#: src/view/screens/Search/Explore.tsx:134
msgid "Load more"
msgstr "Läs in fler"
-#: src/view/screens/Search/Explore.tsx:221
+#: src/view/screens/Search/Explore.tsx:223
msgid "Load more suggested feeds"
msgstr "Läs in fler föreslagna flöden"
-#: src/view/screens/Search/Explore.tsx:219
+#: src/view/screens/Search/Explore.tsx:221
msgid "Load more suggested follows"
msgstr "Läs in fler följförslag"
@@ -3772,9 +3886,9 @@ msgstr "Läs in fler följförslag"
msgid "Load new notifications"
msgstr "Läs in nya notiser"
-#: src/screens/Profile/ProfileFeed/index.tsx:192
-#: src/screens/Profile/Sections/Feed.tsx:96
-#: src/view/com/feeds/FeedPage.tsx:143
+#: src/screens/Profile/ProfileFeed/index.tsx:221
+#: src/screens/Profile/Sections/Feed.tsx:98
+#: src/view/com/feeds/FeedPage.tsx:155
#: src/view/screens/ProfileList.tsx:849
msgid "Load new posts"
msgstr "Läs in nya inlägg"
@@ -3783,7 +3897,7 @@ msgstr "Läs in nya inlägg"
msgid "Loading..."
msgstr "Laddar…"
-#: src/Navigation.tsx:261
+#: src/Navigation.tsx:262
msgid "Log"
msgstr "Logg"
@@ -3792,13 +3906,16 @@ msgstr "Logg"
msgid "Log in or sign up"
msgstr "Logga in eller registrera dig"
-#: src/screens/SignupQueued.tsx:168
-#: src/screens/SignupQueued.tsx:171
-#: src/screens/SignupQueued.tsx:196
-#: src/screens/SignupQueued.tsx:199
+#: src/screens/SignupQueued.tsx:93
+#: src/screens/SignupQueued.tsx:96
+#: src/screens/Takendown.tsx:85
msgid "Log out"
msgstr "Logga ut"
+#: src/screens/Takendown.tsx:88
+msgid "Log Out"
+msgstr "Logga ut"
+
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:78
msgid "Logged-out visibility"
msgstr "Synlighet för utloggade"
@@ -3812,15 +3929,15 @@ msgid "Logo by @sawaratsuki.bsky.social"
msgstr "Logotyp av @sawaratsuki.bsky.social"
#: src/view/shell/desktop/RightNav.tsx:118
-#: src/view/shell/Drawer.tsx:629
+#: src/view/shell/Drawer.tsx:634
msgid "Logo by <0>@sawaratsuki.bsky.social0>"
msgstr "Logotyp av <0>@sawaratsuki.bsky.social0>"
-#: src/components/RichText.tsx:219
+#: src/components/RichTextTag.tsx:53
msgid "Long press to open tag menu for #{tag}"
msgstr "Tryck och håll nere för att öppna taggmenyn för #{tag}"
-#: src/screens/Login/SetNewPasswordForm.tsx:110
+#: src/screens/Login/SetNewPasswordForm.tsx:116
msgid "Looks like XXXXX-XXXXX"
msgstr "Ser ut som XXXXX-XXXXX"
@@ -3836,16 +3953,16 @@ msgstr "Det ser ut som att du har plockat bort alla dina flöden. Men oroa dig i
msgid "Looks like you're missing a following feed. <0>Click here to add one.0>"
msgstr "Det ser ut som om du saknar ett följflöde. <0>Klicka här för att lägga till ett.0>"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:266
+#: src/components/StarterPack/ProfileStarterPacks.tsx:265
msgid "Make one for me"
-msgstr "Gör en åt mig"
+msgstr "Gör ett åt mig"
#: src/view/com/modals/LinkWarning.tsx:79
msgid "Make sure this is where you intend to go!"
msgstr "Se till att du är säker på att du navigeras dit du har tänkt!"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:58
-#: src/screens/Settings/ContentAndMediaSettings.tsx:61
+#: src/screens/Settings/ContentAndMediaSettings.tsx:59
+#: src/screens/Settings/ContentAndMediaSettings.tsx:62
msgid "Manage saved feeds"
msgstr "Hantera sparade flöden"
@@ -3853,12 +3970,12 @@ msgstr "Hantera sparade flöden"
msgid "Manage your muted words and tags"
msgstr "Hantera dina ignorerade ord och taggar"
-#: src/components/dms/ConvoMenu.tsx:151
-#: src/components/dms/ConvoMenu.tsx:158
+#: src/components/dms/ConvoMenu.tsx:154
+#: src/components/dms/ConvoMenu.tsx:161
msgid "Mark as read"
msgstr "Markera som läst"
-#: src/view/screens/Profile.tsx:233
+#: src/view/screens/Profile.tsx:235
msgid "Media"
msgstr "Media"
@@ -3878,8 +3995,8 @@ msgstr "Omnämnda användare"
msgid "Mentions"
msgstr "Omnämnanden"
-#: src/components/Menu/index.tsx:96
-#: src/view/screens/Search/Search.tsx:864
+#: src/components/Menu/index.tsx:103
+#: src/view/screens/Search/Search.tsx:856
msgid "Menu"
msgstr "Meny"
@@ -3888,7 +4005,7 @@ msgid "Message {0}"
msgstr "Meddelande {0}"
#: src/components/dms/MessageMenu.tsx:72
-#: src/screens/Messages/components/ChatListItem.tsx:165
+#: src/screens/Messages/components/ChatListItem.tsx:174
msgid "Message deleted"
msgstr "Meddelandet har tagits bort"
@@ -3905,9 +4022,9 @@ msgstr "Inmatningsfält för meddelande"
msgid "Message is too long"
msgstr "Meddelandet är för långt"
-#: src/Navigation.tsx:609
-#: src/screens/Messages/ChatList.tsx:262
-#: src/screens/Messages/ChatList.tsx:286
+#: src/Navigation.tsx:618
+#: src/screens/Messages/ChatList.tsx:270
+#: src/screens/Messages/ChatList.tsx:294
msgid "Messages"
msgstr "Meddelanden"
@@ -3919,7 +4036,7 @@ msgstr "Vilseledande konto"
msgid "Misleading Post"
msgstr "Vilseledande inlägg"
-#: src/Navigation.tsx:140
+#: src/Navigation.tsx:141
#: src/screens/Moderation/index.tsx:88
#: src/screens/Settings/Settings.tsx:167
#: src/screens/Settings/Settings.tsx:170
@@ -3956,7 +4073,7 @@ msgstr "Modereringslista uppdaterad"
msgid "Moderation lists"
msgstr "Modereringslistor"
-#: src/Navigation.tsx:145
+#: src/Navigation.tsx:146
#: src/view/screens/ModerationModlists.tsx:62
msgid "Moderation Lists"
msgstr "Modereringslistor"
@@ -3965,7 +4082,7 @@ msgstr "Modereringslistor"
msgid "moderation settings"
msgstr "modereringsinställningar"
-#: src/Navigation.tsx:251
+#: src/Navigation.tsx:252
msgid "Moderation states"
msgstr "Modereringslägen"
@@ -4010,19 +4127,22 @@ msgstr "Filmer"
msgid "Music"
msgstr "Musik"
-#: src/components/TagMenu/index.tsx:264
-msgid "Mute"
-msgstr "Stäng av ljud"
-
#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:95
msgctxt "video"
msgid "Mute"
msgstr "Stäng av ljud"
-#: src/components/TagMenu/index.web.tsx:116
-msgid "Mute {truncatedTag}"
-msgstr "Ignorera {truncatedTag}"
+#~ msgid "Mute"
+#~ msgstr "Stäng av ljud"
+
+#: src/components/RichTextTag.tsx:140
+#: src/components/RichTextTag.tsx:153
+msgid "Mute {tag}"
+msgstr "Ignorera {tag}"
+
+#~ msgid "Mute {truncatedTag}"
+#~ msgstr "Ignorera {truncatedTag}"
#: src/view/com/profile/ProfileMenu.tsx:259
#: src/view/com/profile/ProfileMenu.tsx:266
@@ -4033,12 +4153,11 @@ msgstr "Ignorera konto"
msgid "Mute accounts"
msgstr "Ignorera konton"
-#: src/components/TagMenu/index.tsx:224
-msgid "Mute all {displayTag} posts"
-msgstr "Ignorera {displayTag}-inlögg"
+#~ msgid "Mute all {displayTag} posts"
+#~ msgstr "Ignorera {displayTag}-inlögg"
-#: src/components/dms/ConvoMenu.tsx:172
-#: src/components/dms/ConvoMenu.tsx:178
+#: src/components/dms/ConvoMenu.tsx:175
+#: src/components/dms/ConvoMenu.tsx:181
msgid "Mute conversation"
msgstr "Ignorera konversation"
@@ -4092,7 +4211,7 @@ msgstr "Ignorera ord och taggar"
msgid "Muted accounts"
msgstr "Ignorerade konton"
-#: src/Navigation.tsx:150
+#: src/Navigation.tsx:151
#: src/view/screens/ModerationMutedAccounts.tsx:100
msgid "Muted Accounts"
msgstr "Ignorerade konton"
@@ -4122,9 +4241,8 @@ msgstr "Min födelsedag"
msgid "My Feeds"
msgstr "Mina flöden"
-#: src/view/shell/desktop/LeftNav.tsx:84
-msgid "My Profile"
-msgstr "Min profil"
+#~ msgid "My Profile"
+#~ msgstr "Min profil"
#: src/view/com/modals/CreateOrEditList.tsx:270
msgid "Name"
@@ -4151,7 +4269,7 @@ msgid "Navigate to {0}"
msgstr "Navigera till {0}"
#: src/screens/Login/ForgotPasswordForm.tsx:166
-#: src/screens/Login/LoginForm.tsx:326
+#: src/screens/Login/LoginForm.tsx:334
#: src/view/com/modals/ChangePassword.tsx:169
msgid "Navigates to the next screen"
msgstr "Navigerar till nästa ruta"
@@ -4164,15 +4282,15 @@ msgstr "Navigerar till din profil"
msgid "Need to change it?"
msgstr "Behöver du ändra på det?"
-#: src/components/ReportDialog/SelectReportOptionView.tsx:130
+#: src/components/ReportDialog/SelectReportOptionView.tsx:128
msgid "Need to report a copyright violation?"
msgstr "Behöver du rapportera en upphovsrättsöverträdelse?"
-#: src/screens/Onboarding/StepFinished.tsx:264
+#: src/screens/Onboarding/StepFinished.tsx:271
msgid "Never lose access to your followers or data."
msgstr "Förlora aldrig åtkomsten till dina följare eller din data."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:550
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:548
msgid "Nevermind, create a handle for me"
msgstr "Det var inget. Skapa ett användarnamn åt mig"
@@ -4183,14 +4301,14 @@ msgid "New"
msgstr "Ny"
#: src/components/dms/dialogs/NewChatDialog.tsx:65
-#: src/screens/Messages/ChatList.tsx:269
-#: src/screens/Messages/ChatList.tsx:276
+#: src/screens/Messages/ChatList.tsx:277
+#: src/screens/Messages/ChatList.tsx:284
msgid "New chat"
msgstr "Ny chatt"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:204
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:212
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:358
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:202
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:210
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
msgid "New handle"
msgstr "Nytt användarnamn"
@@ -4215,21 +4333,21 @@ msgstr "Nytt lösenord"
msgid "New Password"
msgstr "Nytt lösenord"
-#: src/screens/Profile/ProfileFeed/index.tsx:209
+#: src/screens/Profile/ProfileFeed/index.tsx:238
#: src/view/screens/Feeds.tsx:549
#: src/view/screens/Notifications.tsx:165
-#: src/view/screens/Profile.tsx:495
+#: src/view/screens/Profile.tsx:518
#: src/view/screens/ProfileList.tsx:250
#: src/view/screens/ProfileList.tsx:283
msgid "New post"
msgstr "Nytt inlägg"
-#: src/view/com/feeds/FeedPage.tsx:154
+#: src/view/com/feeds/FeedPage.tsx:166
msgctxt "action"
msgid "New post"
msgstr "Nytt inlägg"
-#: src/view/shell/desktop/LeftNav.tsx:309
+#: src/view/shell/desktop/LeftNav.tsx:504
msgctxt "action"
msgid "New Post"
msgstr "Nytt inlägg"
@@ -4256,10 +4374,10 @@ msgstr "Nyheter"
#: src/screens/Login/ForgotPasswordForm.tsx:137
#: src/screens/Login/ForgotPasswordForm.tsx:143
-#: src/screens/Login/LoginForm.tsx:325
-#: src/screens/Login/LoginForm.tsx:332
-#: src/screens/Login/SetNewPasswordForm.tsx:168
+#: src/screens/Login/LoginForm.tsx:333
+#: src/screens/Login/LoginForm.tsx:340
#: src/screens/Login/SetNewPasswordForm.tsx:174
+#: src/screens/Login/SetNewPasswordForm.tsx:180
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:157
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:165
#: src/screens/Signup/BackNextButtons.tsx:67
@@ -4280,8 +4398,8 @@ msgstr "Nästa bild"
msgid "No app passwords yet"
msgstr "Du har inga applösenord ännu"
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:378
#: src/screens/Settings/components/ChangeHandleDialog.tsx:380
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:382
msgid "No DNS Panel"
msgstr "Ingen DNS-panel"
@@ -4303,15 +4421,18 @@ msgstr "Inga gillamarkeringar ännu"
msgid "No longer following {0}"
msgstr "{0} följs inte längre"
-#: src/screens/Signup/StepHandle.tsx:169
-msgid "No longer than 253 characters"
-msgstr "Inte längre än 253 tecken"
+#: src/screens/Signup/StepHandle.tsx:173
+msgid "No longer than {0} characters"
+msgstr "Får inte vara längre än {0} tecken"
-#: src/screens/Messages/components/ChatListItem.tsx:116
+#~ msgid "No longer than 253 characters"
+#~ msgstr "Inte längre än 253 tecken"
+
+#: src/screens/Messages/components/ChatListItem.tsx:118
msgid "No messages yet"
msgstr "Inga meddelanden ännu"
-#: src/screens/Messages/ChatList.tsx:225
+#: src/screens/Messages/ChatList.tsx:233
msgid "No more conversations to show"
msgstr "Inga fler konversationer att visa"
@@ -4328,7 +4449,7 @@ msgstr "Ingen"
msgid "No one but the author can quote this post."
msgstr "Ingen annan än författaren kan citera detta inlägg."
-#: src/screens/Profile/Sections/Feed.tsx:65
+#: src/screens/Profile/Sections/Feed.tsx:66
msgid "No posts yet."
msgstr "Inga inlägg ännu."
@@ -4350,7 +4471,7 @@ msgstr "Inga resultat"
msgid "No results"
msgstr "Inga resultat"
-#: src/components/Lists.tsx:183
+#: src/components/Lists.tsx:189
msgid "No results found"
msgstr "Inget resultat hittades"
@@ -4359,9 +4480,9 @@ msgid "No results found for \"{query}\""
msgstr "Inget resultat hittades för \"{query}\""
#: src/view/com/modals/ListAddRemoveUsers.tsx:128
-#: src/view/screens/Search/Search.tsx:229
-#: src/view/screens/Search/Search.tsx:268
-#: src/view/screens/Search/Search.tsx:314
+#: src/view/screens/Search/Search.tsx:227
+#: src/view/screens/Search/Search.tsx:265
+#: src/view/screens/Search/Search.tsx:310
msgid "No results found for {query}"
msgstr "Inget resultat hittades för {query}"
@@ -4400,7 +4521,7 @@ msgstr "Ingen hittades. Försök med att söka efter någon annan."
msgid "Non-sexual Nudity"
msgstr "Icke-sexuell nakenhet"
-#: src/Navigation.tsx:130
+#: src/Navigation.tsx:131
#: src/view/screens/Profile.tsx:129
msgid "Not Found"
msgstr "Hittades inte"
@@ -4420,7 +4541,7 @@ msgstr "Anmärkning om delning"
msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites."
msgstr "Obs: Bluesky är ett öppet och offentligt nätverk. Den här inställningen begränsar endast ditt kontos synlighet på Blueskys app och webbplats. Andra appar kanske inte respekterar den här inställningen. Ditt innehåll kan fortfarande visas för utloggade användare genom andra appar och webbplatser."
-#: src/screens/Messages/ChatList.tsx:180
+#: src/screens/Messages/ChatList.tsx:188
msgid "Nothing here"
msgstr "Här var det tomt"
@@ -4428,7 +4549,7 @@ msgstr "Här var det tomt"
msgid "Notification filters"
msgstr "Notisfilter"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:399
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "Notisinställningar"
@@ -4445,11 +4566,11 @@ msgstr "Notisljud"
msgid "Notification Sounds"
msgstr "Notisljud"
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:613
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:231
-#: src/view/shell/desktop/LeftNav.tsx:426
-#: src/view/shell/Drawer.tsx:444
+#: src/view/shell/bottom-bar/BottomBar.tsx:230
+#: src/view/shell/desktop/LeftNav.tsx:621
+#: src/view/shell/Drawer.tsx:449
msgid "Notifications"
msgstr "Notiser"
@@ -4505,19 +4626,19 @@ msgstr "Äldsta svar först"
msgid "on<0><1/><2><3/>2>0>"
msgstr "på<0><1/><2><3/>2>0>"
-#: src/screens/Settings/Settings.tsx:303
+#: src/screens/Settings/Settings.tsx:304
msgid "Onboarding reset"
msgstr "Återställning av kom-igång-guide"
-#: src/view/com/composer/Composer.tsx:331
+#: src/view/com/composer/Composer.tsx:338
msgid "One or more GIFs is missing alt text."
msgstr "En eller flera gif-bilder saknar alternativtext."
-#: src/view/com/composer/Composer.tsx:328
+#: src/view/com/composer/Composer.tsx:335
msgid "One or more images is missing alt text."
msgstr "En eller flera bilder saknar alternativtext."
-#: src/view/com/composer/Composer.tsx:338
+#: src/view/com/composer/Composer.tsx:345
msgid "One or more videos is missing alt text."
msgstr "Ett eller flera videoklipp saknar alternativtext."
@@ -4529,7 +4650,7 @@ msgstr "Endast .jpg- och .png-filer stöds"
msgid "Only {0} can reply."
msgstr "Endast {0} kan svara."
-#: src/screens/Signup/StepHandle.tsx:152
+#: src/screens/Signup/StepHandle.tsx:156
msgid "Only contains letters, numbers, and hyphens"
msgstr "Innehåller endast bokstäver, siffror och bindestreck"
@@ -4541,13 +4662,13 @@ msgstr "Endast bildfiler stöds"
msgid "Only WebVTT (.vtt) files are supported"
msgstr "Endast WebVTT-filer (.vtt) stöds"
-#: src/components/Lists.tsx:88
+#: src/components/Lists.tsx:94
msgid "Oops, something went wrong!"
msgstr "Hoppsan, något gick fel!"
-#: src/components/Lists.tsx:167
-#: src/components/StarterPack/ProfileStarterPacks.tsx:322
-#: src/components/StarterPack/ProfileStarterPacks.tsx:331
+#: src/components/Lists.tsx:173
+#: src/components/StarterPack/ProfileStarterPacks.tsx:321
+#: src/components/StarterPack/ProfileStarterPacks.tsx:330
#: src/screens/Settings/AppPasswords.tsx:59
#: src/screens/Settings/components/ChangeHandleDialog.tsx:104
#: src/screens/Settings/NotificationSettings.tsx:54
@@ -4555,7 +4676,7 @@ msgstr "Hoppsan, något gick fel!"
msgid "Oops!"
msgstr "Hoppsan!"
-#: src/screens/Onboarding/StepFinished.tsx:260
+#: src/screens/Onboarding/StepFinished.tsx:267
msgid "Open"
msgstr "Öppna"
@@ -4571,18 +4692,18 @@ msgstr "Öppna avatarskapare"
msgid "Open change handle dialog"
msgstr "Öppna dialogruta för ändring av användarnamn"
-#: src/screens/Messages/components/ChatListItem.tsx:272
-#: src/screens/Messages/components/ChatListItem.tsx:273
+#: src/screens/Messages/components/ChatListItem.tsx:282
+#: src/screens/Messages/components/ChatListItem.tsx:283
msgid "Open conversation options"
msgstr "Öppna konversationsalternativ"
-#: src/components/Layout/Header/index.tsx:145
+#: src/components/Layout/Header/index.tsx:149
msgid "Open drawer menu"
msgstr "Öppna sidpanel"
#: src/screens/Messages/components/MessageInput.web.tsx:181
-#: src/view/com/composer/Composer.tsx:1228
-#: src/view/com/composer/Composer.tsx:1229
+#: src/view/com/composer/Composer.tsx:1235
+#: src/view/com/composer/Composer.tsx:1236
msgid "Open emoji picker"
msgstr "Öppna emoji-väljaren"
@@ -4607,7 +4728,7 @@ msgstr "Öppna länk till {niceUrl}"
msgid "Open message options"
msgstr "Öppna meddelandealternativ"
-#: src/screens/Settings/Settings.tsx:329
+#: src/screens/Settings/Settings.tsx:330
msgid "Open moderation debug page"
msgstr "Öppna felsökningssida för moderering"
@@ -4623,12 +4744,12 @@ msgstr "Öppna meny för inläggsalternativ"
msgid "Open starter pack menu"
msgstr "Öppna startpaketsmeny"
-#: src/screens/Settings/Settings.tsx:322
-#: src/screens/Settings/Settings.tsx:336
+#: src/screens/Settings/Settings.tsx:323
+#: src/screens/Settings/Settings.tsx:337
msgid "Open storybook page"
msgstr "Öppna Storybook-sida"
-#: src/screens/Settings/Settings.tsx:315
+#: src/screens/Settings/Settings.tsx:316
msgid "Open system log"
msgstr "Öppna systemlogg"
@@ -4678,7 +4799,7 @@ msgstr "Öppnar dialogruta för val av gif-bild"
msgid "Opens list of invite codes"
msgstr "Öppnar lista med inbjudningskoder"
-#: src/screens/Login/LoginForm.tsx:233
+#: src/screens/Login/LoginForm.tsx:241
msgid "Opens password reset form"
msgstr "Öppnar formulär för återställning av lösenord"
@@ -4687,7 +4808,7 @@ msgid "Opens the linked website"
msgstr "Öppnar den länkade webbplatsen"
#: src/view/com/notifications/NotificationFeedItem.tsx:679
-#: src/view/com/util/UserAvatar.tsx:436
+#: src/view/com/util/UserAvatar.tsx:437
msgid "Opens this profile"
msgstr "Öppnar den här profilen"
@@ -4699,8 +4820,8 @@ msgstr "Öppnar verktyg för val av videoklipp"
msgid "Option {0} of {numItems}"
msgstr "Alternativ {0} av {numItems}"
-#: src/components/dms/ReportDialog.tsx:178
-#: src/components/ReportDialog/SubmitView.tsx:167
+#: src/components/dms/ReportDialog.tsx:219
+#: src/components/ReportDialog/SubmitView.tsx:168
msgid "Optionally provide additional information below:"
msgstr "Lägg till valfri ytterligare information nedan:"
@@ -4733,11 +4854,15 @@ msgstr "Annat konto"
msgid "Other..."
msgstr "Annat…"
+#: src/components/dms/ReportDialog.tsx:339
+msgid "Our moderation team has recieved your report."
+msgstr "Vårt modereringsteam har tagit emot din anmälan."
+
#: src/screens/Messages/components/ChatDisabled.tsx:28
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr "Våra moderatorer har granskat anmälningarna och beslutat att ta bort din åtkomst till chattar på Bluesky."
-#: src/components/Lists.tsx:184
+#: src/components/Lists.tsx:190
#: src/view/screens/NotFound.tsx:47
msgid "Page not found"
msgstr "Sidan hittades inte"
@@ -4746,10 +4871,10 @@ msgstr "Sidan hittades inte"
msgid "Page Not Found"
msgstr "Sidan hittades inte"
-#: src/screens/Login/LoginForm.tsx:212
+#: src/screens/Login/LoginForm.tsx:220
#: src/screens/Settings/AccountSettings.tsx:117
#: src/screens/Settings/AccountSettings.tsx:121
-#: src/screens/Signup/StepInfo/index.tsx:192
+#: src/screens/Signup/StepInfo/index.tsx:186
#: src/view/com/modals/DeleteAccount.tsx:239
#: src/view/com/modals/DeleteAccount.tsx:246
msgid "Password"
@@ -4778,15 +4903,15 @@ msgid "Pause video"
msgstr "Pausa video"
#: src/screens/StarterPack/StarterPackScreen.tsx:182
-#: src/view/screens/Search/Search.tsx:520
+#: src/view/screens/Search/Search.tsx:516
msgid "People"
msgstr "Personer"
-#: src/Navigation.tsx:185
+#: src/Navigation.tsx:186
msgid "People followed by @{0}"
msgstr "Personer som följs av @{0}"
-#: src/Navigation.tsx:178
+#: src/Navigation.tsx:179
msgid "People following @{0}"
msgstr "Personer som följer @{0}"
@@ -4815,11 +4940,20 @@ msgstr "Fotografi"
msgid "Pictures meant for adults."
msgstr "Bilder avsedda för vuxna."
+#: src/screens/Search/components/ExploreTrendingVideos.tsx:173
+#: src/screens/Search/components/ExploreTrendingVideos.tsx:178
+msgid "Pin"
+msgstr "Fäst"
+
#: src/screens/Profile/components/ProfileFeedHeader.tsx:519
#: src/screens/Profile/components/ProfileFeedHeader.tsx:526
msgid "Pin feed"
msgstr "Fäst flöde"
+#: src/screens/Search/components/ExploreTrendingVideos.tsx:167
+msgid "Pin the trending videos feed to your home screen for easy access"
+msgstr "Fäst flödet med trendande videoklipp på din hemskärm för enkel åtkomst"
+
#: src/view/screens/ProfileList.tsx:685
msgid "Pin to home"
msgstr "Fäst på hem"
@@ -4864,7 +4998,7 @@ msgstr "Spela {0}"
msgid "Play or pause the GIF"
msgstr "Spela upp eller pausa gif-bilden"
-#: src/view/com/util/post-embeds/VideoEmbed.tsx:107
+#: src/view/com/util/post-embeds/VideoEmbed.tsx:134
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321
msgid "Play video"
msgstr "Spela upp videoklipp"
@@ -4895,6 +5029,10 @@ msgstr "Slutför captcha-verifieringen."
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 "Vänligen bekräfta din e-postadress innan du ändrar den. Detta är ett tillfälligt som kommer att tas bort efter att fler verktyg för uppdatering av e-post lagts till."
+#: src/screens/Login/SetNewPasswordForm.tsx:56
+msgid "Please enter a password."
+msgstr "Ange ett lösenord."
+
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:114
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "Ange ett unikt namn för applösenordet eller använd ett slumpmässigt genererat av oss."
@@ -4912,10 +5050,18 @@ msgstr "Ange din e-postadress."
msgid "Please enter your invite code."
msgstr "Ange din inbjudningskod."
+#: src/screens/Login/LoginForm.tsx:95
+msgid "Please enter your password"
+msgstr "Ange ditt lösenord"
+
#: src/view/com/modals/DeleteAccount.tsx:235
msgid "Please enter your password as well:"
msgstr "Ange ditt lösenord också:"
+#: src/screens/Login/LoginForm.tsx:90
+msgid "Please enter your username"
+msgstr "Ange ditt användarnamn"
+
#: src/components/moderation/LabelsOnMeDialog.tsx:265
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr "Förklara varför du anser att den här etiketten har använts på ett felaktigt sätt av {0}"
@@ -4938,11 +5084,15 @@ msgstr "Verifiera din e-post"
msgid "Politics"
msgstr "Politik"
+#: src/screens/Search/components/ExploreTrendingVideos.tsx:116
+msgid "Popular videos in your network."
+msgstr "Populära videoklipp i ditt nätverk."
+
#: src/view/com/composer/labels/LabelsBtn.tsx:157
msgid "Porn"
msgstr "Porr"
-#: src/view/com/composer/Composer.tsx:944
+#: src/view/com/composer/Composer.tsx:951
msgctxt "action"
msgid "Post"
msgstr "Publicera"
@@ -4952,7 +5102,7 @@ msgctxt "description"
msgid "Post"
msgstr "Inlägg"
-#: src/view/com/composer/Composer.tsx:942
+#: src/view/com/composer/Composer.tsx:949
msgctxt "action"
msgid "Post All"
msgstr "Publicera alla"
@@ -4961,10 +5111,10 @@ msgstr "Publicera alla"
msgid "Post by {0}"
msgstr "Inlägg av {0}"
-#: src/Navigation.tsx:204
-#: src/Navigation.tsx:211
-#: src/Navigation.tsx:218
-#: src/Navigation.tsx:225
+#: src/Navigation.tsx:205
+#: src/Navigation.tsx:212
+#: src/Navigation.tsx:219
+#: src/Navigation.tsx:226
msgid "Post by @{0}"
msgstr "Inlägg av @{0}"
@@ -4976,6 +5126,10 @@ msgstr "Inlägg borttaget"
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "Inlägget kunde inte laddas upp. Kontrollera din internetanslutning och försök igen."
+#: src/screens/VideoFeed/index.tsx:511
+msgid "Post has been deleted"
+msgstr "Inlägget har tagits bort"
+
#: src/view/com/post-thread/PostThread.tsx:266
msgid "Post hidden"
msgstr "Inlägg dolt"
@@ -5015,12 +5169,11 @@ msgstr "Inlägget har fästs"
msgid "Post unpinned"
msgstr "Inlägget har lossats"
-#: src/components/TagMenu/index.tsx:268
-msgid "posts"
-msgstr "inlägg"
+#~ msgid "posts"
+#~ msgstr "inlägg"
#: src/screens/StarterPack/StarterPackScreen.tsx:184
-#: src/view/screens/Profile.tsx:231
+#: src/view/screens/Profile.tsx:233
msgid "Posts"
msgstr "Inlägg"
@@ -5044,12 +5197,13 @@ msgstr "Inställning sparad"
msgid "Press to attempt reconnection"
msgstr "Tryck för att försöka återansluta"
-#: src/components/forms/HostingProvider.tsx:46
+#: src/components/forms/HostingProvider.tsx:50
+#: src/components/forms/HostingProvider.tsx:66
msgid "Press to change hosting provider"
msgstr "Tryck för att byta världleverantör"
#: src/components/Error.tsx:60
-#: src/components/Lists.tsx:93
+#: src/components/Lists.tsx:99
#: src/screens/Messages/components/MessageListError.tsx:24
#: src/screens/Signup/BackNextButtons.tsx:47
msgid "Press to retry"
@@ -5086,21 +5240,21 @@ msgstr "Integritet"
msgid "Privacy and security"
msgstr "Integritet och säkerhet"
-#: src/Navigation.tsx:347
+#: src/Navigation.tsx:348
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:36
msgid "Privacy and Security"
msgstr "Integritet och säkerhet"
-#: src/Navigation.tsx:271
+#: src/Navigation.tsx:272
#: src/screens/Settings/AboutSettings.tsx:45
#: src/screens/Settings/AboutSettings.tsx:48
#: src/view/screens/PrivacyPolicy.tsx:31
-#: src/view/shell/Drawer.tsx:624
-#: src/view/shell/Drawer.tsx:625
+#: src/view/shell/Drawer.tsx:629
+#: src/view/shell/Drawer.tsx:630
msgid "Privacy Policy"
msgstr "Integritetspolicy"
-#: src/view/com/composer/Composer.tsx:1641
+#: src/view/com/composer/Composer.tsx:1649
msgid "Processing video..."
msgstr "Bearbetar videoklipp…"
@@ -5110,14 +5264,14 @@ msgid "Processing..."
msgstr "Bearbetar…"
#: src/view/screens/DebugMod.tsx:919
-#: src/view/screens/Profile.tsx:362
+#: src/view/screens/Profile.tsx:372
msgid "profile"
msgstr "profil"
-#: src/view/shell/bottom-bar/BottomBar.tsx:276
-#: src/view/shell/desktop/LeftNav.tsx:481
+#: src/view/shell/bottom-bar/BottomBar.tsx:275
+#: src/view/shell/desktop/LeftNav.tsx:676
#: src/view/shell/Drawer.tsx:71
-#: src/view/shell/Drawer.tsx:516
+#: src/view/shell/Drawer.tsx:521
msgid "Profile"
msgstr "Profil"
@@ -5126,7 +5280,7 @@ msgstr "Profil"
msgid "Profile updated"
msgstr "Profilen har uppdaterats"
-#: src/screens/Onboarding/StepFinished.tsx:246
+#: src/screens/Onboarding/StepFinished.tsx:253
msgid "Public"
msgstr "Offentlig"
@@ -5191,7 +5345,7 @@ msgstr "Citeringar av detta inlägg"
msgid "Random (aka \"Poster's Roulette\")"
msgstr "Slumpmässigt (även kallat författarroulette)"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:583
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:581
msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again."
msgstr "Anropsgränsen har överskridits. Du har försökt att ändra ditt användarnamn för många gånger under en kort period. Vänta någon minut innan du försöker igen."
@@ -5204,6 +5358,14 @@ msgstr "Sätt tillbaka citat"
msgid "Reactivate your account"
msgstr "Återaktivera ditt konto"
+#: src/screens/VideoFeed/index.tsx:932
+msgid "Read less"
+msgstr "Visa mindre"
+
+#: src/screens/VideoFeed/index.tsx:932
+msgid "Read more"
+msgstr "Visa mer"
+
#: src/view/com/auth/SplashScreen.web.tsx:171
msgid "Read the Bluesky blog"
msgstr "Läs Bluesky-bloggen"
@@ -5218,11 +5380,16 @@ msgstr "Läs Blueskys integritetspolicy"
msgid "Read the Bluesky Terms of Service"
msgstr "Läs Blueskys användarvillkor"
-#: src/components/dms/ReportDialog.tsx:169
+#: src/screens/Takendown.tsx:162
+#: src/screens/Takendown.tsx:170
+msgid "Reason for appeal"
+msgstr "Skäl för omprövningsbegäran"
+
+#: src/components/dms/ReportDialog.tsx:210
msgid "Reason:"
msgstr "Anledning:"
-#: src/view/screens/Search/Search.tsx:1042
+#: src/view/screens/Search/Search.tsx:1034
msgid "Recent Searches"
msgstr "Senaste sökningar"
@@ -5234,7 +5401,7 @@ msgstr "Rekommenderat"
msgid "Reconnect"
msgstr "Återanslut"
-#: src/screens/Messages/ChatList.tsx:163
+#: src/screens/Messages/ChatList.tsx:171
msgid "Reload conversations"
msgstr "Ladda om konversationer"
@@ -5242,7 +5409,7 @@ msgstr "Ladda om konversationer"
#: src/components/FeedCard.tsx:315
#: src/components/StarterPack/Wizard/WizardListCard.tsx:101
#: src/components/StarterPack/Wizard/WizardListCard.tsx:108
-#: src/screens/Settings/Settings.tsx:466
+#: src/screens/Settings/Settings.tsx:468
#: src/view/com/feeds/FeedSourceCard.tsx:322
#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/UserAddRemoveLists.tsx:235
@@ -5254,8 +5421,8 @@ msgstr "Ta bort"
msgid "Remove {displayName} from starter pack"
msgstr "Ta bort {displayName} från startpaketet"
-#: src/screens/Settings/Settings.tsx:445
-#: src/screens/Settings/Settings.tsx:448
+#: src/screens/Settings/Settings.tsx:447
+#: src/screens/Settings/Settings.tsx:450
msgid "Remove account"
msgstr "Ta bort konto"
@@ -5263,7 +5430,7 @@ msgstr "Ta bort konto"
msgid "Remove attachment"
msgstr "Ta bort bilaga"
-#: src/view/com/util/UserAvatar.tsx:403
+#: src/view/com/util/UserAvatar.tsx:404
msgid "Remove Avatar"
msgstr "Ta bort avatar"
@@ -5299,7 +5466,7 @@ msgstr "Ta bort från mina flöden"
msgid "Remove from my feeds?"
msgstr "Ta bort från mina flöden?"
-#: src/screens/Settings/Settings.tsx:458
+#: src/screens/Settings/Settings.tsx:460
msgid "Remove from quick access?"
msgstr "Ta bort från snabbåtkomst?"
@@ -5315,11 +5482,11 @@ msgstr "Ta bort bild"
msgid "Remove mute word from your list"
msgstr "Ta bort ignorerat ord från din lista"
-#: src/view/screens/Search/Search.tsx:1090
+#: src/view/screens/Search/Search.tsx:1082
msgid "Remove profile"
msgstr "Ta bort profil"
-#: src/view/screens/Search/Search.tsx:1092
+#: src/view/screens/Search/Search.tsx:1084
msgid "Remove profile from search history"
msgstr "Ta bort profil från sökhistoriken"
@@ -5377,7 +5544,7 @@ msgstr "Tar bort citerat inlägg"
msgid "Replace with Discover"
msgstr "Ersätt med Upptäck"
-#: src/view/screens/Profile.tsx:232
+#: src/view/screens/Profile.tsx:234
msgid "Replies"
msgstr "Svar"
@@ -5389,7 +5556,7 @@ msgstr "Svar inaktiverade"
msgid "Replies to this post are disabled."
msgstr "Svar är inaktiverat för det här inlägget."
-#: src/view/com/composer/Composer.tsx:940
+#: src/view/com/composer/Composer.tsx:947
msgctxt "action"
msgid "Reply"
msgstr "Svara"
@@ -5461,8 +5628,8 @@ msgstr "Anmäl"
msgid "Report Account"
msgstr "Anmäl konto"
-#: src/components/dms/ConvoMenu.tsx:197
#: src/components/dms/ConvoMenu.tsx:200
+#: src/components/dms/ConvoMenu.tsx:203
#: src/components/dms/ReportConversationPrompt.tsx:17
msgid "Report conversation"
msgstr "Anmäl konversation"
@@ -5494,33 +5661,37 @@ msgstr "Anmäl inlägg"
msgid "Report starter pack"
msgstr "Anmäl startpaket"
-#: src/components/ReportDialog/SelectReportOptionView.tsx:43
+#: src/components/dms/ReportDialog.tsx:336
+msgid "Report submitted"
+msgstr "Anmälan skickad"
+
+#: src/components/ReportDialog/SelectReportOptionView.tsx:41
msgid "Report this content"
msgstr "Anmäl det här innehållet"
-#: src/components/ReportDialog/SelectReportOptionView.tsx:56
+#: src/components/ReportDialog/SelectReportOptionView.tsx:54
msgid "Report this feed"
msgstr "Anmäl det här flödet"
-#: src/components/ReportDialog/SelectReportOptionView.tsx:53
+#: src/components/ReportDialog/SelectReportOptionView.tsx:51
msgid "Report this list"
msgstr "Anmäl den här listan"
-#: src/components/dms/ReportDialog.tsx:44
-#: src/components/dms/ReportDialog.tsx:137
-#: src/components/ReportDialog/SelectReportOptionView.tsx:62
+#: src/components/dms/ReportDialog.tsx:58
+#: src/components/dms/ReportDialog.tsx:178
+#: src/components/ReportDialog/SelectReportOptionView.tsx:60
msgid "Report this message"
msgstr "Anmäl det här meddelandet"
-#: src/components/ReportDialog/SelectReportOptionView.tsx:50
+#: src/components/ReportDialog/SelectReportOptionView.tsx:48
msgid "Report this post"
msgstr "Anmäl det här inlägget"
-#: src/components/ReportDialog/SelectReportOptionView.tsx:59
+#: src/components/ReportDialog/SelectReportOptionView.tsx:57
msgid "Report this starter pack"
msgstr "Anmäl det här startpaketet"
-#: src/components/ReportDialog/SelectReportOptionView.tsx:47
+#: src/components/ReportDialog/SelectReportOptionView.tsx:45
msgid "Report this user"
msgstr "Anmäl den här användaren"
@@ -5586,7 +5757,7 @@ msgstr "Kräv alternativtext innan publicering"
msgid "Require an email code to log in to your account."
msgstr "Kräv en en kod som skickas via e-post för att logga in på dit konto."
-#: src/screens/Signup/StepInfo/index.tsx:159
+#: src/screens/Signup/StepInfo/index.tsx:153
msgid "Required for this provider"
msgstr "Obligatoriskt för den här leverantören"
@@ -5617,8 +5788,8 @@ msgstr "Återställningskod"
msgid "Reset Code"
msgstr "Återställningskod"
-#: src/screens/Settings/Settings.tsx:343
-#: src/screens/Settings/Settings.tsx:345
+#: src/screens/Settings/Settings.tsx:344
+#: src/screens/Settings/Settings.tsx:346
msgid "Reset onboarding state"
msgstr "Återställ status för kom-igång-guide"
@@ -5626,7 +5797,7 @@ msgstr "Återställ status för kom-igång-guide"
msgid "Reset password"
msgstr "Återställ lösenord"
-#: src/screens/Login/LoginForm.tsx:306
+#: src/screens/Login/LoginForm.tsx:314
msgid "Retries login"
msgstr "Försöker logga in på nytt"
@@ -5637,11 +5808,11 @@ msgstr "Försöker igen med den senaste misslyckade åtgärden"
#: src/components/dms/MessageItem.tsx:245
#: src/components/Error.tsx:65
-#: src/components/Lists.tsx:104
-#: src/components/StarterPack/ProfileStarterPacks.tsx:336
-#: src/screens/Login/LoginForm.tsx:305
-#: src/screens/Login/LoginForm.tsx:312
-#: src/screens/Messages/ChatList.tsx:169
+#: src/components/Lists.tsx:110
+#: src/components/StarterPack/ProfileStarterPacks.tsx:335
+#: src/screens/Login/LoginForm.tsx:313
+#: src/screens/Login/LoginForm.tsx:320
+#: src/screens/Messages/ChatList.tsx:177
#: src/screens/Messages/components/MessageListError.tsx:25
#: src/screens/Onboarding/StepInterests/index.tsx:217
#: src/screens/Onboarding/StepInterests/index.tsx:220
@@ -5664,7 +5835,8 @@ msgstr "Gå tillbaka till föregående sida"
msgid "Returns to home page"
msgstr "Går tillbaka till startsidan"
-#: src/screens/Profile/ProfileFeed/index.tsx:83
+#: src/screens/Profile/ProfileFeed/index.tsx:90
+#: src/screens/VideoFeed/index.tsx:1099
#: src/view/screens/NotFound.tsx:60
msgid "Returns to previous page"
msgstr "Går tillbaka till föregående sida"
@@ -5675,7 +5847,7 @@ msgstr "Går tillbaka till föregående sida"
#: src/components/StarterPack/QrCodeDialog.tsx:185
#: src/screens/Profile/Header/EditProfileDialog.tsx:238
#: src/screens/Profile/Header/EditProfileDialog.tsx:252
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:245
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:243
#: src/view/com/composer/GifAltText.tsx:190
#: src/view/com/composer/GifAltText.tsx:199
#: src/view/com/composer/photos/EditImageDialog.web.tsx:77
@@ -5716,7 +5888,7 @@ msgstr "Spara bild"
msgid "Save image crop"
msgstr "Spara bildbeskärning"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:231
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:229
msgid "Save new handle"
msgstr "Spara nytt användarnamn"
@@ -5769,12 +5941,12 @@ msgstr "Gå till toppen"
#: src/components/dms/dialogs/SearchablePeopleList.tsx:487
#: src/components/forms/SearchInput.tsx:34
#: src/components/forms/SearchInput.tsx:36
-#: src/Navigation.tsx:599
+#: src/Navigation.tsx:608
#: src/view/com/modals/ListAddRemoveUsers.tsx:76
-#: src/view/screens/Search/Search.tsx:578
-#: src/view/shell/bottom-bar/BottomBar.tsx:183
-#: src/view/shell/desktop/LeftNav.tsx:407
-#: src/view/shell/Drawer.tsx:365
+#: src/view/screens/Search/Search.tsx:570
+#: src/view/shell/bottom-bar/BottomBar.tsx:182
+#: src/view/shell/desktop/LeftNav.tsx:602
+#: src/view/shell/Drawer.tsx:370
msgid "Search"
msgstr "Sök"
@@ -5794,7 +5966,7 @@ msgstr "Sök efter \"{interestsDisplayName}\"{activeText}"
msgid "Search for \"{query}\""
msgstr "Sök efter ”{query}”"
-#: src/view/screens/Search/Search.tsx:988
+#: src/view/screens/Search/Search.tsx:980
msgid "Search for \"{searchText}\""
msgstr "Sök efter ”{searchText}”"
@@ -5825,21 +5997,33 @@ msgstr "Sök i Tenor"
msgid "Security Step Required"
msgstr "Säkerhetssteg krävs"
-#: src/components/TagMenu/index.web.tsx:77
-msgid "See {truncatedTag} posts"
-msgstr "Se {truncatedTag}-inlägg"
+#: src/components/RichTextTag.tsx:111
+msgid "See {tag} posts"
+msgstr "Se {tag}-inlägg"
-#: src/components/TagMenu/index.web.tsx:94
-msgid "See {truncatedTag} posts by user"
-msgstr "Se {truncatedTag}-inlägg av användaren"
+#: src/components/RichTextTag.tsx:124
+msgid "See {tag} posts by user"
+msgstr "Se {tag}-inlägg av användare"
-#: src/components/TagMenu/index.tsx:155
-msgid "See <0>{displayTag}0> posts"
-msgstr "Se <0>{displayTag}0>-inlägg"
+#~ msgid "See {truncatedTag} posts"
+#~ msgstr "Se {truncatedTag}-inlägg"
-#: src/components/TagMenu/index.tsx:203
-msgid "See <0>{displayTag}0> posts by this user"
-msgstr "Se <0>{displayTag}0>-inlägg av den här användaren"
+#~ msgid "See {truncatedTag} posts by user"
+#~ msgstr "Se {truncatedTag}-inlägg av användaren"
+
+#: src/components/RichTextTag.tsx:118
+msgid "See #{tag} posts"
+msgstr "Se #{tag}-inlägg"
+
+#: src/components/RichTextTag.tsx:132
+msgid "See #{tag} posts by user"
+msgstr "Se #{tag}-inlägg av användare"
+
+#~ msgid "See <0>{displayTag}0> posts"
+#~ msgstr "Se <0>{displayTag}0>-inlägg"
+
+#~ msgid "See <0>{displayTag}0> posts by this user"
+#~ msgstr "Se <0>{displayTag}0>-inlägg av den här användaren"
#: src/view/com/auth/SplashScreen.web.tsx:176
msgid "See jobs at Bluesky"
@@ -5909,13 +6093,12 @@ msgstr "Välj undertextfil (.vtt)"
msgid "Select the {emojiName} emoji as your avatar"
msgstr "Välj emojin {emojiName} som din avatar"
-#: src/components/ReportDialog/SubmitView.tsx:140
+#: src/components/ReportDialog/SubmitView.tsx:141
msgid "Select the moderation service(s) to report to"
msgstr "Välj den eller de modereringstjänster som du vill skicka din anmälan till"
-#: src/view/com/auth/server-input/index.tsx:79
-msgid "Select the service that hosts your data."
-msgstr "Välj den tjänst som är värd för din data."
+#~ msgid "Select the service that hosts your data."
+#~ msgstr "Välj den tjänst som är värd för din data."
#: src/view/com/composer/videos/SelectVideoBtn.tsx:100
msgid "Select video"
@@ -5933,7 +6116,7 @@ msgstr "Välj vilka språk som du vill att de flöden du prenumererar på ska in
msgid "Select your app language for the default text to display in the app."
msgstr "Välj det språk som du vill ska användas för appens användargränssnitt."
-#: src/screens/Signup/StepInfo/index.tsx:223
+#: src/screens/Signup/StepInfo/index.tsx:217
msgid "Select your date of birth"
msgstr "Välj ditt födelsedatum"
@@ -5971,7 +6154,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "Skicka e-postmeddelande"
-#: src/view/shell/Drawer.tsx:312
+#: src/view/shell/Drawer.tsx:317
msgid "Send feedback"
msgstr "Skicka feedback"
@@ -5984,10 +6167,10 @@ msgstr "Skicka meddelande"
msgid "Send post to..."
msgstr "Skicka inlägg till…"
-#: src/components/dms/ReportDialog.tsx:229
-#: src/components/dms/ReportDialog.tsx:232
-#: src/components/ReportDialog/SubmitView.tsx:220
-#: src/components/ReportDialog/SubmitView.tsx:224
+#: src/components/dms/ReportDialog.tsx:269
+#: src/components/dms/ReportDialog.tsx:272
+#: src/components/ReportDialog/SubmitView.tsx:221
+#: src/components/ReportDialog/SubmitView.tsx:225
msgid "Send report"
msgstr "Skicka anmälan"
@@ -6009,7 +6192,7 @@ msgstr "Skicka via direktmeddelande"
msgid "Sends email with confirmation code for account deletion"
msgstr "Skickar e-postmeddelande med bekräftelsekod för kontoborttagning"
-#: src/view/com/auth/server-input/index.tsx:111
+#: src/view/com/auth/server-input/index.tsx:127
msgid "Server address"
msgstr "Serveradress"
@@ -6021,7 +6204,7 @@ msgstr "Ställ in appikon till {0}"
msgid "Set birthdate"
msgstr "Ange födelsedatum"
-#: src/screens/Login/SetNewPasswordForm.tsx:96
+#: src/screens/Login/SetNewPasswordForm.tsx:102
msgid "Set new password"
msgstr "Ange nytt lösenord"
@@ -6033,10 +6216,10 @@ msgstr "Konfigurera ditt konto"
msgid "Sets email for password reset"
msgstr "Ställer in e-postadress för återställning av lösenord"
-#: src/Navigation.tsx:160
+#: src/Navigation.tsx:161
#: src/screens/Settings/Settings.tsx:80
-#: src/view/shell/desktop/LeftNav.tsx:499
-#: src/view/shell/Drawer.tsx:529
+#: src/view/shell/desktop/LeftNav.tsx:694
+#: src/view/shell/Drawer.tsx:534
msgid "Settings"
msgstr "Inställningar"
@@ -6117,7 +6300,7 @@ msgstr "Dela det här startpaketet och hjälp andra att gå med i din gemenskap
msgid "Share your favorite feed!"
msgstr "Dela ditt favoritflöde!"
-#: src/Navigation.tsx:256
+#: src/Navigation.tsx:257
msgid "Shared Preferences Tester"
msgstr "Testare för delade inställningar"
@@ -6138,6 +6321,8 @@ msgstr "Visa alternativtext"
#: src/components/moderation/ScreenHider.tsx:172
#: src/components/moderation/ScreenHider.tsx:175
#: src/screens/List/ListHiddenScreen.tsx:187
+#: src/screens/VideoFeed/index.tsx:609
+#: src/screens/VideoFeed/index.tsx:615
msgid "Show anyway"
msgstr "Visa ändå"
@@ -6240,17 +6425,15 @@ msgstr "Visa varning och filtrera från flöden"
#: src/components/dialogs/Signin.tsx:99
#: src/screens/Login/index.tsx:97
#: src/screens/Login/index.tsx:116
-#: src/screens/Login/LoginForm.tsx:165
+#: src/screens/Login/LoginForm.tsx:173
#: src/view/com/auth/SplashScreen.tsx:61
#: src/view/com/auth/SplashScreen.tsx:69
#: src/view/com/auth/SplashScreen.web.tsx:123
#: src/view/com/auth/SplashScreen.web.tsx:131
-#: src/view/shell/bottom-bar/BottomBar.tsx:316
-#: src/view/shell/bottom-bar/BottomBar.tsx:317
+#: src/view/shell/bottom-bar/BottomBar.tsx:314
#: src/view/shell/bottom-bar/BottomBar.tsx:319
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:212
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:213
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:215
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:217
#: src/view/shell/NavSignupCard.tsx:57
#: src/view/shell/NavSignupCard.tsx:62
msgid "Sign in"
@@ -6275,23 +6458,19 @@ msgstr "Logga in på Bluesky eller skapa ett nytt konto"
#: src/screens/Settings/Settings.tsx:225
#: src/screens/Settings/Settings.tsx:227
#: src/screens/Settings/Settings.tsx:259
+#: src/view/shell/desktop/LeftNav.tsx:208
+#: src/view/shell/desktop/LeftNav.tsx:288
+#: src/view/shell/desktop/LeftNav.tsx:291
msgid "Sign out"
msgstr "Logga ut"
#: src/screens/Settings/Settings.tsx:256
+#: src/view/shell/desktop/LeftNav.tsx:205
msgid "Sign out?"
msgstr "Logga ut?"
-#: src/view/shell/bottom-bar/BottomBar.tsx:306
-#: src/view/shell/bottom-bar/BottomBar.tsx:307
-#: src/view/shell/bottom-bar/BottomBar.tsx:309
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:202
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:203
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:205
-#: src/view/shell/NavSignupCard.tsx:47
-#: src/view/shell/NavSignupCard.tsx:52
-msgid "Sign up"
-msgstr "Registrera dig"
+#~ msgid "Sign up"
+#~ msgstr "Registrera dig"
#: src/components/moderation/ScreenHider.tsx:91
#: src/lib/moderation/useGlobalLabelStrings.ts:28
@@ -6330,7 +6509,7 @@ msgstr "Mindre"
msgid "Software Dev"
msgstr "Mjukvaruutveckling"
-#: src/components/FeedInterstitials.tsx:445
+#: src/components/FeedInterstitials.tsx:449
msgid "Some other feeds you might like"
msgstr "Några andra flöden som du kanske gillar"
@@ -6353,7 +6532,7 @@ msgstr "Något gick fel. Försök igen"
msgid "Something went wrong, please try again."
msgstr "Något gick fel. Försök igen."
-#: src/components/Lists.tsx:168
+#: src/components/Lists.tsx:174
#: src/screens/Settings/NotificationSettings.tsx:55
msgid "Something went wrong!"
msgstr "Något gick fel!"
@@ -6362,7 +6541,7 @@ msgstr "Något gick fel!"
msgid "Something wrong? Let us know."
msgstr "Är något på tok? Hör av dig till oss."
-#: src/App.native.tsx:122
+#: src/App.native.tsx:121
#: src/App.web.tsx:97
msgid "Sorry! Your session expired. Please log in again."
msgstr "Beklagar! Din session har löpt ut. Vänligen logga in igen."
@@ -6415,8 +6594,8 @@ msgstr "Börja med att lägga till personer!"
msgid "Start chat with {displayName}"
msgstr "Starta chatt med {displayName}"
-#: src/Navigation.tsx:408
-#: src/Navigation.tsx:413
+#: src/Navigation.tsx:409
+#: src/Navigation.tsx:414
#: src/screens/StarterPack/Wizard/index.tsx:186
msgid "Starter Pack"
msgstr "Startpaket"
@@ -6438,11 +6617,11 @@ msgstr "Startpaket av dig"
msgid "Starter pack is invalid"
msgstr "Startpaketet är ogiltigt"
-#: src/view/screens/Profile.tsx:236
+#: src/view/screens/Profile.tsx:239
msgid "Starter Packs"
msgstr "Startpaket"
-#: src/components/StarterPack/ProfileStarterPacks.tsx:244
+#: src/components/StarterPack/ProfileStarterPacks.tsx:243
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "Med startpaket kan du enkelt dela dina favoritflöden och personer med dina vänner."
@@ -6455,12 +6634,12 @@ msgstr "Driftinformation"
msgid "Step {0} of {1}"
msgstr "Steg {0} av {1}"
-#: src/screens/Settings/Settings.tsx:308
+#: src/screens/Settings/Settings.tsx:309
msgid "Storage cleared, you need to restart the app now."
msgstr "Datan har rensats. Starta om appen nu."
-#: src/Navigation.tsx:246
-#: src/screens/Settings/Settings.tsx:324
+#: src/Navigation.tsx:247
+#: src/screens/Settings/Settings.tsx:325
msgid "Storybook"
msgstr "Storybook"
@@ -6471,6 +6650,14 @@ msgstr "Storybook"
msgid "Submit"
msgstr "Skicka"
+#: src/screens/Takendown.tsx:70
+msgid "Submit appeal"
+msgstr "Skicka omprövningsbegäran"
+
+#: src/screens/Takendown.tsx:76
+msgid "Submit Appeal"
+msgstr "Skicka omprövningsbegäran"
+
#: src/view/screens/ProfileList.tsx:712
msgid "Subscribe"
msgstr "Prenumerera"
@@ -6495,7 +6682,7 @@ msgstr "Prenumerera på den här listan"
msgid "Success!"
msgstr "Klart!"
-#: src/view/screens/Search/Explore.tsx:353
+#: src/view/screens/Search/Explore.tsx:366
msgid "Suggested accounts"
msgstr "Föreslagna konton"
@@ -6508,7 +6695,7 @@ msgstr "Föreslaget åt dig"
msgid "Suggestive"
msgstr "Suggestivt"
-#: src/Navigation.tsx:266
+#: src/Navigation.tsx:267
#: src/view/screens/Support.tsx:31
#: src/view/screens/Support.tsx:34
msgid "Support"
@@ -6516,7 +6703,8 @@ msgstr "Support"
#: src/screens/Settings/Settings.tsx:102
#: src/screens/Settings/Settings.tsx:116
-#: src/screens/Settings/Settings.tsx:411
+#: src/screens/Settings/Settings.tsx:412
+#: src/view/shell/desktop/LeftNav.tsx:243
msgid "Switch account"
msgstr "Växla konto"
@@ -6525,6 +6713,14 @@ msgstr "Växla konto"
msgid "Switch Account"
msgstr "Växla konto"
+#: src/view/shell/desktop/LeftNav.tsx:107
+msgid "Switch accounts"
+msgstr "Växla mellan konton"
+
+#: src/view/shell/desktop/LeftNav.tsx:251
+msgid "Switch to {0}"
+msgstr "Växla till {0}"
+
#: src/screens/Settings/AppearanceSettings.tsx:97
#: src/screens/Settings/AppearanceSettings.tsx:147
msgid "System"
@@ -6532,13 +6728,12 @@ msgstr "System"
#: src/screens/Settings/AboutSettings.tsx:60
#: src/screens/Settings/AboutSettings.tsx:63
-#: src/screens/Settings/Settings.tsx:317
+#: src/screens/Settings/Settings.tsx:318
msgid "System log"
msgstr "Systemlogg"
-#: src/components/TagMenu/index.tsx:110
-msgid "Tag menu: {displayTag}"
-msgstr "Taggmeny: {displayTag}"
+#~ msgid "Tag menu: {displayTag}"
+#~ msgstr "Taggmeny: {displayTag}"
#: src/components/dialogs/MutedWords.tsx:282
msgid "Tags only"
@@ -6561,6 +6756,10 @@ msgstr "Tryck för att avfärda"
msgid "Tap to enter full screen"
msgstr "Tryck för att gå till helskärmsläge"
+#: src/screens/VideoFeed/index.tsx:931
+msgid "Tap to expand or collapse post text."
+msgstr "Tryck för att fälla ut eller ihop inläggstext."
+
#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141
msgid "Tap to play or pause"
msgstr "Tryck för att spela eller pausa"
@@ -6574,6 +6773,10 @@ msgstr "Tryck för att växla mellan ljud av/på"
msgid "Tap to view full image"
msgstr "Tryck för att visa hela bilden"
+#: src/components/VideoPostCard.tsx:115
+msgid "Tap to view video in immersive mode."
+msgstr "Tryck för att visa videoklipp i uppslukande läge."
+
#: src/state/shell/progress-guide.tsx:233
msgid "Task complete - 10 follows!"
msgstr "Uppgiften slutförd - Du följer 10 stycken!"
@@ -6608,12 +6811,12 @@ msgstr "Berätta lite mer"
msgid "Terms"
msgstr "Villkor"
-#: src/Navigation.tsx:276
+#: src/Navigation.tsx:277
#: src/screens/Settings/AboutSettings.tsx:37
#: src/screens/Settings/AboutSettings.tsx:40
#: src/view/screens/TermsOfService.tsx:31
-#: src/view/shell/Drawer.tsx:617
-#: src/view/shell/Drawer.tsx:619
+#: src/view/shell/Drawer.tsx:622
+#: src/view/shell/Drawer.tsx:624
msgid "Terms of Service"
msgstr "Användarvillkor"
@@ -6628,6 +6831,10 @@ msgstr "Termer som används bryter mot gemenskapens riktlinjer"
msgid "Text & tags"
msgstr "Textinnehåll och taggar"
+#: src/components/dms/ReportDialog.tsx:227
+msgid "Text field"
+msgstr "Textfält"
+
#: src/components/moderation/LabelsOnMeDialog.tsx:263
#: src/screens/Messages/components/ChatDisabled.tsx:108
msgid "Text input field"
@@ -6637,8 +6844,7 @@ msgstr "Textinmatningsfält"
msgid "Thank you! Your email has been successfully verified."
msgstr "Tack! Din e-post har verifierats utan problem."
-#: src/components/dms/ReportDialog.tsx:129
-#: src/components/ReportDialog/SubmitView.tsx:82
+#: src/components/ReportDialog/SubmitView.tsx:83
msgid "Thank you. Your report has been sent."
msgstr "Tack. Din anmälan har skickats."
@@ -6646,11 +6852,11 @@ msgstr "Tack. Din anmälan har skickats."
msgid "Thanks, you have successfully verified your email address. You can close this dialog."
msgstr "Tack. Din e-postadress har verifierats utan problem. Du kan stänga den här dialogrutan."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:470
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:468
msgid "That contains the following:"
msgstr "Som innehåller följande:"
-#: src/screens/Signup/StepHandle.tsx:51
+#: src/screens/Signup/StepHandle.tsx:55
msgid "That handle is already taken."
msgstr "Det användarnamnet används redan av en annan."
@@ -6667,6 +6873,10 @@ msgstr "Det startpaketet kunde inte hittas."
msgid "That's all, folks!"
msgstr "Det var allt!"
+#: src/screens/VideoFeed/index.tsx:1071
+msgid "That's everything!"
+msgstr "Det var allt!"
+
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:279
#: src/view/com/profile/ProfileMenu.tsx:329
msgid "The account will be able to interact with you after unblocking."
@@ -6788,7 +6998,7 @@ msgstr "Ett problem uppstod med anslutningen till din server"
msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "Ett problem uppstod med att hämta notiser. Tryck här för att försöka igen."
-#: src/view/com/posts/PostFeed.tsx:486
+#: src/view/com/posts/PostFeed.tsx:592
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "Ett problem uppstod med att hämta inlägg. Tryck här för att försöka igen."
@@ -6813,8 +7023,8 @@ msgstr "Ett problem uppstod med att hämta din serviceinformation"
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr "Ett problem uppstod med att ta bort det här flödet. Kontrollera din internetanslutning och försök igen."
-#: src/components/dms/ReportDialog.tsx:217
-#: src/components/ReportDialog/SubmitView.tsx:87
+#: src/components/dms/ReportDialog.tsx:257
+#: src/components/ReportDialog/SubmitView.tsx:88
msgid "There was an issue sending your report. Please check your internet connection."
msgstr "Ett problem uppstod med att skicka din anmälan. Kontrollera din internetanslutning och försök igen."
@@ -6855,7 +7065,7 @@ msgstr "Ett problem uppstod! Kontrollera din internetanslutning och försök ige
msgid "There was an unexpected issue in the application. Please let us know if this happened to you!"
msgstr "Ett oväntat problem uppstod i applikationen. Låt oss veta om det drabbade dig!"
-#: src/screens/SignupQueued.tsx:115
+#: src/screens/SignupQueued.tsx:130
msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can."
msgstr "Det har varit en rusning av nya användare till Bluesky! Vi kommer att aktivera ditt konto så snart vi kan."
@@ -6908,7 +7118,7 @@ msgstr "Det här innehållet är inte tillgängligt eftersom en av de involverad
msgid "This content is not viewable without a Bluesky account."
msgstr "Det här innehållet kan inte visas utan ett Bluesky-konto."
-#: src/screens/Messages/components/ChatListItem.tsx:266
+#: src/screens/Messages/components/ChatListItem.tsx:276
msgid "This conversation is with a deleted or a deactivated account. Press for options."
msgstr "Den här konversationen gäller ett borttaget eller avaktiverat konto. Tryck för att se alternativ."
@@ -6929,7 +7139,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua
msgstr "Det här flödet är tomt! Du kanske borde följa fler användare eller justera dina språkinställningar."
#: src/components/StarterPack/Main/PostsList.tsx:36
-#: src/screens/Profile/ProfileFeed/index.tsx:170
+#: src/screens/Profile/ProfileFeed/index.tsx:189
#: src/view/screens/ProfileList.tsx:814
msgid "This feed is empty."
msgstr "Det här flödet är tomt."
@@ -6938,7 +7148,7 @@ msgstr "Det här flödet är tomt."
msgid "This feed is no longer online. We are showing <0>Discover0> instead."
msgstr "Det här flödet är inte längre online. Vi visar Upptäck-flödet istället."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:576
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:574
msgid "This handle is reserved. Please try a different one."
msgstr "Det här användarnamnet är reserverat. Försök med ett annat."
@@ -6984,7 +7194,7 @@ msgstr "Den här modereringstjänsten är inte tillgänglig. Se nedan för mer i
#: src/view/com/post-thread/PostThreadItem.tsx:845
msgid "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
-msgstr "Det här inlägget påstås ha skapats den <0>{0}0>, men sågs inte på Bluesky förrän den <1>{1}1>."
+msgstr "Det här inlägget har <0>{0}0> som angivet skapelsedatum, men registrerades på Bluesky först den <1>{1}1>."
#: src/view/com/post-thread/PostThreadItem.tsx:152
msgid "This post has been deleted."
@@ -6999,7 +7209,7 @@ msgstr "Det här inlägget är syns bara för inloggade användare. Det kommer i
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "Det här inlägget kommer att hållas dolt från flöden och trådar. Det här kan inte ångras."
-#: src/view/com/composer/Composer.tsx:413
+#: src/view/com/composer/Composer.tsx:420
msgid "This post's author has disabled quote posts."
msgstr "Författaren till det här inlägget har inaktiverat citeringar."
@@ -7015,7 +7225,7 @@ msgstr "Det här svaret kommer att sorteras in i en dold sektion längst ner i t
msgid "This service has not provided terms of service or a privacy policy."
msgstr "Den här tjänsten har inte tillhandahållit några användarvillkor eller någon integritetspolicy."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:439
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:437
msgid "This should create a domain record at:"
msgstr "Det här ska skapa en domänpost på:"
@@ -7056,7 +7266,7 @@ msgstr "Den här användaren följer inte någon."
msgid "This will delete \"{0}\" from your muted words. You can always add it back later."
msgstr "Detta tar bort “{0}“ från dina tysta ord. Du kan alltid lägga till det igen senare."
-#: src/screens/Settings/Settings.tsx:460
+#: src/screens/Settings/Settings.tsx:462
msgid "This will remove @{0} from the quick access list."
msgstr "Det här tar bort @{0} från snabbåtkomstlistan."
@@ -7069,8 +7279,8 @@ msgstr "Det här tar bort ditt inlägg från citatinlägget för alla användare
msgid "Thread options"
msgstr "Trådalternativ"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:66
-#: src/screens/Settings/ContentAndMediaSettings.tsx:69
+#: src/screens/Settings/ContentAndMediaSettings.tsx:67
+#: src/screens/Settings/ContentAndMediaSettings.tsx:70
msgid "Thread preferences"
msgstr "Trådinställningar"
@@ -7087,7 +7297,7 @@ msgstr "Trådat"
msgid "Threaded mode"
msgstr "Trådat läge"
-#: src/Navigation.tsx:309
+#: src/Navigation.tsx:310
msgid "Threads Preferences"
msgstr "Trådinställningar"
@@ -7125,11 +7335,11 @@ msgstr "Växla mellan att tillåta eller inaktivera vuxet innehåll"
#: src/screens/Hashtag.tsx:84
#: src/screens/Topic.tsx:71
-#: src/view/screens/Search/Search.tsx:500
+#: src/view/screens/Search/Search.tsx:496
msgid "Top"
msgstr "Topp"
-#: src/Navigation.tsx:383
+#: src/Navigation.tsx:384
msgid "Topic"
msgstr "Ämne"
@@ -7147,6 +7357,11 @@ msgstr "Översätt"
msgid "Trending"
msgstr "Trendar"
+#: src/components/interstitials/TrendingVideos.tsx:88
+#: src/screens/Search/components/ExploreTrendingVideos.tsx:106
+msgid "Trending Videos"
+msgstr "Trendande videoklipp"
+
#: src/view/com/util/error/ErrorScreen.tsx:103
msgctxt "action"
msgid "Try again"
@@ -7160,7 +7375,7 @@ msgstr "TV"
msgid "Two-factor authentication (2FA)"
msgstr "Tvåfaktorsautentisering (2FA)"
-#: src/screens/Signup/StepHandle.tsx:114
+#: src/screens/Signup/StepHandle.tsx:118
msgid "Type your desired username"
msgstr "Skriv in ditt önskade användarnamn"
@@ -7168,7 +7383,7 @@ msgstr "Skriv in ditt önskade användarnamn"
msgid "Type your message here"
msgstr "Skriv ditt meddelande här"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:415
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:413
msgid "Type:"
msgstr "Typ:"
@@ -7186,8 +7401,8 @@ msgstr "Det gick inte att ansluta. Kontrollera din internetanslutning och förs
#: src/screens/Login/ForgotPasswordForm.tsx:68
#: src/screens/Login/index.tsx:76
-#: src/screens/Login/LoginForm.tsx:154
-#: src/screens/Login/SetNewPasswordForm.tsx:71
+#: src/screens/Login/LoginForm.tsx:162
+#: src/screens/Login/SetNewPasswordForm.tsx:77
#: src/screens/Signup/index.tsx:71
#: src/view/com/modals/ChangePassword.tsx:71
msgid "Unable to contact your service. Please check your Internet connection."
@@ -7213,8 +7428,8 @@ msgctxt "action"
msgid "Unblock"
msgstr "Häv blockering"
-#: src/components/dms/ConvoMenu.tsx:188
-#: src/components/dms/ConvoMenu.tsx:192
+#: src/components/dms/ConvoMenu.tsx:191
+#: src/components/dms/ConvoMenu.tsx:195
msgid "Unblock account"
msgstr "Häv blockering av konto"
@@ -7251,6 +7466,10 @@ msgstr "Sluta följ {0}"
msgid "Unfollow Account"
msgstr "Sluta följ konto"
+#: src/screens/VideoFeed/index.tsx:801
+msgid "Unfollow user"
+msgstr "Sluta följ användare"
+
#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
msgid "Unlike"
msgstr "Sluta gilla"
@@ -7259,31 +7478,33 @@ msgstr "Sluta gilla"
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Ta bort gillamarkering ({0, plural, one {# gillamarkering} other {# gillamarkeringar}})"
-#: src/components/TagMenu/index.tsx:264
-#: src/view/screens/ProfileList.tsx:701
-msgid "Unmute"
-msgstr "Sätt på ljud"
-
#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:155
#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94
msgctxt "video"
msgid "Unmute"
msgstr "Sätt på ljud"
-#: src/components/TagMenu/index.web.tsx:115
-msgid "Unmute {truncatedTag}"
-msgstr "Sluta ignorera {truncatedTag}"
+#: src/view/screens/ProfileList.tsx:701
+msgid "Unmute"
+msgstr "Sätt på ljud"
+
+#: src/components/RichTextTag.tsx:140
+#: src/components/RichTextTag.tsx:153
+msgid "Unmute {tag}"
+msgstr "Sluta ignorera {tag}"
+
+#~ msgid "Unmute {truncatedTag}"
+#~ msgstr "Sluta ignorera {truncatedTag}"
#: src/view/com/profile/ProfileMenu.tsx:258
#: src/view/com/profile/ProfileMenu.tsx:264
msgid "Unmute Account"
msgstr "Sluta ignorera konto"
-#: src/components/TagMenu/index.tsx:223
-msgid "Unmute all {displayTag} posts"
-msgstr "Sluta ignorera alla {displayTag}-inägg"
+#~ msgid "Unmute all {displayTag} posts"
+#~ msgstr "Sluta ignorera alla {displayTag}-inägg"
-#: src/components/dms/ConvoMenu.tsx:176
+#: src/components/dms/ConvoMenu.tsx:179
msgid "Unmute conversation"
msgstr "Sluta ignorera konversation"
@@ -7344,7 +7565,7 @@ msgstr "Sluta prenumerera på den här etikettsättaren"
msgid "Unsubscribed from list"
msgstr "Avslutade prenumeration på lista"
-#: src/view/com/composer/Composer.tsx:766
+#: src/view/com/composer/Composer.tsx:773
msgid "Unsupported video type"
msgstr "Videotypen stöds inte"
@@ -7361,8 +7582,8 @@ msgstr "Oönskat sexuellt innehåll"
msgid "Update <0>{displayName}0> in Lists"
msgstr "Uppdatera <0>{displayName}0> i Listor"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:509
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:530
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:507
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:528
msgid "Update to {domain}"
msgstr "Uppdatera till {domain}"
@@ -7374,7 +7595,7 @@ msgstr "Det gick inte att uppdatera citatets sammanlänkning"
msgid "Updating reply visibility failed"
msgstr "Det gick inte att uppdatera synlighet för svar"
-#: src/screens/Login/SetNewPasswordForm.tsx:180
+#: src/screens/Login/SetNewPasswordForm.tsx:186
msgid "Updating..."
msgstr "Uppdaterar…"
@@ -7382,39 +7603,39 @@ msgstr "Uppdaterar…"
msgid "Upload a photo instead"
msgstr "Ladda upp ett foto istället"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:455
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:453
msgid "Upload a text file to:"
msgstr "Ladda upp en textfil till:"
-#: src/view/com/util/UserAvatar.tsx:371
-#: src/view/com/util/UserAvatar.tsx:374
+#: src/view/com/util/UserAvatar.tsx:372
+#: src/view/com/util/UserAvatar.tsx:375
#: src/view/com/util/UserBanner.tsx:123
#: src/view/com/util/UserBanner.tsx:126
msgid "Upload from Camera"
msgstr "Ladda upp från Kamera"
-#: src/view/com/util/UserAvatar.tsx:388
+#: src/view/com/util/UserAvatar.tsx:389
#: src/view/com/util/UserBanner.tsx:140
msgid "Upload from Files"
msgstr "Ladda upp från Filer"
-#: src/view/com/util/UserAvatar.tsx:382
-#: src/view/com/util/UserAvatar.tsx:386
+#: src/view/com/util/UserAvatar.tsx:383
+#: src/view/com/util/UserAvatar.tsx:387
#: src/view/com/util/UserBanner.tsx:134
#: src/view/com/util/UserBanner.tsx:138
msgid "Upload from Library"
msgstr "Ladda upp från Bibliotek"
-#: src/lib/api/index.ts:296
+#: src/lib/api/index.ts:301
msgid "Uploading images..."
msgstr "Laddar upp bilder…"
-#: src/lib/api/index.ts:350
-#: src/lib/api/index.ts:374
+#: src/lib/api/index.ts:355
+#: src/lib/api/index.ts:379
msgid "Uploading link thumbnail..."
msgstr "Laddar upp miniatyrbild av länk…"
-#: src/view/com/composer/Composer.tsx:1638
+#: src/view/com/composer/Composer.tsx:1646
msgid "Uploading video..."
msgstr "Laddar upp video…"
@@ -7422,7 +7643,7 @@ msgstr "Laddar upp video…"
msgid "Use app passwords to sign in to other Bluesky clients without giving full access to your account or password."
msgstr "Använd applösenord för att logga in på andra Bluesky-klienter utan att ge full tillgång till ditt konto eller lösenord."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:541
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:539
msgid "Use default provider"
msgstr "Använd förvald leverantör"
@@ -7431,8 +7652,8 @@ msgstr "Använd förvald leverantör"
msgid "Use in-app browser"
msgstr "Använd appens inbyggda webbläsare"
-#: src/screens/Settings/ContentAndMediaSettings.tsx:92
-#: src/screens/Settings/ContentAndMediaSettings.tsx:98
+#: src/screens/Settings/ContentAndMediaSettings.tsx:93
+#: src/screens/Settings/ContentAndMediaSettings.tsx:99
msgid "Use in-app browser to open links"
msgstr "Öppna länkar i appens inbyggda webbläsare"
@@ -7494,7 +7715,7 @@ msgstr "Användarlista skapad"
msgid "User list updated"
msgstr "Användarlista uppdaterad"
-#: src/screens/Login/LoginForm.tsx:185
+#: src/screens/Login/LoginForm.tsx:193
msgid "Username or email address"
msgstr "Användarnamn eller e-postadress"
@@ -7515,7 +7736,7 @@ msgstr "Användare i ”{0}”"
msgid "Users that have liked this content or profile"
msgstr "Användare som har gillat detta innehåll eller denna profil"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:421
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:419
msgid "Value:"
msgstr "Värde:"
@@ -7523,8 +7744,8 @@ msgstr "Värde:"
msgid "Verified email required"
msgstr "Verifierad e-postadress krävs"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:511
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:532
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:509
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:530
msgid "Verify DNS Record"
msgstr "Verifiera DNS-post"
@@ -7542,8 +7763,8 @@ msgstr "Verifiera ny e-postadress"
msgid "Verify now"
msgstr "Verifiera nu"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:512
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:534
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:510
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:532
msgid "Verify Text File"
msgstr "Verifiera textfil"
@@ -7571,12 +7792,28 @@ msgstr "Videoklipp"
msgid "Video failed to process"
msgstr "Bearbetning av videoklipp misslyckades"
+#: src/Navigation.tsx:430
+msgid "Video Feed"
+msgstr "Videoflöde"
+
+#: src/components/VideoPostCard.tsx:116
+msgid "Video from {0}: {text}"
+msgstr "Videoklipp från {0}: {text}"
+
#: src/screens/Onboarding/index.tsx:39
#: src/screens/Onboarding/state.ts:103
msgid "Video Games"
msgstr "TV-spel"
-#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:169
+#: src/screens/VideoFeed/index.tsx:1029
+msgid "Video is paused"
+msgstr "Videoklippet är pausat"
+
+#: src/screens/VideoFeed/index.tsx:1029
+msgid "Video is playing"
+msgstr "Videklippet spelas upp"
+
+#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:191
msgid "Video not found."
msgstr "Videoklippet hittades inte."
@@ -7584,7 +7821,7 @@ msgstr "Videoklippet hittades inte."
msgid "Video settings"
msgstr "Inställningar för videoklipp"
-#: src/view/com/composer/Composer.tsx:1648
+#: src/view/com/composer/Composer.tsx:1656
msgid "Video uploaded"
msgstr "Videoklipp uppladdat"
@@ -7592,6 +7829,10 @@ msgstr "Videoklipp uppladdat"
msgid "Video: {0}"
msgstr "Videoklipp: {0}"
+#: src/view/screens/Profile.tsx:236
+msgid "Videos"
+msgstr "Videoklipp"
+
#: src/view/com/composer/videos/SelectVideoBtn.tsx:58
#: src/view/com/composer/videos/SelectVideoBtn.tsx:73
msgid "Videos must be less than 60 seconds long"
@@ -7603,21 +7844,20 @@ msgstr "Visa {0}s avatar"
#: src/components/ProfileCard.tsx:110
#: src/screens/Profile/components/ProfileFeedHeader.tsx:450
+#: src/screens/VideoFeed/index.tsx:762
#: src/view/com/notifications/NotificationFeedItem.tsx:409
msgid "View {0}'s profile"
msgstr "Visa {0}s profil"
-#: src/components/dms/MessagesListHeader.tsx:158
+#: src/components/dms/MessagesListHeader.tsx:167
msgid "View {displayName}'s profile"
msgstr "Visa {displayName}s profil"
-#: src/components/TagMenu/index.tsx:172
-msgid "View all posts by @{authorHandle} with tag {displayTag}"
-msgstr "Visa alla inlägg av @{authorHandle} med taggen {displayTag}"
+#~ msgid "View all posts by @{authorHandle} with tag {displayTag}"
+#~ msgstr "Visa alla inlägg av @{authorHandle} med taggen {displayTag}"
-#: src/components/TagMenu/index.tsx:126
-msgid "View all posts with tag {displayTag}"
-msgstr "Visa alla inlägg med taggen {displayTag}"
+#~ msgid "View all posts with tag {displayTag}"
+#~ msgstr "Visa alla inlägg med taggen {displayTag}"
#: src/components/ProfileHoverCard/index.web.tsx:433
msgid "View blocked user's profile"
@@ -7631,11 +7871,13 @@ msgstr "Se blogginlägget för mer information"
msgid "View debug entry"
msgstr "Visa loggpost"
-#: src/components/ReportDialog/SelectReportOptionView.tsx:139
+#: src/components/ReportDialog/SelectReportOptionView.tsx:137
+#: src/screens/VideoFeed/index.tsx:637
+#: src/screens/VideoFeed/index.tsx:655
msgid "View details"
msgstr "Visa detaljer"
-#: src/components/ReportDialog/SelectReportOptionView.tsx:134
+#: src/components/ReportDialog/SelectReportOptionView.tsx:132
msgid "View details for reporting a copyright violation"
msgstr "Visa detaljer angående anmälan av en upphovsrättsöverträdelse"
@@ -7647,6 +7889,13 @@ msgstr "Visa hela tråden"
msgid "View information about these labels"
msgstr "Visa information om de här etiketterna"
+#: src/components/interstitials/TrendingVideos.tsx:191
+#: src/components/interstitials/TrendingVideos.tsx:210
+#: src/screens/Search/components/ExploreTrendingVideos.tsx:231
+#: src/screens/Search/components/ExploreTrendingVideos.tsx:250
+msgid "View more"
+msgstr "Visa mer"
+
#: src/components/ProfileHoverCard/index.web.tsx:419
#: src/components/ProfileHoverCard/index.web.tsx:439
#: src/components/ProfileHoverCard/index.web.tsx:466
@@ -7669,6 +7918,10 @@ msgstr "Visa etiketteringstjänsten från @{0}"
msgid "View users who like this feed"
msgstr "Visa användare som gillar detta flöde"
+#: src/components/VideoPostCard.tsx:392
+msgid "View video"
+msgstr "Visa videoklipp"
+
#: src/screens/Moderation/index.tsx:248
msgid "View your blocked accounts"
msgstr "Visa de konton du har blockerat"
@@ -7721,7 +7974,7 @@ msgstr "Vi kunde inte hitta några resultat för det ämnet."
msgid "We couldn't load this conversation"
msgstr "Vi kunde inte läsa in den här konversationen"
-#: src/screens/SignupQueued.tsx:145
+#: src/screens/SignupQueued.tsx:160
msgid "We estimate {estimatedTime} until your account is ready."
msgstr "Vi beräknar att det tar {estimatedTime} tills ditt konto är klart."
@@ -7729,7 +7982,7 @@ msgstr "Vi beräknar att det tar {estimatedTime} tills ditt konto är klart."
msgid "We have sent another verification email to <0>{0}0>."
msgstr "Vi har skickat ett till verifieringsmeddelande till <0>{0}0>."
-#: src/screens/Onboarding/StepFinished.tsx:238
+#: src/screens/Onboarding/StepFinished.tsx:245
msgid "We hope you have a wonderful time. Remember, Bluesky is:"
msgstr "Vi hoppas du får en underbar tid hos oss. Kom ihåg, Bluesky är:"
@@ -7753,7 +8006,7 @@ msgstr "Vi kunde inte läsa in dina konfigurerade etikettsättare just nu."
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 "Vi kunde inte ansluta. Försök igen för att fortsätta konfigurera ditt konto. Om problemet kvarstår kan du hoppa över den här guiden."
-#: src/screens/SignupQueued.tsx:149
+#: src/screens/SignupQueued.tsx:164
msgid "We will let you know when your account is ready."
msgstr "Vi meddelar dig när ditt konto är klart."
@@ -7778,15 +8031,15 @@ msgstr "Vi beklagar, men vi kunde inte läsa in den här listan. Om det här kva
msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again."
msgstr "Vi beklagar, men vi kunde inte läsa in dina ignorerade ord just nu. Försök igen."
-#: src/view/screens/Search/Search.tsx:202
+#: src/view/screens/Search/Search.tsx:201
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "Vi beklagar, men din sökning kunde inte slutföras. Försök igen om några minuter."
-#: src/view/com/composer/Composer.tsx:410
+#: src/view/com/composer/Composer.tsx:417
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Vi beklagar! Inlägget som du vill svara på har tagits bort."
-#: src/components/Lists.tsx:188
+#: src/components/Lists.tsx:194
#: src/view/screens/NotFound.tsx:50
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Vi beklagar! Vi kan inte hitta den sida du letade efter."
@@ -7817,7 +8070,7 @@ msgstr "Vad folk skriver inlägg om."
#: src/view/com/auth/SplashScreen.tsx:38
#: src/view/com/auth/SplashScreen.web.tsx:99
-#: src/view/com/composer/Composer.tsx:729
+#: src/view/com/composer/Composer.tsx:736
msgid "What's up?"
msgstr "Vad händer?"
@@ -7838,35 +8091,44 @@ msgid "Who can reply"
msgstr "Vem kan svara"
#: src/screens/Home/NoFeedsPinned.tsx:79
-#: src/screens/Messages/ChatList.tsx:148
+#: src/screens/Messages/ChatList.tsx:156
msgid "Whoops!"
msgstr "Hoppsan!"
-#: src/components/ReportDialog/SelectReportOptionView.tsx:44
+#: src/components/interstitials/TrendingVideos.tsx:127
+#: src/screens/Search/components/ExploreTrendingVideos.tsx:147
+msgid "Whoops! Trending videos failed to load."
+msgstr "Hoppsan! Det gick inte att läsa in trendande videoklipp."
+
+#: src/screens/Takendown.tsx:173
+msgid "Why are you appealing?"
+msgstr "Varför begär du omprövning?"
+
+#: src/components/ReportDialog/SelectReportOptionView.tsx:42
msgid "Why should this content be reviewed?"
msgstr "Varför borde det här innehållet granskas?"
-#: src/components/ReportDialog/SelectReportOptionView.tsx:57
+#: src/components/ReportDialog/SelectReportOptionView.tsx:55
msgid "Why should this feed be reviewed?"
msgstr "Varför borde det här flödet granskas?"
-#: src/components/ReportDialog/SelectReportOptionView.tsx:54
+#: src/components/ReportDialog/SelectReportOptionView.tsx:52
msgid "Why should this list be reviewed?"
msgstr "Varför borde den här listan granskas?"
-#: src/components/ReportDialog/SelectReportOptionView.tsx:63
+#: src/components/ReportDialog/SelectReportOptionView.tsx:61
msgid "Why should this message be reviewed?"
msgstr "Varför borde det här meddelandet granskas?"
-#: src/components/ReportDialog/SelectReportOptionView.tsx:51
+#: src/components/ReportDialog/SelectReportOptionView.tsx:49
msgid "Why should this post be reviewed?"
msgstr "Varför borde det här inlägget granskas?"
-#: src/components/ReportDialog/SelectReportOptionView.tsx:60
+#: src/components/ReportDialog/SelectReportOptionView.tsx:58
msgid "Why should this starter pack be reviewed?"
msgstr "Varför borde det här startpaketet granskas?"
-#: src/components/ReportDialog/SelectReportOptionView.tsx:48
+#: src/components/ReportDialog/SelectReportOptionView.tsx:46
msgid "Why should this user be reviewed?"
msgstr "Varför borde den här användaren granskas?"
@@ -7875,12 +8137,12 @@ msgstr "Varför borde den här användaren granskas?"
msgid "Write a message"
msgstr "Skriv ett meddelande"
-#: src/view/com/composer/Composer.tsx:817
+#: src/view/com/composer/Composer.tsx:824
msgid "Write post"
msgstr "Skriv inlägg"
-#: src/view/com/composer/Composer.tsx:727
-#: src/view/com/post-thread/PostThreadComposePrompt.tsx:70
+#: src/view/com/composer/Composer.tsx:734
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:69
msgid "Write your reply"
msgstr "Skriv ditt svar"
@@ -7889,7 +8151,7 @@ msgstr "Skriv ditt svar"
msgid "Writers"
msgstr "Författare"
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:339
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:337
msgid "Wrong DID returned from server. Received: {0}"
msgstr "Fel DID returnerades från servern. Mottaget: {0}"
@@ -7930,7 +8192,7 @@ msgstr "du"
msgid "You"
msgstr "Du"
-#: src/screens/SignupQueued.tsx:142
+#: src/screens/SignupQueued.tsx:157
msgid "You are in line."
msgstr "Du står i kö."
@@ -7964,7 +8226,8 @@ msgstr "Du kan nu logga in med ditt nya lösenord."
msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users."
msgstr "Du kan återaktivera ditt konto för att fortsätta logga in. Din profil och dina inlägg kommer att vara synliga för andra användare."
-#: src/components/interstitials/Trending.tsx:100
+#: src/components/interstitials/Trending.tsx:130
+#: src/components/interstitials/TrendingVideos.tsx:139
#: src/screens/Search/components/ExploreTrendingTopics.tsx:136
#: src/view/shell/desktop/SidebarTrendingTopics.tsx:109
msgid "You can update this later from your settings."
@@ -8005,7 +8268,7 @@ msgid "You have blocked this user. You cannot view their content."
msgstr "Du har blockerat den här användaren. Du kan inte se dennes innehåll."
#: src/screens/Login/SetNewPasswordForm.tsx:48
-#: src/screens/Login/SetNewPasswordForm.tsx:85
+#: src/screens/Login/SetNewPasswordForm.tsx:91
#: 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."
@@ -8028,7 +8291,7 @@ msgstr "Du har ignorerat det här kontot."
msgid "You have muted this user"
msgstr "Du har ignorerat den här användaren"
-#: src/screens/Messages/ChatList.tsx:190
+#: src/screens/Messages/ChatList.tsx:198
msgid "You have no conversations yet. Start one!"
msgstr "Du har inga konversationer ännu. Starta en!"
@@ -8049,7 +8312,7 @@ msgstr "Du har inte blockerat några konton än. För att blockera ett konto, g
msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account."
msgstr "Du har inte ignorerat några konton än. För att blockera ett konto, gå till dess profil och välj ”Ignorera konto” i kontomenyn."
-#: src/components/Lists.tsx:52
+#: src/components/Lists.tsx:57
msgid "You have reached the end"
msgstr "Du har nått slutet"
@@ -8057,7 +8320,7 @@ msgstr "Du har nått slutet"
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "Du har för tillfället nått gränsen för videouppladdningar. Försök igen senare."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:241
+#: src/components/StarterPack/ProfileStarterPacks.tsx:240
msgid "You haven't created a starter pack yet!"
msgstr "Du har inte skapat ett startpaket ännu!"
@@ -8094,7 +8357,7 @@ msgstr "Du kan bara välja upp till 4 bilder"
msgid "You must be 13 years of age or older to sign up."
msgstr "Du måste vara 13 år eller äldre för att registrera dig."
-#: src/components/StarterPack/ProfileStarterPacks.tsx:324
+#: src/components/StarterPack/ProfileStarterPacks.tsx:323
msgid "You must be following at least seven other people to generate a starter pack."
msgstr "Du måste följa minst sju andra personer för att generera ett startpaket."
@@ -8106,7 +8369,7 @@ msgstr "Du måste ge åtkomst till ditt fotobibliotek för att spara en QR-kod"
msgid "You must grant access to your photo library to save the image."
msgstr "Du måste ge åtkomst till ditt fotobibliotek för att kunna spara bilden."
-#: src/components/ReportDialog/SubmitView.tsx:210
+#: src/components/ReportDialog/SubmitView.tsx:211
msgid "You must select at least one labeler for a report"
msgstr "Du måste välja minst en etikettsättare för att göra en anmälan"
@@ -8115,6 +8378,7 @@ msgid "You previously deactivated @{0}."
msgstr "Du har tidigare inaktiverat @{0}."
#: src/screens/Settings/Settings.tsx:257
+#: src/view/shell/desktop/LeftNav.tsx:206
msgid "You will be signed out of all your accounts."
msgstr "Du kommer att loggas ut från alla dina konton."
@@ -8126,19 +8390,19 @@ msgstr "Du kommer inte längre få notiser för den här tråden"
msgid "You will now receive notifications for this thread"
msgstr "Du kommer att få notiser för den här tråden i fortsättningen"
-#: src/screens/Login/SetNewPasswordForm.tsx:98
+#: src/screens/Login/SetNewPasswordForm.tsx:104
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "Du kommer att få ett e-postmeddelande med en ”återställningskod”. Ange koden här och ange sedan ditt nya lösenord."
-#: src/screens/Messages/components/ChatListItem.tsx:124
+#: src/screens/Messages/components/ChatListItem.tsx:133
msgid "You: {0}"
msgstr "Du: {0}"
-#: src/screens/Messages/components/ChatListItem.tsx:153
+#: src/screens/Messages/components/ChatListItem.tsx:162
msgid "You: {defaultEmbeddedContentMessage}"
msgstr "Du: {defaultEmbeddedContentMessage}"
-#: src/screens/Messages/components/ChatListItem.tsx:146
+#: src/screens/Messages/components/ChatListItem.tsx:155
msgid "You: {short}"
msgstr "Du: {short}"
@@ -8166,7 +8430,7 @@ msgstr "Du kommer att få ett e-postmeddelande till <0>{0}0> för att verifier
msgid "You'll stay updated with these feeds"
msgstr "Du kommer att hålla dig uppdaterad med dessa flöden"
-#: src/screens/SignupQueued.tsx:112
+#: src/screens/SignupQueued.tsx:127
msgid "You're in line"
msgstr "Du står i kö"
@@ -8175,7 +8439,7 @@ msgstr "Du står i kö"
msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account."
msgstr "Du är inloggad med ett applösenord. Logga in med ditt huvudlösenord för att fortsätta inaktiveringen av ditt konto."
-#: src/screens/Onboarding/StepFinished.tsx:235
+#: src/screens/Onboarding/StepFinished.tsx:242
msgid "You're ready to go!"
msgstr "Du är redo att köra!"
@@ -8200,6 +8464,10 @@ msgstr "Du har nått din dagliga gräns för videouppladdningar (för många byt
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Du har nått din dagliga gräns för videouppladdningar (för många videoklipp)"
+#: src/screens/VideoFeed/index.tsx:1080
+msgid "You've run out of videos to watch. Maybe it's a good time to take a break?"
+msgstr "Det finns inga fler videoklipp att titta på. Det kanske är dags för att ta en paus?"
+
#: src/screens/Signup/index.tsx:140
msgid "Your account"
msgstr "Ditt konto"
@@ -8208,6 +8476,10 @@ msgstr "Ditt konto"
msgid "Your account has been deleted"
msgstr "Ditt konto har tagits bort"
+#: src/screens/Takendown.tsx:146
+msgid "Your account has been suspended"
+msgstr "Ditt konto har stängts av"
+
#: src/view/com/composer/state/video.ts:429
msgid "Your account is not yet old enough to upload videos. Please try again later."
msgstr "Ditt konto är ännu inte tillräckligt gammalt för att ladda upp videoklipp. Försök igen senare."
@@ -8216,11 +8488,19 @@ msgstr "Ditt konto är ännu inte tillräckligt gammalt för att ladda upp video
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 "Datakatalogen för ditt konto innehåller alla offentliga dataposter och kan laddas ner som en CAR-fil. Filen innehåller inte medieinbäddningar såsom bilder; eller privata uppgifter som behöver hämtas separat."
-#: src/screens/Signup/StepInfo/index.tsx:211
+#: src/screens/Takendown.tsx:214
+msgid "Your account was found to be in violation of the <0>Bluesky Social Terms of Service0>. You have been sent an email outlining the specific violation and suspension period, if applicable. You can appeal this decision if you believe it was made in error."
+msgstr "Ditt konto har har visats sig bryta mot <0>Bluesky Socials användarvillkor0>. Ett e-postmeddelande har skickats till dig med information om den specifika överträdelsen och avstängningsperioden, om tillämpligt. Om du anser att detta beslut är felaktigt kan du begära att det omprövas."
+
+#: src/screens/Takendown.tsx:154
+msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email."
+msgstr "Din omprövningsbegäran har skickats. Du kommer att meddelas via e-post om den går igenom."
+
+#: src/screens/Signup/StepInfo/index.tsx:205
msgid "Your birth date"
msgstr "Ditt födelsedatum"
-#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:173
+#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:195
msgid "Your browser does not support the video format. Please try a different browser."
msgstr "Din webbläsare stöder inte videoformatet. Försök med en annan webbläsare."
@@ -8232,7 +8512,7 @@ msgstr "Dina chattar har inaktiverats"
msgid "Your choice will be saved, but can be changed later in settings."
msgstr "Ditt val sparas, och kan ändras senare i inställningar."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:496
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:494
msgid "Your current handle <0>{0}0> will automatically remain reserved for you. You can switch back to it at any time from this account."
msgstr "Ditt nuvarande användarnamn <0>{0}0> kommer automatiskt att förbli reserverat för dig. Du kan när som helst byta tillbaka till det med det här kontot."
@@ -8259,11 +8539,11 @@ msgstr "Din första gillamarkering!"
msgid "Your following feed is empty! Follow more users to see what's happening."
msgstr "Ditt följflöde är tomt! Följ fler användare för att se vad som händer."
-#: src/screens/Settings/components/ChangeHandleDialog.tsx:223
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:221
msgid "Your full handle will be <0>@{0}0>"
msgstr "Ditt fullständiga användarnamn blir <0>@{0}0>"
-#: src/screens/Signup/StepHandle.tsx:125
+#: src/screens/Signup/StepHandle.tsx:129
msgid "Your full username will be"
msgstr "Ditt fullständiga användarnamn blir"
@@ -8275,15 +8555,15 @@ msgstr "Dina ignorerade ord"
msgid "Your password has been changed successfully!"
msgstr "Ändringen av ditt lösenord lyckades!"
-#: src/view/com/composer/Composer.tsx:470
+#: src/view/com/composer/Composer.tsx:477
msgid "Your post has been published"
msgstr "Ditt inlägg har publicerats"
-#: src/view/com/composer/Composer.tsx:467
+#: src/view/com/composer/Composer.tsx:474
msgid "Your posts have been published"
msgstr "Dina inlägg har publicerats"
-#: src/screens/Onboarding/StepFinished.tsx:250
+#: src/screens/Onboarding/StepFinished.tsx:257
msgid "Your posts, likes, and blocks are public. Mutes are private."
msgstr "Dina inlägg, gillamarkeringar och blockeringar är offentliga. Ignoreringar är privata."
@@ -8291,10 +8571,10 @@ msgstr "Dina inlägg, gillamarkeringar och blockeringar är offentliga. Ignoreri
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "Din profil, dina inlägg, flöden och listor kommer inte längre att vara synliga för andra Bluesky-användare. Du kan återaktivera ditt konto när som helst genom att logga in."
-#: src/view/com/composer/Composer.tsx:469
+#: src/view/com/composer/Composer.tsx:476
msgid "Your reply has been published"
msgstr "Ditt svar har publicerats"
-#: src/components/dms/ReportDialog.tsx:157
+#: src/components/dms/ReportDialog.tsx:198
msgid "Your report will be sent to the Bluesky Moderation Service"
msgstr "Din anmälan kommer att skickas till Blueskys modereringstjänst"
diff --git a/src/routes.ts b/src/routes.ts
index 8541d4254d..576ac92d1b 100644
--- a/src/routes.ts
+++ b/src/routes.ts
@@ -13,6 +13,7 @@ export const router = new Router({
ModerationModlists: '/moderation/modlists',
ModerationMutedAccounts: '/moderation/muted-accounts',
ModerationBlockedAccounts: '/moderation/blocked-accounts',
+ ModerationInteractionSettings: '/moderation/interaction-settings',
// profiles, threads, lists
Profile: ['/profile/:name', '/profile/:name/rss'],
ProfileFollowers: '/profile/:name/followers',
diff --git a/src/screens/Login/LoginForm.tsx b/src/screens/Login/LoginForm.tsx
index 701fb3d4aa..86e541b3ee 100644
--- a/src/screens/Login/LoginForm.tsx
+++ b/src/screens/Login/LoginForm.tsx
@@ -232,7 +232,7 @@ export const LoginForm = ({
onSubmitEditing={onPressNext}
blurOnSubmit={false} // HACK: https://github.com/facebook/react-native/issues/21911#issuecomment-558343069 Keyboard blur behavior is now handled in onSubmitEditing
editable={!isProcessing}
- accessibilityHint={_(msg`Input your password`)}
+ accessibilityHint={_(msg`Enter your password`)}
/>
+
+ {state => (
+
+ )}
+
+
+
+
+
+
+ Post Interaction Settings
+
+
+
+
+
+
+
+
+ The following settings will be used as your defaults when creating
+ new posts. You can edit these for a specific post from the
+ composer.
+
+
+ {preferences ? (
+
+ ) : (
+
+
+
+ )}
+
+
+
+ )
+}
+
+function Inner({preferences}: {preferences: UsePreferencesQueryResponse}) {
+ const {_} = useLingui()
+ const {mutateAsync: setPostInteractionSettings, isPending} =
+ usePostInteractionSettingsMutation()
+ const [error, setError] = React.useState(undefined)
+
+ const allowUI = React.useMemo(() => {
+ return threadgateRecordToAllowUISetting({
+ $type: 'app.bsky.feed.threadgate',
+ post: '',
+ createdAt: new Date().toString(),
+ allow: preferences.postInteractionSettings.threadgateAllowRules,
+ })
+ }, [preferences.postInteractionSettings.threadgateAllowRules])
+ const postgate = React.useMemo(() => {
+ return createPostgateRecord({
+ post: '',
+ embeddingRules:
+ preferences.postInteractionSettings.postgateEmbeddingRules,
+ })
+ }, [preferences.postInteractionSettings.postgateEmbeddingRules])
+
+ const [maybeEditedAllowUI, setAllowUI] = React.useState(allowUI)
+ const [maybeEditedPostgate, setEditedPostgate] = React.useState(postgate)
+
+ const wasEdited = React.useMemo(() => {
+ return (
+ !deepEqual(allowUI, maybeEditedAllowUI) ||
+ !deepEqual(postgate.embeddingRules, maybeEditedPostgate.embeddingRules)
+ )
+ }, [postgate, allowUI, maybeEditedAllowUI, maybeEditedPostgate])
+
+ const onSave = React.useCallback(async () => {
+ setError('')
+
+ try {
+ await setPostInteractionSettings({
+ threadgateAllowRules:
+ threadgateAllowUISettingToAllowRecordValue(maybeEditedAllowUI),
+ postgateEmbeddingRules: maybeEditedPostgate.embeddingRules ?? [],
+ })
+ Toast.show(_(msg`Settings saved`))
+ } catch (e: any) {
+ logger.error(`Failed to save post interaction settings`, {
+ context: 'ModerationInteractionSettingsScreen',
+ safeMessage: e.message,
+ })
+ setError(_(msg`Failed to save settings. Please try again.`))
+ }
+ }, [_, maybeEditedPostgate, maybeEditedAllowUI, setPostInteractionSettings])
+
+ return (
+ <>
+
+
+ {error && {error} }
+ >
+ )
+}
diff --git a/src/screens/Onboarding/Layout.tsx b/src/screens/Onboarding/Layout.tsx
index bdc1664f61..16c37358ff 100644
--- a/src/screens/Onboarding/Layout.tsx
+++ b/src/screens/Onboarding/Layout.tsx
@@ -53,9 +53,7 @@ export function Layout({children}: React.PropsWithChildren<{}>) {
aria-role="dialog"
aria-label={dialogLabel}
accessibilityLabel={dialogLabel}
- accessibilityHint={_(
- msg`The following steps will help customize your Bluesky experience.`,
- )}
+ accessibilityHint={_(msg`Customizes your Bluesky experience`)}
style={[
// @ts-ignore web only -prf
isWeb ? a.fixed : a.absolute,
diff --git a/src/screens/Onboarding/StepFinished.tsx b/src/screens/Onboarding/StepFinished.tsx
index cd28f61389..d0b0caccaa 100644
--- a/src/screens/Onboarding/StepFinished.tsx
+++ b/src/screens/Onboarding/StepFinished.tsx
@@ -205,7 +205,7 @@ export function StepFinished() {
setActiveStarterPack(undefined)
setHasCheckedForStarterPack(true)
startProgressGuide(
- gate('new_postonboarding') ? 'follow-10' : 'like-10-and-follow-7',
+ gate('old_postonboarding') ? 'like-10-and-follow-7' : 'follow-10',
)
dispatch({type: 'finish'})
onboardDispatch({type: 'finish'})
diff --git a/src/screens/Onboarding/StepProfile/types.ts b/src/screens/Onboarding/StepProfile/types.ts
index 30f2d8a225..7eb965c673 100644
--- a/src/screens/Onboarding/StepProfile/types.ts
+++ b/src/screens/Onboarding/StepProfile/types.ts
@@ -3,7 +3,6 @@ import {Apple_Stroke2_Corner0_Rounded as Apple} from '#/components/icons/Apple'
import {At_Stroke2_Corner0_Rounded as At} from '#/components/icons/At'
import {Atom_Stroke2_Corner0_Rounded as Atom} from '#/components/icons/Atom'
import {Celebrate_Stroke2_Corner0_Rounded as Celebrate} from '#/components/icons/Celebrate'
-import {Coffee_Stroke2_Corner0_Rounded as Coffee} from '#/components/icons/Coffee'
import {
EmojiArc_Stroke2_Corner0_Rounded as EmojiArc,
EmojiHeartEyes_Stroke2_Corner0_Rounded as EmojiHeartEyes,
@@ -13,8 +12,6 @@ import {GameController_Stroke2_Corner0_Rounded as GameController} from '#/compon
import {Lab_Stroke2_Corner0_Rounded as Lab} from '#/components/icons/Lab'
import {Leaf_Stroke2_Corner0_Rounded as Leaf} from '#/components/icons/Leaf'
import {MusicNote_Stroke2_Corner0_Rounded as MusicNote} from '#/components/icons/MusicNote'
-import {PiggyBank_Stroke2_Corner0_Rounded as PiggyBank} from '#/components/icons/PiggyBank'
-import {Poop_Stroke2_Corner0_Rounded as Poop} from '#/components/icons/Poop'
import {Rose_Stroke2_Corner0_Rounded as Rose} from '#/components/icons/Rose'
import {Shaka_Stroke2_Corner0_Rounded as Shaka} from '#/components/icons/Shaka'
import {UFO_Stroke2_Corner0_Rounded as UFO} from '#/components/icons/UFO'
@@ -33,7 +30,6 @@ export const emojiNames = [
'apple',
'atom',
'celebrate',
- 'coffee',
'gameController',
'leaf',
'musicNote',
@@ -43,8 +39,6 @@ export const emojiNames = [
'zap',
'explosion',
'lab',
- 'piggyBank',
- 'poop',
] as const
export type EmojiName = (typeof emojiNames)[number]
@@ -81,10 +75,6 @@ export const emojiItems: Record = {
name: 'celebrate',
component: Celebrate,
},
- coffee: {
- name: 'coffee',
- component: Coffee,
- },
gameController: {
name: 'gameController',
component: GameController,
@@ -121,14 +111,6 @@ export const emojiItems: Record = {
name: 'lab',
component: Lab,
},
- piggyBank: {
- name: 'piggyBank',
- component: PiggyBank,
- },
- poop: {
- name: 'poop',
- component: Poop,
- },
}
export const avatarColors = [
diff --git a/src/screens/Profile/ErrorState.tsx b/src/screens/Profile/ErrorState.tsx
index 97ce35bb28..b473435fca 100644
--- a/src/screens/Profile/ErrorState.tsx
+++ b/src/screens/Profile/ErrorState.tsx
@@ -60,7 +60,7 @@ export function ErrorState({error}: {error: string}) {
color="secondary"
variant="solid"
label={_(msg`Go Back`)}
- accessibilityHint="Return to previous page"
+ accessibilityHint="Returns to previous page"
onPress={onPressBack}>
Go Back
diff --git a/src/screens/Search/components/ExploreRecommendations.tsx b/src/screens/Search/components/ExploreRecommendations.tsx
index 7070c44ac8..602bab87d2 100644
--- a/src/screens/Search/components/ExploreRecommendations.tsx
+++ b/src/screens/Search/components/ExploreRecommendations.tsx
@@ -1,4 +1,5 @@
import {View} from 'react-native'
+import {AppBskyUnspeccedDefs} from '@atproto/api'
import {Trans} from '@lingui/macro'
import {logEvent} from '#/lib/statsig/statsig'
@@ -27,6 +28,7 @@ function Inner() {
const gutters = useGutters([0, 'compact'])
const {data: trending, error, isLoading} = useTrendingTopics()
const noRecs = !isLoading && !error && !trending?.suggested?.length
+ const allFeeds = trending?.suggested && isAllFeeds(trending.suggested)
return error || noRecs ? null : (
<>
@@ -50,9 +52,17 @@ function Inner() {
Recommended
-
- Feeds we think you might like.
-
+ {!allFeeds ? (
+
+
+ Content from across the network we think you might like.
+
+
+ ) : (
+
+ Feeds we think you might like.
+
+ )}
@@ -98,3 +108,10 @@ function Inner() {
>
)
}
+
+function isAllFeeds(topics: AppBskyUnspeccedDefs.TrendingTopic[]) {
+ return topics.every(topic => {
+ const segments = topic.link.split('/').slice(1)
+ return segments[0] === 'profile' && segments[2] === 'feed'
+ })
+}
diff --git a/src/screens/Settings/AboutSettings.tsx b/src/screens/Settings/AboutSettings.tsx
index 02976bb3ca..4d009281de 100644
--- a/src/screens/Settings/AboutSettings.tsx
+++ b/src/screens/Settings/AboutSettings.tsx
@@ -7,6 +7,7 @@ import {NativeStackScreenProps} from '@react-navigation/native-stack'
import {appVersion, BUNDLE_DATE, bundleInfo} from '#/lib/app-info'
import {STATUS_PAGE_URL} from '#/lib/constants'
import {CommonNavigatorParams} from '#/lib/routes/types'
+import {useDevModeEnabled} from '#/state/preferences/dev-mode'
import * as Toast from '#/view/com/util/Toast'
import * as SettingsList from '#/screens/Settings/components/SettingsList'
import {CodeLines_Stroke2_Corner2_Rounded as CodeLinesIcon} from '#/components/icons/CodeLines'
@@ -18,6 +19,7 @@ import * as Layout from '#/components/Layout'
type Props = NativeStackScreenProps
export function AboutSettingsScreen({}: Props) {
const {_} = useLingui()
+ const [devModeEnabled, setDevModeEnabled] = useDevModeEnabled()
return (
@@ -65,7 +67,16 @@ export function AboutSettingsScreen({}: Props) {
{
+ const newDevModeEnabled = !devModeEnabled
+ setDevModeEnabled(newDevModeEnabled)
+ Toast.show(
+ newDevModeEnabled
+ ? _(msg`Developer mode enabled`)
+ : _(msg`Developer mode disabled`),
+ )
+ }}
onPress={() => {
setStringAsync(
`Build version: ${appVersion}; Bundle info: ${bundleInfo}; Bundle date: ${BUNDLE_DATE}; Platform: ${Platform.OS}; Platform version: ${Platform.Version}`,
diff --git a/src/screens/Settings/AccountSettings.tsx b/src/screens/Settings/AccountSettings.tsx
index 634c9d3f78..8d7dbde611 100644
--- a/src/screens/Settings/AccountSettings.tsx
+++ b/src/screens/Settings/AccountSettings.tsx
@@ -124,7 +124,7 @@ export function AccountSettingsScreen({}: Props) {
changeHandleControl.open()}>
diff --git a/src/screens/Settings/AppIconSettings/index.tsx b/src/screens/Settings/AppIconSettings/index.tsx
index 0be2894d52..954bac68a5 100644
--- a/src/screens/Settings/AppIconSettings/index.tsx
+++ b/src/screens/Settings/AppIconSettings/index.tsx
@@ -213,7 +213,7 @@ function AppIcon({icon, size = 50}: {icon: AppIconSet; size: number}) {
return (
{
if (isAndroid) {
diff --git a/src/screens/Settings/Settings.tsx b/src/screens/Settings/Settings.tsx
index b8c57c3b8b..ea83b00c2c 100644
--- a/src/screens/Settings/Settings.tsx
+++ b/src/screens/Settings/Settings.tsx
@@ -101,7 +101,7 @@ export function SettingsScreen({}: Props) {
{
if (!reducedMotion) {
@@ -205,7 +205,7 @@ export function SettingsScreen({}: Props) {
Linking.openURL(HELP_DESK_URL)}
label={_(msg`Help`)}
- accessibilityHint={_(msg`Open helpdesk in browser`)}>
+ accessibilityHint={_(msg`Opens helpdesk in browser`)}>
Help
@@ -421,7 +421,7 @@ function AccountRow({
)}
- {sanitizeHandle(account.handle, '@')}
+ {sanitizeHandle(account.handle, '@')}
{pendingDid === account.did && }
diff --git a/src/screens/Settings/components/ChangeHandleDialog.tsx b/src/screens/Settings/components/ChangeHandleDialog.tsx
index 37f6ed9eff..b69713a10e 100644
--- a/src/screens/Settings/components/ChangeHandleDialog.tsx
+++ b/src/screens/Settings/components/ChangeHandleDialog.tsx
@@ -17,8 +17,8 @@ import {useMutation, useQueryClient} from '@tanstack/react-query'
import {HITSLOP_10} from '#/lib/constants'
import {cleanError} from '#/lib/strings/errors'
+import {createFullHandle, validateServiceHandle} from '#/lib/strings/handles'
import {sanitizeHandle} from '#/lib/strings/handles'
-import {createFullHandle, validateHandle} from '#/lib/strings/handles'
import {useFetchDid, useUpdateHandleMutation} from '#/state/queries/handle'
import {RQKEY as RQKEY_PROFILE} from '#/state/queries/profile'
import {useServiceQuery} from '#/state/queries/service'
@@ -172,7 +172,7 @@ function ProvidedHandlePage({
const host = serviceInfo.availableUserDomains[0]
const validation = useMemo(
- () => validateHandle(subdomain, host, true),
+ () => validateServiceHandle(subdomain, host),
[subdomain, host],
)
@@ -537,7 +537,7 @@ function OwnHandlePage({goToServiceHandle}: {goToServiceHandle: () => void}) {
diff --git a/src/screens/StarterPack/Wizard/index.tsx b/src/screens/StarterPack/Wizard/index.tsx
index 380f161579..5a725bc138 100644
--- a/src/screens/StarterPack/Wizard/index.tsx
+++ b/src/screens/StarterPack/Wizard/index.tsx
@@ -285,7 +285,7 @@ function WizardInner({
{
if (state.currentStep !== 'Details') {
evt.preventDefault()
diff --git a/src/screens/VideoFeed/index.tsx b/src/screens/VideoFeed/index.tsx
index d0b98b039e..04c2d77927 100644
--- a/src/screens/VideoFeed/index.tsx
+++ b/src/screens/VideoFeed/index.tsx
@@ -806,7 +806,9 @@ function Overlay({
: _(msg`Follow ${handle}`)
}
accessibilityHint={
- profile.viewer?.following ? _(msg`Unfollow user`) : ''
+ profile.viewer?.following
+ ? _(msg`Unfollows the user`)
+ : ''
}
size="small"
variant="solid"
@@ -936,7 +938,7 @@ function ExpandableRichTextView({
/>
{constrained && !screenReaderEnabled && (
setExpanded(prev => !prev)}
diff --git a/src/state/preferences/dev-mode.ts b/src/state/preferences/dev-mode.ts
new file mode 100644
index 0000000000..ace2838959
--- /dev/null
+++ b/src/state/preferences/dev-mode.ts
@@ -0,0 +1,9 @@
+import {device, useStorage} from '#/storage'
+
+export function useDevModeEnabled() {
+ const [devModeEnabled = false, setDevModeEnabled] = useStorage(device, [
+ 'devMode',
+ ])
+
+ return [devModeEnabled, setDevModeEnabled] as const
+}
diff --git a/src/state/queries/post-interaction-settings.ts b/src/state/queries/post-interaction-settings.ts
new file mode 100644
index 0000000000..a256f29561
--- /dev/null
+++ b/src/state/queries/post-interaction-settings.ts
@@ -0,0 +1,20 @@
+import {AppBskyActorDefs} from '@atproto/api'
+import {useMutation, useQueryClient} from '@tanstack/react-query'
+
+import {preferencesQueryKey} from '#/state/queries/preferences'
+import {useAgent} from '#/state/session'
+
+export function usePostInteractionSettingsMutation() {
+ const qc = useQueryClient()
+ const agent = useAgent()
+ return useMutation({
+ async mutationFn(props: AppBskyActorDefs.PostInteractionSettingsPref) {
+ await agent.setPostInteractionSettings(props)
+ },
+ async onSuccess() {
+ await qc.invalidateQueries({
+ queryKey: preferencesQueryKey,
+ })
+ },
+ })
+}
diff --git a/src/state/queries/preferences/const.ts b/src/state/queries/preferences/const.ts
index 549f7ce291..3c1fead5e8 100644
--- a/src/state/queries/preferences/const.ts
+++ b/src/state/queries/preferences/const.ts
@@ -39,4 +39,8 @@ export const DEFAULT_LOGGED_OUT_PREFERENCES: UsePreferencesQueryResponse = {
activeProgressGuide: undefined,
nuxs: [],
},
+ postInteractionSettings: {
+ threadgateAllowRules: undefined,
+ postgateEmbeddingRules: [],
+ },
}
diff --git a/src/state/queries/profile.ts b/src/state/queries/profile.ts
index fac1fc8c12..54e653b901 100644
--- a/src/state/queries/profile.ts
+++ b/src/state/queries/profile.ts
@@ -11,6 +11,7 @@ import {
Un$Typed,
} from '@atproto/api'
import {
+ keepPreviousData,
QueryClient,
useMutation,
useQuery,
@@ -84,7 +85,13 @@ export function useProfileQuery({
})
}
-export function useProfilesQuery({handles}: {handles: string[]}) {
+export function useProfilesQuery({
+ handles,
+ maintainData,
+}: {
+ handles: string[]
+ maintainData?: boolean
+}) {
const agent = useAgent()
return useQuery({
staleTime: STALE.MINUTES.FIVE,
@@ -93,6 +100,7 @@ export function useProfilesQuery({handles}: {handles: string[]}) {
const res = await agent.getProfiles({actors: handles})
return res.data
},
+ placeholderData: maintainData ? keepPreviousData : undefined,
})
}
diff --git a/src/state/queries/threadgate/types.ts b/src/state/queries/threadgate/types.ts
index ac215199d2..ba7185486b 100644
--- a/src/state/queries/threadgate/types.ts
+++ b/src/state/queries/threadgate/types.ts
@@ -4,3 +4,4 @@ export type ThreadgateAllowUISetting =
| {type: 'mention'}
| {type: 'following'}
| {type: 'list'; list: string}
+ | {type: 'followers'}
diff --git a/src/state/queries/threadgate/util.ts b/src/state/queries/threadgate/util.ts
index 1e70e2e31f..cbe8d4695b 100644
--- a/src/state/queries/threadgate/util.ts
+++ b/src/state/queries/threadgate/util.ts
@@ -46,6 +46,8 @@ export function threadgateRecordToAllowUISetting(
setting = {type: 'following'}
} else if (AppBskyFeedThreadgate.isListRule(allow)) {
setting = {type: 'list', list: allow.list}
+ } else if (AppBskyFeedThreadgate.isFollowerRule(allow)) {
+ setting = {type: 'followers'}
}
return setting
})
@@ -76,6 +78,8 @@ export function threadgateAllowUISettingToAllowRecordValue(
allow.push({$type: 'app.bsky.feed.threadgate#mentionRule'})
} else if (rule.type === 'following') {
allow.push({$type: 'app.bsky.feed.threadgate#followingRule'})
+ } else if (rule.type === 'followers') {
+ allow.push({$type: 'app.bsky.feed.threadgate#followerRule'})
} else if (rule.type === 'list') {
allow.push({
$type: 'app.bsky.feed.threadgate#listRule',
diff --git a/src/state/trending-config.tsx b/src/state/trending-config.tsx
index a7694993fb..1e5db9dc97 100644
--- a/src/state/trending-config.tsx
+++ b/src/state/trending-config.tsx
@@ -1,6 +1,5 @@
import React from 'react'
-import {useGate} from '#/lib/statsig/statsig'
import {useLanguagePrefs} from '#/state/preferences/languages'
import {useServiceConfigQuery} from '#/state/queries/service-config'
import {device} from '#/storage'
@@ -14,7 +13,6 @@ const Context = React.createContext({
})
export function Provider({children}: React.PropsWithChildren<{}>) {
- const gate = useGate()
const langPrefs = useLanguagePrefs()
const {data: config, isLoading: isInitialLoad} = useServiceConfigQuery()
const ctx = React.useMemo(() => {
@@ -45,23 +43,12 @@ export function Provider({children}: React.PropsWithChildren<{}>) {
* the server, we can exit early.
*/
const enabled = Boolean(config?.topicsEnabled)
- if (!enabled) {
- // cache for next reload
- device.set(['trendingBetaEnabled'], enabled)
- return {enabled: false}
- }
-
- /*
- * Service is enabled, but also check statsig in case we're rolling back.
- */
- const gateEnabled = gate('trending_topics_beta')
- const _enabled = enabled && gateEnabled
// update cache
- device.set(['trendingBetaEnabled'], _enabled)
+ device.set(['trendingBetaEnabled'], enabled)
- return {enabled: _enabled}
- }, [isInitialLoad, config, gate, langPrefs.contentLanguages])
+ return {enabled}
+ }, [isInitialLoad, config, langPrefs.contentLanguages])
return {children}
}
diff --git a/src/storage/index.ts b/src/storage/index.ts
index 8ec09eefa8..9b39e1c1a3 100644
--- a/src/storage/index.ts
+++ b/src/storage/index.ts
@@ -1,5 +1,5 @@
+import {useCallback, useEffect, useState} from 'react'
import {MMKV} from 'react-native-mmkv'
-import {Did} from '@atproto/api'
import {Account, Device} from '#/storage/schema'
@@ -65,6 +65,72 @@ export class Storage {
removeMany(scopes: [...Scopes], keys: Key[]) {
keys.forEach(key => this.remove([...scopes, key]))
}
+
+ /**
+ * Fires a callback when the storage associated with a given key changes
+ *
+ * @returns Listener - call `remove()` to stop listening
+ */
+ addOnValueChangedListener(
+ scopes: [...Scopes, Key],
+ callback: () => void,
+ ) {
+ return this.store.addOnValueChangedListener(key => {
+ if (key === scopes.join(this.sep)) {
+ callback()
+ }
+ })
+ }
+}
+
+type StorageSchema> = T extends Storage<
+ any,
+ infer U
+>
+ ? U
+ : never
+type StorageScopes> = T extends Storage<
+ infer S,
+ any
+>
+ ? S
+ : never
+
+/**
+ * Hook to use a storage instance. Acts like a useState hook, but persists the
+ * value in storage.
+ */
+export function useStorage<
+ Store extends Storage,
+ Key extends keyof StorageSchema,
+>(
+ storage: Store,
+ scopes: [...StorageScopes, Key],
+): [
+ StorageSchema[Key] | undefined,
+ (data: StorageSchema[Key]) => void,
+] {
+ type Schema = StorageSchema
+ const [value, setValue] = useState(() =>
+ storage.get(scopes),
+ )
+
+ useEffect(() => {
+ const sub = storage.addOnValueChangedListener(scopes, () => {
+ setValue(storage.get(scopes))
+ })
+ return () => sub.remove()
+ }, [storage, scopes])
+
+ const setter = useCallback(
+ (data: Schema[Key]) => {
+ setValue(data)
+ storage.set(scopes, data)
+ },
+ [storage, scopes],
+ )
+
+ return [value, setter] as const
}
/**
@@ -77,10 +143,10 @@ export const device = new Storage<[], Device>({id: 'bsky_device'})
/**
* Account data that's specific to the account on this device
*/
-export const account = new Storage<[Did], Account>({id: 'bsky_account'})
+export const account = new Storage<[string], Account>({id: 'bsky_account'})
if (__DEV__ && typeof window !== 'undefined') {
- // @ts-ignore
+ // @ts-expect-error - dev global
window.bsky_storage = {
device,
account,
diff --git a/src/storage/schema.ts b/src/storage/schema.ts
index d8b9874e4e..0e9b1985cb 100644
--- a/src/storage/schema.ts
+++ b/src/storage/schema.ts
@@ -9,8 +9,10 @@ export type Device = {
countryCode: string | undefined
}
trendingBetaEnabled: boolean
+ devMode: boolean
}
export type Account = {
searchTermHistory?: string[]
+ searchAccountHistory?: string[]
}
diff --git a/src/style.css b/src/style.css
index 96c51014fe..2e118c433f 100644
--- a/src/style.css
+++ b/src/style.css
@@ -187,6 +187,7 @@ input:focus {
animation: rotate 500ms linear infinite;
}
+/* animations for atoms */
@keyframes fadeIn {
from {
opacity: 0;
@@ -205,6 +206,38 @@ input:focus {
}
}
+@keyframes zoomIn {
+ from {
+ transform: scale(0.95);
+ }
+ to {
+ transform: scale(1);
+ }
+}
+
+@keyframes slideInLeft {
+ from {
+ transform: translateX(-100%);
+ }
+ to {
+ transform: translateX(0);
+ }
+}
+
+@keyframes slideOutLeft {
+ from {
+ transform: translateX(0);
+ }
+ to {
+ transform: translateX(-100%);
+ }
+}
+
+/* animating radix dropdowns requires knowing the data attributes */
+.dropdown-menu-transform-origin > * {
+ transform-origin: var(--radix-dropdown-menu-content-transform-origin);
+}
+
.force-no-clicks > *,
.force-no-clicks * {
pointer-events: none !important;
diff --git a/src/view/com/composer/Composer.tsx b/src/view/com/composer/Composer.tsx
index 0e9b52ce0c..51b3bbde69 100644
--- a/src/view/com/composer/Composer.tsx
+++ b/src/view/com/composer/Composer.tsx
@@ -83,6 +83,7 @@ import {
useLanguagePrefs,
useLanguagePrefsApi,
} from '#/state/preferences/languages'
+import {usePreferencesQuery} from '#/state/queries/preferences'
import {useProfileQuery} from '#/state/queries/profile'
import {Gif} from '#/state/queries/tenor'
import {useAgent, useSession} from '#/state/session'
@@ -169,6 +170,7 @@ export const ComposePost = ({
const discardPromptControl = Prompt.usePromptControl()
const {closeAllDialogs} = useDialogStateControlContext()
const {closeAllModals} = useModalControls()
+ const {data: preferences} = usePreferencesQuery()
const [isKeyboardVisible] = useIsKeyboardVisible({iosUseWillEvents: true})
const [isPublishing, setIsPublishing] = useState(false)
@@ -177,7 +179,13 @@ export const ComposePost = ({
const [composerState, composerDispatch] = useReducer(
composerReducer,
- {initImageUris, initQuoteUri: initQuote?.uri, initText, initMention},
+ {
+ initImageUris,
+ initQuoteUri: initQuote?.uri,
+ initText,
+ initMention,
+ initInteractionSettings: preferences?.postInteractionSettings,
+ },
createComposerState,
)
@@ -1233,7 +1241,7 @@ function ComposerFooter({
onPress={onEmojiButtonPress}
style={a.p_sm}
label={_(msg`Open emoji picker`)}
- accessibilityHint={_(msg`Open emoji picker`)}
+ accessibilityHint={_(msg`Opens emoji picker`)}
variant="ghost"
shape="round"
color="primary">
diff --git a/src/view/com/composer/ComposerReplyTo.tsx b/src/view/com/composer/ComposerReplyTo.tsx
index cfd2b90659..68313226d8 100644
--- a/src/view/com/composer/ComposerReplyTo.tsx
+++ b/src/view/com/composer/ComposerReplyTo.tsx
@@ -70,7 +70,7 @@ export function ComposerReplyTo({replyTo}: {replyTo: ComposerOptsPostRef}) {
msg`Expand or collapse the full post you are replying to`,
)}
accessibilityHint={_(
- msg`Expand or collapse the full post you are replying to`,
+ msg`Expands or collapses the full post you are replying to`,
)}>
@@ -171,7 +171,7 @@ export function EmojiPicker({state, close, pinToTop}: IProps) {
diff --git a/src/view/com/modals/Modal.tsx b/src/view/com/modals/Modal.tsx
index 1cbb9dd9de..9ad651b4fe 100644
--- a/src/view/com/modals/Modal.tsx
+++ b/src/view/com/modals/Modal.tsx
@@ -120,6 +120,7 @@ export function ModalsContainer() {
}
handleIndicatorStyle={{backgroundColor: pal.text.color}}
handleStyle={[styles.handle, pal.view]}
+ backgroundStyle={pal.view}
onChange={onBottomSheetChange}>
{element}
diff --git a/src/view/com/post-thread/PostThreadItem.tsx b/src/view/com/post-thread/PostThreadItem.tsx
index 00d0dc9ed9..0246291982 100644
--- a/src/view/com/post-thread/PostThreadItem.tsx
+++ b/src/view/com/post-thread/PostThreadItem.tsx
@@ -242,6 +242,11 @@ let PostThreadItemLoaded = ({
return makeProfileLink(post.author, 'post', urip.rkey, 'quotes')
}, [post.uri, post.author])
const quotesTitle = _(msg`Quotes of this post`)
+ const onlyFollowersCanReply = !!threadgateRecord?.allow?.find(
+ rule => rule.$type === 'app.bsky.feed.threadgate#followerRule',
+ )
+ const showFollowButton =
+ currentAccount?.did !== post.author.did && !onlyFollowersCanReply
const translatorUrl = getTranslatorLink(
record?.text || '',
@@ -344,7 +349,7 @@ let PostThreadItemLoaded = ({
- {currentAccount?.did !== post.author.did && (
+ {showFollowButton && (
@@ -806,7 +811,7 @@ function BackdatedPostIndicator({post}: {post: AppBskyFeedDefs.PostView}) {
{
e.preventDefault()
diff --git a/src/view/com/profile/ProfileMenu.tsx b/src/view/com/profile/ProfileMenu.tsx
index f01fb5e172..770d17f48c 100644
--- a/src/view/com/profile/ProfileMenu.tsx
+++ b/src/view/com/profile/ProfileMenu.tsx
@@ -6,11 +6,12 @@ import {useQueryClient} from '@tanstack/react-query'
import {HITSLOP_20} from '#/lib/constants'
import {makeProfileLink} from '#/lib/routes/links'
-import {shareUrl} from '#/lib/sharing'
+import {shareText, shareUrl} from '#/lib/sharing'
import {toShareUrl} from '#/lib/strings/url-helpers'
import {logger} from '#/logger'
import {Shadow} from '#/state/cache/types'
import {useModalControls} from '#/state/modals'
+import {useDevModeEnabled} from '#/state/preferences/dev-mode'
import {
RQKEY as profileQueryKey,
useProfileBlockMutationQueue,
@@ -52,6 +53,7 @@ let ProfileMenu = ({
const isBlocked = profile.viewer?.blocking || profile.viewer?.blockedBy
const isFollowingBlockedAccount = isFollowing && isBlocked
const isLabelerAndNotBlocked = !!profile.associated?.labeler && !isBlocked
+ const [devModeEnabled] = useDevModeEnabled()
const [queueMute, queueUnmute] = useProfileMuteMutationQueue(profile)
const [queueBlock, queueUnblock] = useProfileBlockMutationQueue(profile)
@@ -167,6 +169,14 @@ let ProfileMenu = ({
reportDialogControl.open()
}, [reportDialogControl])
+ const onPressShareATUri = React.useCallback(() => {
+ shareText(`at://${profile.did}`)
+ }, [profile.did])
+
+ const onPressShareDID = React.useCallback(() => {
+ shareText(profile.did)
+ }, [profile.did])
+
return (
@@ -308,6 +318,31 @@ let ProfileMenu = ({
>
)}
+ {devModeEnabled ? (
+ <>
+
+
+
+
+ Copy at:// URI
+
+
+
+
+
+ Copy DID
+
+
+
+
+ >
+ ) : null}
diff --git a/src/view/com/util/error/ErrorMessage.tsx b/src/view/com/util/error/ErrorMessage.tsx
index c09d1b2e65..50e55e70c8 100644
--- a/src/view/com/util/error/ErrorMessage.tsx
+++ b/src/view/com/util/error/ErrorMessage.tsx
@@ -14,6 +14,7 @@ import {useLingui} from '@lingui/react'
import {usePalette} from '#/lib/hooks/usePalette'
import {useTheme} from '#/lib/ThemeContext'
+import * as Layout from '#/components/Layout'
import {Text} from '../text/Text'
export function ErrorMessage({
@@ -31,39 +32,44 @@ export function ErrorMessage({
const pal = usePalette('error')
const {_} = useLingui()
return (
-
-
-
-
-
- {message}
-
- {onPressTryAgain && (
-
+
+
+
-
- )}
-
+
+
+ {message}
+
+ {onPressTryAgain && (
+
+
+
+ )}
+
+
)
}
diff --git a/src/view/com/util/forms/DropdownButton.tsx b/src/view/com/util/forms/DropdownButton.tsx
index 6cb4b9557d..a061edf2ef 100644
--- a/src/view/com/util/forms/DropdownButton.tsx
+++ b/src/view/com/util/forms/DropdownButton.tsx
@@ -293,7 +293,9 @@ const DropdownItems = ({
onPress={() => onPressItem(index)}
accessibilityRole="button"
accessibilityLabel={item.label}
- accessibilityHint={_(msg`Option ${index + 1} of ${numItems}`)}>
+ accessibilityHint={_(
+ msg`Selects option ${index + 1} of ${numItems}`,
+ )}>
{item.icon && (
{
+ shareText(postUri)
+ }, [postUri])
+
+ const onShareAuthorDID = useCallback(() => {
+ shareText(postAuthor.did)
+ }, [postAuthor.did])
+
return (
<>
@@ -647,6 +657,28 @@ let PostDropdownMenuItems = ({
>
)}
+
+ {devModeEnabled ? (
+ <>
+
+
+
+ {_(msg`Copy post at:// URI`)}
+
+
+
+ {_(msg`Copy author DID`)}
+
+
+
+ >
+ ) : null}
>
)}
diff --git a/src/view/com/util/images/AutoSizedImage.tsx b/src/view/com/util/images/AutoSizedImage.tsx
index a411b24bb8..883d3814f5 100644
--- a/src/view/com/util/images/AutoSizedImage.tsx
+++ b/src/view/com/util/images/AutoSizedImage.tsx
@@ -196,7 +196,7 @@ export function AutoSizedImage({
onPressIn={onPressIn}
// alt here is what screen readers actually use
accessibilityLabel={image.alt}
- accessibilityHint={_(msg`Tap to view full image`)}
+ accessibilityHint={_(msg`Views full image`)}
style={[
a.w_full,
a.rounded_md,
@@ -218,7 +218,7 @@ export function AutoSizedImage({
onPressIn={onPressIn}
// alt here is what screen readers actually use
accessibilityLabel={image.alt}
- accessibilityHint={_(msg`Tap to view full image`)}
+ accessibilityHint={_(msg`Views full image`)}
style={[a.h_full]}>
{contents}
diff --git a/src/view/com/util/post-ctrls/PostCtrls.tsx b/src/view/com/util/post-ctrls/PostCtrls.tsx
index f73cede352..b61bad2ca9 100644
--- a/src/view/com/util/post-ctrls/PostCtrls.tsx
+++ b/src/view/com/util/post-ctrls/PostCtrls.tsx
@@ -26,6 +26,7 @@ import {makeProfileLink} from '#/lib/routes/links'
import {shareUrl} from '#/lib/sharing'
import {useGate} from '#/lib/statsig/statsig'
import {toShareUrl} from '#/lib/strings/url-helpers'
+import {useProfileShadow} from '#/state/cache/profile-shadow'
import {Shadow} from '#/state/cache/types'
import {useFeedFeedbackContext} from '#/state/feed-feedback'
import {
@@ -94,6 +95,15 @@ let PostCtrls = ({
post.author.viewer?.blockingByList,
)
+ const shadowedAuthor = useProfileShadow(post.author)
+ const followersCanReply = !!threadgateRecord?.allow?.find(
+ rule => rule.$type === 'app.bsky.feed.threadgate#followerRule',
+ )
+ const canOverrideReplyDisabled =
+ followersCanReply &&
+ shadowedAuthor.viewer?.following?.startsWith('at://did')
+ const replyDisabled = post.viewer?.replyDisabled && !canOverrideReplyDisabled
+
const shouldShowLoggedOutWarning = React.useMemo(() => {
return (
post.author.did !== currentAccount?.did &&
@@ -247,13 +257,13 @@ let PostCtrls = ({
{
- if (!post.viewer?.replyDisabled) {
+ if (!replyDisabled) {
playHaptic('Light')
requireAuth(() => onPressReply())
}
diff --git a/src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx b/src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx
index 8ac7ee499d..e78abdf176 100644
--- a/src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx
+++ b/src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx
@@ -56,7 +56,7 @@ function PlaceholderOverlay({
{!isPlayerActive ? (
diff --git a/src/view/com/util/post-embeds/GifEmbed.tsx b/src/view/com/util/post-embeds/GifEmbed.tsx
index 4dbc7d588f..a839294f1c 100644
--- a/src/view/com/util/post-embeds/GifEmbed.tsx
+++ b/src/view/com/util/post-embeds/GifEmbed.tsx
@@ -39,7 +39,7 @@ function PlaybackControls({
return (
{isPlaying ? (
@@ -155,7 +155,7 @@ function VideoControls({
? _(msg({message: `Unmute`, context: 'video'}))
: _(msg({message: `Mute`, context: 'video'}))
}
- accessibilityHint={_(msg`Tap to toggle sound`)}
+ accessibilityHint={_(msg`Toggles the sound`)}
style={{right: 6}}>
{muted ? (
diff --git a/src/view/screens/ProfileList.tsx b/src/view/screens/ProfileList.tsx
index 4558a907b0..435b09c07d 100644
--- a/src/view/screens/ProfileList.tsx
+++ b/src/view/screens/ProfileList.tsx
@@ -1007,7 +1007,7 @@ function ErrorScreen({error}: {error: string}) {
diff --git a/src/view/screens/Search/Search.tsx b/src/view/screens/Search/Search.tsx
index 801381a036..f16b4fff2a 100644
--- a/src/view/screens/Search/Search.tsx
+++ b/src/view/screens/Search/Search.tsx
@@ -1,4 +1,4 @@
-import React from 'react'
+import React, {useCallback, useLayoutEffect, useMemo} from 'react'
import {
ActivityIndicator,
Image,
@@ -10,7 +10,6 @@ import {
View,
} from 'react-native'
import {ScrollView as RNGHScrollView} from 'react-native-gesture-handler'
-import RNPickerSelect from 'react-native-picker-select'
import {AppBskyActorDefs, AppBskyFeedDefs, moderateProfile} from '@atproto/api'
import {
FontAwesomeIcon,
@@ -18,11 +17,10 @@ import {
} from '@fortawesome/react-native-fontawesome'
import {msg, Trans} from '@lingui/macro'
import {useLingui} from '@lingui/react'
-import AsyncStorage from '@react-native-async-storage/async-storage'
import {useFocusEffect, useNavigation} from '@react-navigation/native'
import {APP_LANGUAGES, LANGUAGES} from '#/lib/../locale/languages'
-import {createHitslop} from '#/lib/constants'
+import {createHitslop, HITSLOP_20} from '#/lib/constants'
import {HITSLOP_10} from '#/lib/constants'
import {useNonReactiveCallback} from '#/lib/hooks/useNonReactiveCallback'
import {usePalette} from '#/lib/hooks/usePalette'
@@ -37,7 +35,6 @@ import {
import {sanitizeDisplayName} from '#/lib/strings/display-names'
import {augmentSearchQuery} from '#/lib/strings/helpers'
import {languageName} from '#/locale/helpers'
-import {logger} from '#/logger'
import {isNative, isWeb} from '#/platform/detection'
import {listenSoftReset} from '#/state/events'
import {useLanguagePrefs} from '#/state/preferences/languages'
@@ -45,9 +42,9 @@ import {useModerationOpts} from '#/state/preferences/moderation-opts'
import {useActorAutocompleteQuery} from '#/state/queries/actor-autocomplete'
import {useActorSearch} from '#/state/queries/actor-search'
import {usePopularFeedsSearch} from '#/state/queries/feed'
+import {useProfilesQuery} from '#/state/queries/profile'
import {useSearchPostsQuery} from '#/state/queries/search-posts'
import {useSession} from '#/state/session'
-import {useSetDrawerOpen} from '#/state/shell'
import {useSetMinimalShellMode} from '#/state/shell'
import {Pager} from '#/view/com/pager/Pager'
import {TabBar} from '#/view/com/pager/TabBar'
@@ -61,17 +58,24 @@ import {SearchLinkCard, SearchProfileCard} from '#/view/shell/desktop/Search'
import {makeSearchQuery, parseSearchQuery} from '#/screens/Search/utils'
import {
atoms as a,
+ native,
+ platform,
tokens,
useBreakpoints,
- useTheme as useThemeNew,
+ useTheme,
web,
} from '#/alf'
import {Button, ButtonIcon, ButtonText} from '#/components/Button'
import * as FeedCard from '#/components/FeedCard'
import {SearchInput} from '#/components/forms/SearchInput'
-import {ChevronBottom_Stroke2_Corner0_Rounded as ChevronDown} from '#/components/icons/Chevron'
-import {Menu_Stroke2_Corner0_Rounded as Menu} from '#/components/icons/Menu'
+import {
+ ChevronBottom_Stroke2_Corner0_Rounded as ChevronDownIcon,
+ ChevronTopBottom_Stroke2_Corner0_Rounded as ChevronUpDownIcon,
+} from '#/components/icons/Chevron'
+import {Earth_Stroke2_Corner0_Rounded as EarthIcon} from '#/components/icons/Globe'
import * as Layout from '#/components/Layout'
+import * as Menu from '#/components/Menu'
+import {account, useStorage} from '#/storage'
function Loader() {
return (
@@ -278,7 +282,7 @@ let SearchScreenFeedsResults = ({
query: string
active: boolean
}): React.ReactNode => {
- const t = useThemeNew()
+ const t = useTheme()
const {_} = useLingui()
const {data: results, isFetched} = usePopularFeedsSearch({
@@ -323,103 +327,95 @@ function SearchLanguageDropdown({
value: string
onChange(value: string): void
}) {
- const t = useThemeNew()
const {_} = useLingui()
const {appLanguage, contentLanguages} = useLanguagePrefs()
- const items = React.useMemo(() => {
- return [
- {
- label: _(msg`Any language`),
- inputLabel: _(msg`Any language`),
- value: '',
- key: '*',
- },
- ].concat(
- LANGUAGES.filter(
- (lang, index, self) =>
- Boolean(lang.code2) && // reduce to the code2 varieties
- index === self.findIndex(t => t.code2 === lang.code2), // remove dupes (which will happen)
- )
- .map(l => ({
- label: languageName(l, appLanguage),
- inputLabel: languageName(l, appLanguage),
- value: l.code2,
- key: l.code2 + l.code3,
- }))
- .sort((a, b) => {
- // prioritize user's languages
- const aIsUser = contentLanguages.includes(a.value)
- const bIsUser = contentLanguages.includes(b.value)
- if (aIsUser && !bIsUser) return -1
- if (bIsUser && !aIsUser) return 1
- // prioritize "common" langs in the network
- const aIsCommon = !!APP_LANGUAGES.find(al => al.code2 === a.value)
- const bIsCommon = !!APP_LANGUAGES.find(al => al.code2 === b.value)
- if (aIsCommon && !bIsCommon) return -1
- if (bIsCommon && !aIsCommon) return 1
- // fall back to alphabetical
- return a.label.localeCompare(b.label)
- }),
+ const languages = useMemo(() => {
+ return LANGUAGES.filter(
+ (lang, index, self) =>
+ Boolean(lang.code2) && // reduce to the code2 varieties
+ index === self.findIndex(t => t.code2 === lang.code2), // remove dupes (which will happen)
)
- }, [_, appLanguage, contentLanguages])
+ .map(l => ({
+ label: languageName(l, appLanguage),
+ value: l.code2,
+ key: l.code2 + l.code3,
+ }))
+ .sort((a, b) => {
+ // prioritize user's languages
+ const aIsUser = contentLanguages.includes(a.value)
+ const bIsUser = contentLanguages.includes(b.value)
+ if (aIsUser && !bIsUser) return -1
+ if (bIsUser && !aIsUser) return 1
+ // prioritize "common" langs in the network
+ const aIsCommon = !!APP_LANGUAGES.find(al => al.code2 === a.value)
+ const bIsCommon = !!APP_LANGUAGES.find(al => al.code2 === b.value)
+ if (aIsCommon && !bIsCommon) return -1
+ if (bIsCommon && !aIsCommon) return 1
+ // fall back to alphabetical
+ return a.label.localeCompare(b.label)
+ })
+ }, [appLanguage, contentLanguages])
- const style = {
- backgroundColor: t.atoms.bg_contrast_25.backgroundColor,
- color: t.atoms.text.color,
- fontSize: a.text_xs.fontSize,
- fontFamily: 'inherit',
- fontWeight: a.font_bold.fontWeight,
- paddingHorizontal: 14,
- paddingRight: 32,
- paddingVertical: 8,
- borderRadius: a.rounded_full.borderRadius,
- borderWidth: a.border.borderWidth,
- borderColor: t.atoms.border_contrast_low.borderColor,
- }
+ const currentLanguageLabel =
+ languages.find(lang => lang.value === value)?.label ?? _(msg`All languages`)
return (
- (
-
- )}
- useNativeAndroidPickerStyle={false}
- style={{
- iconContainer: {
- pointerEvents: 'none',
- right: a.px_sm.paddingRight,
- top: 0,
- bottom: 0,
- display: 'flex',
- justifyContent: 'center',
- },
- inputAndroid: {
- ...style,
- paddingVertical: 2,
- },
- inputIOS: {
- ...style,
- },
- inputWeb: web({
- ...style,
- cursor: 'pointer',
- // @ts-ignore web only
- '-moz-appearance': 'none',
- '-webkit-appearance': 'none',
- appearance: 'none',
- outline: 0,
- borderWidth: 0,
- overflow: 'hidden',
- whiteSpace: 'nowrap',
- textOverflow: 'ellipsis',
- }),
- }}
- />
+
+
+ {({props}) => (
+
+
+ {currentLanguageLabel}
+
+
+ )}
+
+
+
+ Filter search by language
+
+ onChange('')}>
+
+ All languages
+
+
+
+
+
+ {languages.map(lang => (
+ onChange(lang.value)}>
+ {lang.label}
+
+
+ ))}
+
+
+
)
}
@@ -534,12 +530,7 @@ let SearchScreenInner = ({
(
-
+
section.title)} {...props} />
)}
@@ -597,13 +588,13 @@ SearchScreenInner = React.memo(SearchScreenInner)
export function SearchScreen(
props: NativeStackScreenProps,
) {
- const t = useThemeNew()
+ const t = useTheme()
const {gtMobile} = useBreakpoints()
const navigation = useNavigation()
const textInput = React.useRef(null)
const {_} = useLingui()
- const setDrawerOpen = useSetDrawerOpen()
const setMinimalShellMode = useSetMinimalShellMode()
+ const {currentAccount} = useSession()
// Query terms
const queryParam = props.route?.params?.q ?? ''
@@ -612,20 +603,72 @@ export function SearchScreen(
useActorAutocompleteQuery(searchText, true)
const [showAutocomplete, setShowAutocomplete] = React.useState(false)
- const [searchHistory, setSearchHistory] = React.useState([])
- const [selectedProfiles, setSelectedProfiles] = React.useState<
- AppBskyActorDefs.ProfileViewBasic[]
- >([])
+
+ const [termHistory = [], setTermHistory] = useStorage(account, [
+ currentAccount?.did ?? 'pwi',
+ 'searchTermHistory',
+ ] as const)
+ const [accountHistory = [], setAccountHistory] = useStorage(account, [
+ currentAccount?.did ?? 'pwi',
+ 'searchAccountHistory',
+ ])
+
+ const {data: accountHistoryProfiles} = useProfilesQuery({
+ handles: accountHistory,
+ maintainData: true,
+ })
+
+ const updateSearchHistory = useCallback(
+ async (item: string) => {
+ if (!item) return
+ const newSearchHistory = [
+ item,
+ ...termHistory.filter(search => search !== item),
+ ].slice(0, 6)
+ setTermHistory(newSearchHistory)
+ },
+ [termHistory, setTermHistory],
+ )
+
+ const updateProfileHistory = useCallback(
+ async (item: AppBskyActorDefs.ProfileViewBasic) => {
+ const newAccountHistory = [
+ item.did,
+ ...accountHistory.filter(p => p !== item.did),
+ ].slice(0, 5)
+ setAccountHistory(newAccountHistory)
+ },
+ [accountHistory, setAccountHistory],
+ )
+
+ const deleteSearchHistoryItem = useCallback(
+ async (item: string) => {
+ setTermHistory(termHistory.filter(search => search !== item))
+ },
+ [termHistory, setTermHistory],
+ )
+ const deleteProfileHistoryItem = useCallback(
+ async (item: AppBskyActorDefs.ProfileViewBasic) => {
+ setAccountHistory(accountHistory.filter(p => p !== item.did))
+ },
+ [accountHistory, setAccountHistory],
+ )
const {params, query, queryWithParams} = useQueryManager({
initialQuery: queryParam,
})
const showFilters = Boolean(queryWithParams && !showAutocomplete)
- /*
- * Arbitrary sizing, so guess and check, used for sticky header alignment and
- * sizing.
- */
- const headerHeight = 60 + (showFilters ? 40 : 0)
+
+ // web only - measure header height for sticky positioning
+ const [headerHeight, setHeaderHeight] = React.useState(0)
+ const headerRef = React.useRef(null)
+ useLayoutEffect(() => {
+ if (isWeb) {
+ if (!headerRef.current) return
+ const measurement = (headerRef.current as Element).getBoundingClientRect()
+ setHeaderHeight(measurement.height)
+ }
+ }, [])
useFocusEffect(
useNonReactiveCallback(() => {
@@ -635,30 +678,6 @@ export function SearchScreen(
}),
)
- React.useEffect(() => {
- const loadSearchHistory = async () => {
- try {
- const history = await AsyncStorage.getItem('searchHistory')
- if (history !== null) {
- setSearchHistory(JSON.parse(history))
- }
- const profiles = await AsyncStorage.getItem('selectedProfiles')
- if (profiles !== null) {
- setSelectedProfiles(JSON.parse(profiles))
- }
- } catch (e: any) {
- logger.error('Failed to load search history', {message: e})
- }
- }
-
- loadSearchHistory()
- }, [])
-
- const onPressMenu = React.useCallback(() => {
- textInput.current?.blur()
- setDrawerOpen(true)
- }, [setDrawerOpen])
-
const onPressClearQuery = React.useCallback(() => {
scrollToTopWeb()
setSearchText('')
@@ -670,57 +689,6 @@ export function SearchScreen(
setSearchText(text)
}, [])
- const updateSearchHistory = React.useCallback(
- async (newQuery: string) => {
- newQuery = newQuery.trim()
- if (newQuery) {
- let newHistory = [
- newQuery,
- ...searchHistory.filter(q => q !== newQuery),
- ]
-
- if (newHistory.length > 5) {
- newHistory = newHistory.slice(0, 5)
- }
-
- setSearchHistory(newHistory)
- try {
- await AsyncStorage.setItem(
- 'searchHistory',
- JSON.stringify(newHistory),
- )
- } catch (e: any) {
- logger.error('Failed to save search history', {message: e})
- }
- }
- },
- [searchHistory, setSearchHistory],
- )
-
- const updateSelectedProfiles = React.useCallback(
- async (profile: AppBskyActorDefs.ProfileViewBasic) => {
- let newProfiles = [
- profile,
- ...selectedProfiles.filter(p => p.did !== profile.did),
- ]
-
- if (newProfiles.length > 5) {
- newProfiles = newProfiles.slice(0, 5)
- }
-
- setSelectedProfiles(newProfiles)
- try {
- await AsyncStorage.setItem(
- 'selectedProfiles',
- JSON.stringify(newProfiles),
- )
- } catch (e: any) {
- logger.error('Failed to save selected profiles', {message: e})
- }
- },
- [selectedProfiles, setSelectedProfiles],
- )
-
const navigateToItem = React.useCallback(
(item: string) => {
scrollToTopWeb()
@@ -774,10 +742,10 @@ export function SearchScreen(
(profile: AppBskyActorDefs.ProfileViewBasic) => {
// Slight delay to avoid updating during push nav animation.
setTimeout(() => {
- updateSelectedProfiles(profile)
+ updateProfileHistory(profile)
}, 400)
},
- [updateSelectedProfiles],
+ [updateProfileHistory],
)
const onSoftReset = React.useCallback(() => {
@@ -798,36 +766,6 @@ export function SearchScreen(
}, [onSoftReset, setMinimalShellMode]),
)
- const handleRemoveHistoryItem = React.useCallback(
- (itemToRemove: string) => {
- const updatedHistory = searchHistory.filter(item => item !== itemToRemove)
- setSearchHistory(updatedHistory)
- AsyncStorage.setItem(
- 'searchHistory',
- JSON.stringify(updatedHistory),
- ).catch(e => {
- logger.error('Failed to update search history', {message: e})
- })
- },
- [searchHistory],
- )
-
- const handleRemoveProfile = React.useCallback(
- (profileToRemove: AppBskyActorDefs.ProfileViewBasic) => {
- const updatedProfiles = selectedProfiles.filter(
- profile => profile.did !== profileToRemove.did,
- )
- setSelectedProfiles(updatedProfiles)
- AsyncStorage.setItem(
- 'selectedProfiles',
- JSON.stringify(updatedProfiles),
- ).catch(e => {
- logger.error('Failed to update selected profiles', {message: e})
- })
- },
- [selectedProfiles],
- )
-
const onSearchInputFocus = React.useCallback(() => {
if (isWeb) {
// Prevent a jump on iPad by ensuring that
@@ -843,75 +781,89 @@ export function SearchScreen(
return (
{
+ if (isWeb) setHeaderHeight(evt.nativeEvent.layout.height)
+ }}
style={[
+ a.relative,
+ a.z_10,
web({
- height: headerHeight,
position: 'sticky',
top: 0,
- zIndex: 1,
}),
]}>
-
-
-
- {!gtMobile && !showAutocomplete && (
-
-
-
- )}
-
-
-
- {showAutocomplete && (
-
-
- Cancel
-
-
- )}
+
+ {!gtMobile && (
+
+
+
+
+
+ Search
+
+
+ {showFilters ? (
+
+ ) : (
+
+ )}
+
+ )}
+
+
+
+
+
+
+ {showAutocomplete && (
+
+
+ Cancel
+
+
+ )}
+
- {showFilters && (
-
-
+ {showFilters && gtMobile && (
+
-
- )}
+ )}
+
@@ -932,12 +884,12 @@ export function SearchScreen(
/>
) : (
)}
@@ -1087,7 +1039,7 @@ function SearchHistory({
accessibilityRole="button"
accessibilityLabel={_(msg`Remove profile`)}
accessibilityHint={_(
- msg`Remove profile from search history`,
+ msg`Removes profile from search history`,
)}
onPress={() => onRemoveProfileClick(profile)}
hitSlop={createHitslop(6)}
diff --git a/src/view/shell/Composer.web.tsx b/src/view/shell/Composer.web.tsx
index 80a112705f..b76e883721 100644
--- a/src/view/shell/Composer.web.tsx
+++ b/src/view/shell/Composer.web.tsx
@@ -5,6 +5,7 @@ import {useFocusGuards} from '@radix-ui/react-focus-guards'
import {FocusScope} from '@radix-ui/react-focus-scope'
import {RemoveScrollBar} from 'react-remove-scroll-bar'
+import {useA11y} from '#/state/a11y'
import {useModals} from '#/state/modals'
import {ComposerOpts, useComposerState} from '#/state/shell/composer'
import {
@@ -12,7 +13,7 @@ import {
EmojiPickerPosition,
EmojiPickerState,
} from '#/view/com/composer/text-input/web/EmojiPicker.web'
-import {useBreakpoints, useTheme} from '#/alf'
+import {atoms as a, flatten, useBreakpoints, useTheme} from '#/alf'
import {ComposePost, useComposerCancelRef} from '../com/composer/Composer'
const BOTTOM_BAR_HEIGHT = 61
@@ -41,6 +42,7 @@ function Inner({state}: {state: ComposerOpts}) {
const {isModalActive} = useModals()
const t = useTheme()
const {gtMobile} = useBreakpoints()
+ const {reduceMotionEnabled} = useA11y()
const [pickerState, setPickerState] = React.useState({
isOpen: false,
pos: {top: 0, left: 0, right: 0, bottom: 0, nextFocusRef: null},
@@ -71,17 +73,15 @@ function Inner({state}: {state: ComposerOpts}) {
evt.preventDefault()}
onInteractOutside={evt => evt.preventDefault()}
onDismiss={() => {
@@ -96,6 +96,11 @@ function Inner({state}: {state: ComposerOpts}) {
!gtMobile && styles.containerMobile,
t.atoms.bg,
t.atoms.border_contrast_medium,
+ !reduceMotionEnabled && [
+ a.zoom_fade_in,
+ {animationDelay: 0.1},
+ {animationFillMode: 'backwards'},
+ ],
]}>
+
{accounts && accounts.length > 0 && (
<>
diff --git a/src/view/shell/index.web.tsx b/src/view/shell/index.web.tsx
index 8c30813ab5..e194a49de8 100644
--- a/src/view/shell/index.web.tsx
+++ b/src/view/shell/index.web.tsx
@@ -1,4 +1,4 @@
-import React, {useEffect} from 'react'
+import {useEffect, useLayoutEffect, useState} from 'react'
import {StyleSheet, TouchableWithoutFeedback, View} from 'react-native'
import {msg} from '@lingui/macro'
import {useLingui} from '@lingui/react'
@@ -33,6 +33,20 @@ function ShellInner() {
const closeAllActiveElements = useCloseAllActiveElements()
const {_} = useLingui()
const showDrawer = !isDesktop && isDrawerOpen
+ const [showDrawerDelayedExit, setShowDrawerDelayedExit] = useState(showDrawer)
+
+ useLayoutEffect(() => {
+ if (showDrawer !== showDrawerDelayedExit) {
+ if (showDrawer) {
+ setShowDrawerDelayedExit(true)
+ } else {
+ const timeout = setTimeout(() => {
+ setShowDrawerDelayedExit(false)
+ }, 160)
+ return () => clearTimeout(timeout)
+ }
+ }
+ }, [showDrawer, showDrawerDelayedExit])
useComposerKeyboardShortcut()
useIntentHandler()
@@ -56,7 +70,7 @@ function ShellInner() {
- {showDrawer && (
+ {showDrawerDelayedExit && (
<>
+ accessibilityLabel={_(msg`Close drawer menu`)}
+ accessibilityHint="">
-
+
@@ -109,7 +130,6 @@ const styles = StyleSheet.create({
backgroundColor: colors.black, // TODO
},
drawerMask: {
- // @ts-ignore web only
position: 'fixed',
width: '100%',
height: '100%',
@@ -118,10 +138,11 @@ const styles = StyleSheet.create({
},
drawerContainer: {
display: 'flex',
- // @ts-ignore web only
position: 'fixed',
top: 0,
left: 0,
height: '100%',
+ width: 330,
+ maxWidth: '80%',
},
})
diff --git a/tsconfig.json b/tsconfig.json
index 1c5e27eecd..001b5247e0 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -3,7 +3,7 @@
"compilerOptions": {
"jsx": "react-jsx",
"module": "esnext",
- "types": ["node"],
+ "types": ["node", "jest"],
"paths": {
"#/*": ["./src/*"],
"lib/*": ["./src/lib/*"],
diff --git a/yarn.lock b/yarn.lock
index 3ff7db7f2d..7d6d8af00c 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -277,7 +277,7 @@
multiformats "^9.9.0"
zod "^3.23.8"
-"@atproto/lexicon@^0.4.7":
+"@atproto/lexicon@^0.4.4", "@atproto/lexicon@^0.4.7":
version "0.4.7"
resolved "https://registry.yarnpkg.com/@atproto/lexicon/-/lexicon-0.4.7.tgz#f5d31615c21bcfd3e655f1e4f11a40a62fea9f86"
integrity sha512-/x6h3tAiDNzSi4eXtC8ke65B7UzsagtlGRHmUD95698x5lBRpDnpizj0fZWTZVYed5qnOmz/ZEue+v3wDmO61g==