diff --git a/.eslintrc.js b/.eslintrc.js index 50365a09ee..2786b35364 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -1,8 +1,9 @@ module.exports = { root: true, extends: [ - '@react-native-community', + '@react-native', 'plugin:react/recommended', + 'plugin:react/jsx-runtime', 'plugin:react-native-a11y/ios', 'prettier', ], @@ -19,6 +20,7 @@ module.exports = { // Temporary until https://github.com/facebook/react-native/pull/43756 gets into a release. 'prettier/prettier': 0, 'react/no-unescaped-entities': 0, + 'react/prop-types': 0, 'react-native/no-inline-styles': 0, 'bsky-internal/avoid-unwrapped-text': [ 'error', diff --git a/app.config.js b/app.config.js index ecdbffb6c1..56142c5f19 100644 --- a/app.config.js +++ b/app.config.js @@ -92,6 +92,7 @@ module.exports = function (config) { 'Used to save images to your library.', NSPhotoLibraryUsageDescription: 'Used for profile pictures, posts, and other kinds of content', + CFBundleSpokenName: 'Blue Sky', }, associatedDomains: ASSOCIATED_DOMAINS, splash: { diff --git a/lingui.config.js b/lingui.config.js index d84fe9f57a..c8b91320bd 100644 --- a/lingui.config.js +++ b/lingui.config.js @@ -15,6 +15,7 @@ module.exports = { 'it', 'ja', 'ko', + 'pl', 'pt-BR', 'ru', 'th', diff --git a/metro.config.js b/metro.config.js index e6a6676f06..d083f2a840 100644 --- a/metro.config.js +++ b/metro.config.js @@ -9,6 +9,11 @@ cfg.resolver.sourceExts = process.env.RN_SRC_EXT if (cfg.resolver.resolveRequest) { throw Error('Update this override because it is conflicting now.') } + +if (process.env.BSKY_PROFILE) { + cfg.cacheVersion += ':PROFILE' +} + cfg.resolver.resolveRequest = (context, moduleName, platform) => { // HACK: manually resolve a few packages that use `exports` in `package.json`. // A proper solution is to enable `unstable_enablePackageExports` but this needs careful testing. @@ -29,6 +34,15 @@ cfg.resolver.resolveRequest = (context, moduleName, platform) => { if (moduleName === '@ipld/dag-cbor') { return context.resolveRequest(context, '@ipld/dag-cbor/src', platform) } + if (process.env.BSKY_PROFILE) { + if (moduleName.endsWith('ReactNativeRenderer-prod')) { + return context.resolveRequest( + context, + moduleName.replace('-prod', '-profiling'), + platform, + ) + } + } return context.resolveRequest(context, moduleName, platform) } diff --git a/package.json b/package.json index 2dc5210b78..3f93da07b7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bsky.app", - "version": "1.94.0", + "version": "1.95.0", "private": true, "engines": { "node": ">=20" @@ -11,6 +11,8 @@ "postinstall": "patch-package && yarn intl:compile", "prebuild": "expo prebuild --clean", "android": "expo run:android", + "android:prod": "expo run:android --variant release", + "android:profile": "BSKY_PROFILE=1 expo run:android --variant release", "ios": "expo run:ios", "web": "expo start --web", "use-build-number": "./scripts/useBuildNumberEnv.sh", @@ -23,7 +25,6 @@ "build-embed": "cd bskyembed && yarn build && yarn build-snippet && cd .. && node ./scripts/post-embed-build.js", "start": "expo start --dev-client", "start:prod": "expo start --dev-client --no-dev --minify", - "clean-cache": "rm -rf node_modules/.cache/babel-loader/*", "test": "NODE_ENV=test jest --forceExit --testTimeout=20000 --bail", "test-watch": "NODE_ENV=test jest --watchAll", "test-ci": "NODE_ENV=test jest --ci --forceExit --reporters=default --reporters=jest-junit", @@ -140,6 +141,7 @@ "expo-sharing": "^12.0.1", "expo-splash-screen": "~0.27.4", "expo-status-bar": "~1.12.1", + "expo-system-ui": "^3.0.4", "expo-task-manager": "~11.8.1", "expo-updates": "~0.25.14", "expo-web-browser": "~13.0.3", @@ -152,11 +154,6 @@ "lodash.chunk": "^4.2.0", "lodash.debounce": "^4.0.8", "lodash.isequal": "^4.5.0", - "lodash.omit": "^4.5.0", - "lodash.once": "^4.1.1", - "lodash.random": "^3.2.0", - "lodash.samplesize": "^4.2.0", - "lodash.set": "^4.3.2", "lodash.shuffle": "^4.2.0", "lodash.throttle": "^4.1.1", "multiformats": "^13.1.0", @@ -217,34 +214,25 @@ "@lingui/cli": "^4.5.0", "@lingui/macro": "^4.5.0", "@pmmmwh/react-refresh-webpack-plugin": "^0.5.11", - "@react-native-community/eslint-config": "^3.0.0", + "@react-native/eslint-config": "^0.76.2", "@react-native/typescript-config": "^0.74.1", "@testing-library/jest-native": "^5.4.1", "@testing-library/react-native": "^11.5.2", - "@tsconfig/react-native": "^2.0.3", - "@types/he": "^1.1.2", "@types/jest": "^29.4.0", "@types/lodash.chunk": "^4.2.7", "@types/lodash.debounce": "^4.0.7", "@types/lodash.isequal": "^4.5.6", - "@types/lodash.omit": "^4.5.7", - "@types/lodash.once": "^4.1.7", - "@types/lodash.random": "^3.2.7", - "@types/lodash.samplesize": "^4.2.7", - "@types/lodash.set": "^4.3.7", "@types/lodash.shuffle": "^4.2.7", "@types/psl": "^1.1.1", "@types/react-dom": "^18.2.18", "@types/react-responsive": "^8.0.5", "@types/react-test-renderer": "^17.0.1", - "@typescript-eslint/eslint-plugin": "^5.48.2", - "@typescript-eslint/parser": "^5.48.2", + "@typescript-eslint/eslint-plugin": "^7.18.0", + "@typescript-eslint/parser": "^7.18.0", "babel-jest": "^29.7.0", - "babel-loader": "^9.1.2", "babel-plugin-macros": "^3.1.0", "babel-plugin-module-resolver": "^5.0.0", "babel-plugin-react-compiler": "^19.0.0-beta-a7bf2bd-20241110", - "babel-plugin-react-native-web": "^0.18.12", "babel-preset-expo": "^10.0.0", "eslint": "^8.19.0", "eslint-plugin-bsky-internal": "link:./eslint", @@ -255,7 +243,6 @@ "eslint-plugin-react-native-a11y": "^3.3.0", "eslint-plugin-simple-import-sort": "^12.0.0", "file-loader": "6.2.0", - "html-webpack-plugin": "^5.5.0", "husky": "^8.0.3", "is-ci": "^3.0.1", "jest": "^29.7.0", @@ -270,11 +257,7 @@ "svgo": "^3.3.2", "ts-node": "^10.9.1", "typescript": "^5.5.4", - "url-loader": "^4.1.1", - "webpack": "^5.75.0", - "webpack-bundle-analyzer": "^4.10.1", - "webpack-cli": "^5.0.1", - "webpack-dev-server": "^4.11.1" + "webpack-bundle-analyzer": "^4.10.1" }, "resolutions": { "@types/react": "^18", diff --git a/src/App.native.tsx b/src/App.native.tsx index 668fb91fcd..9b2940aa9d 100644 --- a/src/App.native.tsx +++ b/src/App.native.tsx @@ -69,6 +69,7 @@ import {Provider as PortalProvider} from '#/components/Portal' import {Splash} from '#/Splash' import {BottomSheetProvider} from '../modules/bottom-sheet' import {BackgroundNotificationPreferencesProvider} from '../modules/expo-background-notification-handler/src/BackgroundNotificationHandlerProvider' +import {AppProfiler} from './AppProfiler' SplashScreen.preventAutoHideAsync() @@ -184,40 +185,42 @@ function App() { * that is set up in the InnerApp component above. */ return ( - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ) } diff --git a/src/AppProfiler.tsx b/src/AppProfiler.tsx new file mode 100644 index 0000000000..31a4cc54ef --- /dev/null +++ b/src/AppProfiler.tsx @@ -0,0 +1,29 @@ +import React, {Profiler} from 'react' + +// Don't let it get stripped out in profiling builds (which apply production Babel preset). +const log = (global as any)['con' + 'sole'].log + +function onRender(id: string, phase: string, actualDuration: number) { + if (!__DEV__) { + // This block of code will exist in the production build of the app. + // However, only profiling builds of React call `onRender` so it's dead code in actual production. + const message = ` ${id}:${phase} ${ + actualDuration > 500 + ? '(╯°□°)╯ ' + : actualDuration > 100 + ? '[!!] ' + : actualDuration > 16 + ? '[!] ' + : '' + }${Math.round(actualDuration)}ms` + log(message) + } +} + +export function AppProfiler({children}: {children: React.ReactNode}) { + return ( + + {children} + + ) +} diff --git a/src/components/AvatarStack.tsx b/src/components/AvatarStack.tsx index 5f790fb671..aea4725128 100644 --- a/src/components/AvatarStack.tsx +++ b/src/components/AvatarStack.tsx @@ -1,4 +1,3 @@ -import React from 'react' import {View} from 'react-native' import {moderateProfile} from '@atproto/api' diff --git a/src/components/Button.tsx b/src/components/Button.tsx index aaac73bd38..3329dca050 100644 --- a/src/components/Button.tsx +++ b/src/components/Button.tsx @@ -458,7 +458,6 @@ export const Button = React.forwardRef( // @ts-ignore - this will always be a pressable ref={ref} aria-label={label} - aria-pressed={state.pressed} accessibilityLabel={label} disabled={disabled || false} accessibilityState={{ diff --git a/src/components/Dialog/index.tsx b/src/components/Dialog/index.tsx index 0e78fcf97f..c9455c5cce 100644 --- a/src/components/Dialog/index.tsx +++ b/src/components/Dialog/index.tsx @@ -75,7 +75,7 @@ export function Outer({ try { cb() } catch (e: any) { - logger.error('Error running close callback', e) + logger.error(e || 'Error running close callback') } } diff --git a/src/components/Dialog/shared.tsx b/src/components/Dialog/shared.tsx index 6f9bc26781..44a4f6b0bb 100644 --- a/src/components/Dialog/shared.tsx +++ b/src/components/Dialog/shared.tsx @@ -1,7 +1,7 @@ import React from 'react' import {StyleProp, TextStyle, View, ViewStyle} from 'react-native' -import {atoms as a, useTheme, web} from '#/alf' +import {atoms as a, useTheme} from '#/alf' import {Text} from '#/components/Typography' export function Header({ @@ -29,10 +29,8 @@ export function Header({ a.border_b, t.atoms.border_contrast_medium, t.atoms.bg, - web([ - {borderRadiusTopLeft: a.rounded_md.borderRadius}, - {borderRadiusTopRight: a.rounded_md.borderRadius}, - ]), + {borderTopLeftRadius: a.rounded_md.borderRadius}, + {borderTopRightRadius: a.rounded_md.borderRadius}, style, ]}> {renderLeft && ( diff --git a/src/components/Divider.tsx b/src/components/Divider.tsx index ff0bbb0451..e4891aacb1 100644 --- a/src/components/Divider.tsx +++ b/src/components/Divider.tsx @@ -1,4 +1,3 @@ -import React from 'react' import {View} from 'react-native' import {atoms as a, flatten, useTheme, ViewStyleProp} from '#/alf' diff --git a/src/components/Error.tsx b/src/components/Error.tsx index 2819986b34..dc8e53b46e 100644 --- a/src/components/Error.tsx +++ b/src/components/Error.tsx @@ -1,4 +1,3 @@ -import React from 'react' import {View} from 'react-native' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' diff --git a/src/components/GradientFill.tsx b/src/components/GradientFill.tsx index 3c64c8960e..fa39577d47 100644 --- a/src/components/GradientFill.tsx +++ b/src/components/GradientFill.tsx @@ -1,4 +1,3 @@ -import React from 'react' import {LinearGradient} from 'expo-linear-gradient' import {atoms as a, tokens} from '#/alf' diff --git a/src/components/IconCircle.tsx b/src/components/IconCircle.tsx index 806d35c385..2119c9f8df 100644 --- a/src/components/IconCircle.tsx +++ b/src/components/IconCircle.tsx @@ -1,4 +1,3 @@ -import React from 'react' import {View} from 'react-native' import { diff --git a/src/components/LikesDialog.tsx b/src/components/LikesDialog.tsx index 4c68596f73..cb000b4337 100644 --- a/src/components/LikesDialog.tsx +++ b/src/components/LikesDialog.tsx @@ -1,4 +1,4 @@ -import React, {useCallback, useMemo} from 'react' +import {useCallback, useMemo} from 'react' import {ActivityIndicator, FlatList, View} from 'react-native' import {AppBskyFeedGetLikes as GetLikes} from '@atproto/api' import {msg, Trans} from '@lingui/macro' diff --git a/src/components/Loader.web.tsx b/src/components/Loader.web.tsx index d8182673f6..acf0acfc47 100644 --- a/src/components/Loader.web.tsx +++ b/src/components/Loader.web.tsx @@ -1,4 +1,3 @@ -import React from 'react' import {View} from 'react-native' import {atoms as a, flatten, useTheme} from '#/alf' diff --git a/src/components/Menu/index.web.tsx b/src/components/Menu/index.web.tsx index d68dcba514..37ad67e29f 100644 --- a/src/components/Menu/index.web.tsx +++ b/src/components/Menu/index.web.tsx @@ -1,5 +1,3 @@ -/* eslint-disable react/prop-types */ - import React from 'react' import {Pressable, StyleProp, View, ViewStyle} from 'react-native' import {msg} from '@lingui/macro' diff --git a/src/components/ProgressGuide/List.tsx b/src/components/ProgressGuide/List.tsx index d0fd55d9c5..299d1e69fc 100644 --- a/src/components/ProgressGuide/List.tsx +++ b/src/components/ProgressGuide/List.tsx @@ -1,4 +1,3 @@ -import React from 'react' import {StyleProp, View, ViewStyle} from 'react-native' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' diff --git a/src/components/ProgressGuide/Task.tsx b/src/components/ProgressGuide/Task.tsx index f2ceba52ac..973ee1ac7f 100644 --- a/src/components/ProgressGuide/Task.tsx +++ b/src/components/ProgressGuide/Task.tsx @@ -1,4 +1,3 @@ -import React from 'react' import {View} from 'react-native' import * as Progress from 'react-native-progress' diff --git a/src/components/ReportDialog/SelectLabelerView.tsx b/src/components/ReportDialog/SelectLabelerView.tsx index 039bbf123f..df472241e1 100644 --- a/src/components/ReportDialog/SelectLabelerView.tsx +++ b/src/components/ReportDialog/SelectLabelerView.tsx @@ -1,4 +1,3 @@ -import React from 'react' import {View} from 'react-native' import {AppBskyLabelerDefs} from '@atproto/api' import {msg, Trans} from '@lingui/macro' diff --git a/src/components/StarterPack/ShareDialog.tsx b/src/components/StarterPack/ShareDialog.tsx index 997c6479c5..354d7bc4ee 100644 --- a/src/components/StarterPack/ShareDialog.tsx +++ b/src/components/StarterPack/ShareDialog.tsx @@ -1,4 +1,3 @@ -import React from 'react' import {View} from 'react-native' import {Image} from 'expo-image' import {requestMediaLibraryPermissionsAsync} from 'expo-image-picker' diff --git a/src/components/StarterPack/Wizard/WizardEditListDialog.tsx b/src/components/StarterPack/Wizard/WizardEditListDialog.tsx index 1e9f1c52d4..b67a8d302f 100644 --- a/src/components/StarterPack/Wizard/WizardEditListDialog.tsx +++ b/src/components/StarterPack/Wizard/WizardEditListDialog.tsx @@ -1,4 +1,4 @@ -import React, {useRef} from 'react' +import {useRef} from 'react' import type {ListRenderItemInfo} from 'react-native' import {View} from 'react-native' import {AppBskyActorDefs, ModerationOpts} from '@atproto/api' diff --git a/src/components/StarterPack/Wizard/WizardListCard.tsx b/src/components/StarterPack/Wizard/WizardListCard.tsx index 44f01a1545..75d2bff60e 100644 --- a/src/components/StarterPack/Wizard/WizardListCard.tsx +++ b/src/components/StarterPack/Wizard/WizardListCard.tsx @@ -1,4 +1,3 @@ -import React from 'react' import {Keyboard, View} from 'react-native' import { AppBskyActorDefs, diff --git a/src/components/SubtleWebHover.web.tsx b/src/components/SubtleWebHover.web.tsx index adabf46bfd..8943147e49 100644 --- a/src/components/SubtleWebHover.web.tsx +++ b/src/components/SubtleWebHover.web.tsx @@ -1,4 +1,3 @@ -import React from 'react' import {StyleSheet, View} from 'react-native' import {isTouchDevice} from '#/lib/browser' diff --git a/src/components/TagMenu/index.tsx b/src/components/TagMenu/index.tsx index ae9fcdae21..310ecc4c20 100644 --- a/src/components/TagMenu/index.tsx +++ b/src/components/TagMenu/index.tsx @@ -40,9 +40,37 @@ export function TagMenu({ tag: string authorHandle?: string }>) { + const navigation = useNavigation() + return ( + <> + {children} + + + + + + ) +} + +function TagMenuInner({ + control, + tag, + authorHandle, + navigation, +}: { + control: Dialog.DialogOuterProps['control'] + tag: string + authorHandle?: string + // Passed down because on native, we don't use real portals (and context would be wrong). + navigation: NavigationProp +}) { const {_} = useLingui() const t = useTheme() - const navigation = useNavigation() const {isLoading: isPreferencesLoading, data: preferences} = usePreferencesQuery() const { @@ -79,32 +107,75 @@ export function TagMenu({ }, [tag, preferences?.moderationPrefs?.mutedWords]) return ( - <> - {children} - - - - - {isPreferencesLoading ? ( - - - - ) : ( - <> + + {isPreferencesLoading ? ( + + + + ) : ( + <> + + { + control.close(() => { + navigation.push('Hashtag', { + tag: encodeURIComponent(tag), + }) + }) + })}> + + + + See{' '} + + {displayTag} + {' '} + posts + + + + + + {authorHandle && !isInvalidHandle(authorHandle) && ( + <> + + { control.close(() => { navigation.push('Hashtag', { tag: encodeURIComponent(tag), + author: authorHandle, }) }) })}> @@ -118,7 +189,7 @@ export function TagMenu({ a.px_lg, a.py_md, ]}> - + {displayTag} {' '} - posts + posts by this user + + )} - {authorHandle && !isInvalidHandle(authorHandle) && ( - <> - - - { - control.close(() => { - navigation.push('Hashtag', { - tag: encodeURIComponent(tag), - author: authorHandle, - }) - }) - })}> - - - - - See{' '} - - {displayTag} - {' '} - posts by this user - - - - - - )} - - {preferences ? ( - <> - + {preferences ? ( + <> + - - - ) : null} - + }) + }}> + + + + {isMuted ? _(msg`Unmute`) : _(msg`Mute`)}{' '} + + {displayTag} + {' '} + posts + + + + + ) : null} + - - - )} - - - + + + )} + ) } diff --git a/src/components/dialogs/EmbedConsent.tsx b/src/components/dialogs/EmbedConsent.tsx index 824155d8bb..086d43f957 100644 --- a/src/components/dialogs/EmbedConsent.tsx +++ b/src/components/dialogs/EmbedConsent.tsx @@ -1,4 +1,4 @@ -import React, {useCallback} from 'react' +import {useCallback} from 'react' import {View} from 'react-native' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' diff --git a/src/components/dialogs/PostInteractionSettingsDialog.tsx b/src/components/dialogs/PostInteractionSettingsDialog.tsx index 0b8b386d30..81590e3c98 100644 --- a/src/components/dialogs/PostInteractionSettingsDialog.tsx +++ b/src/components/dialogs/PostInteractionSettingsDialog.tsx @@ -306,7 +306,7 @@ export function PostInteractionSettingsForm({ } value={quotesEnabled} onChange={onChangeQuotesEnabled} - style={[, a.justify_between, a.pt_xs]}> + style={[a.justify_between, a.pt_xs]}> {quotesEnabled ? ( Quote posts enabled @@ -483,7 +483,7 @@ function Selectable({ a.justify_between, a.rounded_sm, a.p_md, - {height: 40}, // for consistency with checkmark icon visible or not + {minHeight: 40}, // for consistency with checkmark icon visible or not t.atoms.bg_contrast_50, (hovered || focused) && t.atoms.bg_contrast_100, isSelected && { diff --git a/src/components/dialogs/SwitchAccount.tsx b/src/components/dialogs/SwitchAccount.tsx index daad01d2ab..9acefa8fc3 100644 --- a/src/components/dialogs/SwitchAccount.tsx +++ b/src/components/dialogs/SwitchAccount.tsx @@ -1,4 +1,4 @@ -import React, {useCallback} from 'react' +import {useCallback} from 'react' import {View} from 'react-native' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' diff --git a/src/components/dms/ConvoMenu.tsx b/src/components/dms/ConvoMenu.tsx index affc292c18..e1f8df10b8 100644 --- a/src/components/dms/ConvoMenu.tsx +++ b/src/components/dms/ConvoMenu.tsx @@ -115,7 +115,7 @@ let ConvoMenu = ({ {...props} onPress={() => { Keyboard.dismiss() - // eslint-disable-next-line react/prop-types -- eslint is confused by the name `props` + props.onPress() }} style={[ diff --git a/src/components/dms/LeaveConvoPrompt.tsx b/src/components/dms/LeaveConvoPrompt.tsx index 2baa07b468..cc18c1ab43 100644 --- a/src/components/dms/LeaveConvoPrompt.tsx +++ b/src/components/dms/LeaveConvoPrompt.tsx @@ -1,4 +1,3 @@ -import React from 'react' import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' import {useNavigation} from '@react-navigation/native' diff --git a/src/components/dms/ReportConversationPrompt.tsx b/src/components/dms/ReportConversationPrompt.tsx index 610cfbcf96..6bb26a60f9 100644 --- a/src/components/dms/ReportConversationPrompt.tsx +++ b/src/components/dms/ReportConversationPrompt.tsx @@ -1,4 +1,3 @@ -import React from 'react' import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' diff --git a/src/components/dms/dialogs/NewChatDialog.tsx b/src/components/dms/dialogs/NewChatDialog.tsx index f402201a21..c7fedb4888 100644 --- a/src/components/dms/dialogs/NewChatDialog.tsx +++ b/src/components/dms/dialogs/NewChatDialog.tsx @@ -1,4 +1,4 @@ -import React, {useCallback} from 'react' +import {useCallback} from 'react' import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' diff --git a/src/components/dms/dialogs/ShareViaChatDialog.tsx b/src/components/dms/dialogs/ShareViaChatDialog.tsx index 38b5583432..4bb27ae698 100644 --- a/src/components/dms/dialogs/ShareViaChatDialog.tsx +++ b/src/components/dms/dialogs/ShareViaChatDialog.tsx @@ -1,4 +1,4 @@ -import React, {useCallback} from 'react' +import {useCallback} from 'react' import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' diff --git a/src/components/forms/DateField/index.shared.tsx b/src/components/forms/DateField/index.shared.tsx index 814bbed7cc..7438f5622a 100644 --- a/src/components/forms/DateField/index.shared.tsx +++ b/src/components/forms/DateField/index.shared.tsx @@ -1,4 +1,3 @@ -import React from 'react' import {Pressable, View} from 'react-native' import {useLingui} from '@lingui/react' diff --git a/src/components/forms/FormError.tsx b/src/components/forms/FormError.tsx index 8ab6e3f357..d51243d505 100644 --- a/src/components/forms/FormError.tsx +++ b/src/components/forms/FormError.tsx @@ -1,4 +1,3 @@ -import React from 'react' import {View} from 'react-native' import {atoms as a, useTheme} from '#/alf' diff --git a/src/components/hooks/dates.ts b/src/components/hooks/dates.ts index 48ef03119a..7ccd208c9a 100644 --- a/src/components/hooks/dates.ts +++ b/src/components/hooks/dates.ts @@ -22,6 +22,7 @@ import { it, ja, ko, + pl, ptBR, ru, th, @@ -53,6 +54,7 @@ const locales: Record = { it, ja, ko, + pl, ['pt-BR']: ptBR, ru, th, diff --git a/src/components/icons/common.tsx b/src/components/icons/common.tsx index e83f96f0b1..996ecb626c 100644 --- a/src/components/icons/common.tsx +++ b/src/components/icons/common.tsx @@ -1,4 +1,3 @@ -import React from 'react' import {StyleSheet, TextProps} from 'react-native' import type {PathProps, SvgProps} from 'react-native-svg' import {Defs, LinearGradient, Stop} from 'react-native-svg' diff --git a/src/components/moderation/ContentHider.tsx b/src/components/moderation/ContentHider.tsx index 67aef67b46..69193592ac 100644 --- a/src/components/moderation/ContentHider.tsx +++ b/src/components/moderation/ContentHider.tsx @@ -31,6 +31,37 @@ export function ContentHider({ ignoreMute?: boolean style?: StyleProp childContainerStyle?: StyleProp +}>) { + const blur = modui?.blurs[0] + if (!blur || (ignoreMute && isJustAMute(modui))) { + return ( + + {children} + + ) + } + return ( + + {children} + + ) +} + +function ContentHiderActive({ + testID, + modui, + style, + childContainerStyle, + children, +}: React.PropsWithChildren<{ + testID?: string + modui: ModerationUI + style?: StyleProp + childContainerStyle?: StyleProp }>) { const t = useTheme() const {_} = useLingui() @@ -40,7 +71,6 @@ export function ContentHider({ const {labelDefs} = useLabelDefinitions() const globalLabelStrings = useGlobalLabelStrings() const {i18n} = useLingui() - const blur = modui?.blurs[0] const desc = useModerationCauseDescription(blur) @@ -99,14 +129,6 @@ export function ContentHider({ globalLabelStrings, ]) - if (!blur || (ignoreMute && isJustAMute(modui))) { - return ( - - {children} - - ) - } - return ( diff --git a/src/components/moderation/LabelsOnMe.tsx b/src/components/moderation/LabelsOnMe.tsx index 33ede3ed23..6815998079 100644 --- a/src/components/moderation/LabelsOnMe.tsx +++ b/src/components/moderation/LabelsOnMe.tsx @@ -1,4 +1,3 @@ -import React from 'react' import {StyleProp, View, ViewStyle} from 'react-native' import {AppBskyFeedDefs, ComAtprotoLabelDefs} from '@atproto/api' import {msg, Plural} from '@lingui/macro' diff --git a/src/components/moderation/ModerationDetailsDialog.tsx b/src/components/moderation/ModerationDetailsDialog.tsx index ef40a79965..bdbb2daa51 100644 --- a/src/components/moderation/ModerationDetailsDialog.tsx +++ b/src/components/moderation/ModerationDetailsDialog.tsx @@ -1,4 +1,3 @@ -import React from 'react' import {View} from 'react-native' import {ModerationCause} from '@atproto/api' import {msg, Trans} from '@lingui/macro' diff --git a/src/components/moderation/PostAlerts.tsx b/src/components/moderation/PostAlerts.tsx index 6c4e5f8c82..a68a650d61 100644 --- a/src/components/moderation/PostAlerts.tsx +++ b/src/components/moderation/PostAlerts.tsx @@ -1,4 +1,3 @@ -import React from 'react' import {StyleProp, ViewStyle} from 'react-native' import {ModerationCause, ModerationUI} from '@atproto/api' diff --git a/src/components/moderation/ProfileHeaderAlerts.tsx b/src/components/moderation/ProfileHeaderAlerts.tsx index 891caec18e..4ac561fd99 100644 --- a/src/components/moderation/ProfileHeaderAlerts.tsx +++ b/src/components/moderation/ProfileHeaderAlerts.tsx @@ -1,4 +1,3 @@ -import React from 'react' import {StyleProp, ViewStyle} from 'react-native' import {ModerationDecision} from '@atproto/api' diff --git a/src/components/video/PlayButtonIcon.tsx b/src/components/video/PlayButtonIcon.tsx index 8e0a6bb7a0..84a4507677 100644 --- a/src/components/video/PlayButtonIcon.tsx +++ b/src/components/video/PlayButtonIcon.tsx @@ -1,4 +1,3 @@ -import React from 'react' import {View} from 'react-native' import {atoms as a, useTheme} from '#/alf' diff --git a/src/lib/custom-animations/LikeIcon.tsx b/src/lib/custom-animations/LikeIcon.tsx index 1bc48d43ba..025e96f4be 100644 --- a/src/lib/custom-animations/LikeIcon.tsx +++ b/src/lib/custom-animations/LikeIcon.tsx @@ -1,4 +1,3 @@ -import React from 'react' import {View} from 'react-native' import Animated, { Keyframe, diff --git a/src/lib/custom-animations/PressableScale.tsx b/src/lib/custom-animations/PressableScale.tsx index 1e776546d3..9ac7e5eb2d 100644 --- a/src/lib/custom-animations/PressableScale.tsx +++ b/src/lib/custom-animations/PressableScale.tsx @@ -1,4 +1,3 @@ -import React from 'react' import {Pressable, PressableProps, StyleProp, ViewStyle} from 'react-native' import Animated, { cancelAnimation, diff --git a/src/lib/hooks/useHandleRef.ts b/src/lib/hooks/useHandleRef.ts new file mode 100644 index 0000000000..167ba270b6 --- /dev/null +++ b/src/lib/hooks/useHandleRef.ts @@ -0,0 +1,39 @@ +import {useState} from 'react' +import {AnimatedRef, measure, MeasuredDimensions} from 'react-native-reanimated' + +export type HandleRef = { + (node: any): void + current: null | number +} + +// This is a lighterweight alternative to `useAnimatedRef()` for imperative UI thread actions. +// Render it like , then pass `ref.current` to `measureHandle()` and such. +export function useHandleRef(): HandleRef { + return useState(() => { + const ref = (node: any) => { + if (node) { + ref.current = + node._nativeTag ?? + node.__nativeTag ?? + node.canonical?.nativeTag ?? + null + } else { + ref.current = null + } + } + ref.current = null + return ref + })[0] as HandleRef +} + +// When using this version, you need to read ref.current on the JS thread, and pass it to UI. +export function measureHandle( + current: number | null, +): MeasuredDimensions | null { + 'worklet' + if (current !== null) { + return measure((() => current) as AnimatedRef) + } else { + return null + } +} diff --git a/src/lib/icons.tsx b/src/lib/icons.tsx index aefa9c9c37..3690783d32 100644 --- a/src/lib/icons.tsx +++ b/src/lib/icons.tsx @@ -1,4 +1,3 @@ -import React from 'react' import {StyleProp, TextStyle, ViewStyle} from 'react-native' import Svg, {Ellipse, Line, Path, Rect} from 'react-native-svg' diff --git a/src/locale/helpers.ts b/src/locale/helpers.ts index 4613533ab0..72cf52fcc0 100644 --- a/src/locale/helpers.ts +++ b/src/locale/helpers.ts @@ -145,6 +145,8 @@ export function sanitizeAppLanguageSetting(appLanguage: string): AppLanguage { return AppLanguage.ja case 'ko': return AppLanguage.ko + case 'pl': + return AppLanguage.pl case 'pt-BR': return AppLanguage.pt_BR case 'ru': diff --git a/src/locale/i18n.ts b/src/locale/i18n.ts index b9f69784c4..7a841f383d 100644 --- a/src/locale/i18n.ts +++ b/src/locale/i18n.ts @@ -25,6 +25,7 @@ import {messages as messagesId} from '#/locale/locales/id/messages' import {messages as messagesIt} from '#/locale/locales/it/messages' import {messages as messagesJa} from '#/locale/locales/ja/messages' import {messages as messagesKo} from '#/locale/locales/ko/messages' +import {messages as messagesPl} from '#/locale/locales/pl/messages' import {messages as messagesPt_BR} from '#/locale/locales/pt-BR/messages' import {messages as messagesRu} from '#/locale/locales/ru/messages' import {messages as messagesTh} from '#/locale/locales/th/messages' @@ -144,6 +145,14 @@ export async function dynamicActivate(locale: AppLanguage) { ]) break } + case AppLanguage.pl: { + i18n.loadAndActivate({locale, messages: messagesPl}) + await Promise.all([ + import('@formatjs/intl-pluralrules/locale-data/pl'), + import('@formatjs/intl-numberformat/locale-data/pl'), + ]) + break + } case AppLanguage.pt_BR: { i18n.loadAndActivate({locale, messages: messagesPt_BR}) await Promise.all([ diff --git a/src/locale/i18n.web.ts b/src/locale/i18n.web.ts index 04197fe154..db95b7219e 100644 --- a/src/locale/i18n.web.ts +++ b/src/locale/i18n.web.ts @@ -64,6 +64,10 @@ export async function dynamicActivate(locale: AppLanguage) { mod = await import(`./locales/ko/messages`) break } + case AppLanguage.pl: { + mod = await import(`./locales/pl/messages`) + break + } case AppLanguage.pt_BR: { mod = await import(`./locales/pt-BR/messages`) break diff --git a/src/locale/languages.ts b/src/locale/languages.ts index b3672936cc..d5f964f5cf 100644 --- a/src/locale/languages.ts +++ b/src/locale/languages.ts @@ -19,6 +19,7 @@ export enum AppLanguage { it = 'it', ja = 'ja', ko = 'ko', + pl = 'pl', pt_BR = 'pt-BR', ru = 'ru', th = 'th', @@ -49,6 +50,7 @@ export const APP_LANGUAGES: AppLanguageConfig[] = [ {code2: AppLanguage.it, name: 'Italiano – Italian'}, {code2: AppLanguage.ja, name: '日本語 – Japanese'}, {code2: AppLanguage.ko, name: '한국어 – Korean'}, + {code2: AppLanguage.pl, name: 'Polski – Polish'}, {code2: AppLanguage.pt_BR, name: 'Português (BR) – Portuguese (BR)'}, {code2: AppLanguage.ru, name: 'Русский – Russian'}, {code2: AppLanguage.th, name: 'ภาษาไทย – Thai'}, diff --git a/src/locale/locales/hu/messages.po b/src/locale/locales/hu/messages.po index 01405c6258..6aa0fdf893 100644 --- a/src/locale/locales/hu/messages.po +++ b/src/locale/locales/hu/messages.po @@ -22,11 +22,6 @@ msgstr "(beágyazott tartalom)" msgid "(no email)" msgstr "(nincs megadott email-cím)" -#: src/view/com/notifications/FeedItem.tsx:232 -#: src/view/com/notifications/FeedItem.tsx:327 -#~ msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" -#~ msgstr "{formattedCount} további" - #: src/lib/hooks/useTimeAgo.ts:156 msgid "{0, plural, one {# day} other {# days}}" msgstr "{0} nappal" @@ -36,11 +31,15 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0} órával" #: src/components/moderation/LabelsOnMe.tsx:54 -msgid "{0, plural, one {# label has been placed on this account} other {# labels have been placed on this account}}" +msgid "" +"{0, plural, one {# label has been placed on this account} other {# labels " +"have been placed on this account}}" msgstr "{0} feljegyzést helyeztek erre a fiókra" #: src/components/moderation/LabelsOnMe.tsx:60 -msgid "{0, plural, one {# label has been placed on this content} other {# labels have been placed on this content}}" +msgid "" +"{0, plural, one {# label has been placed on this content} other {# labels " +"have been placed on this content}}" msgstr "{0} feljegyzést helyeztek erre a tartalomra" #: src/lib/hooks/useTimeAgo.ts:136 @@ -77,8 +76,7 @@ msgstr "Tetszik ({0} kedvelés)" msgid "{0, plural, one {like} other {likes}}" msgstr "kedvelés" -#: src/components/FeedCard.tsx:213 -#: src/view/com/feeds/FeedSourceCard.tsx:303 +#: src/components/FeedCard.tsx:213 src/view/com/feeds/FeedSourceCard.tsx:303 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{0} felhasználó kedveli" @@ -104,7 +102,7 @@ msgstr "Mégse tetszik ({0} kedvelés)" #: src/screens/Settings/Settings.tsx:414 msgid "{0}" -msgstr "" +msgstr "{0}" #. Pattern: {wordValue} in tags #: src/components/dialogs/MutedWords.tsx:475 @@ -130,7 +128,7 @@ msgstr "Eddig {0} személy vette igénybe ezt a kezdőcsomagot." #: src/view/shell/bottom-bar/BottomBar.tsx:203 msgid "{0} unread items" -msgstr "" +msgstr "{0} olvasatlan üzenet" #: src/view/com/util/UserAvatar.tsx:435 msgid "{0}'s avatar" @@ -171,7 +169,7 @@ msgstr "{0} másodperce" #: src/view/shell/bottom-bar/BottomBarWeb.tsx:252 msgid "{badge} unread items" -msgstr "" +msgstr "{badge} olvasatlan értesítés" #: src/components/LabelingServiceCard/index.tsx:96 msgid "{count, plural, one {Liked by # user} other {Liked by # users}}" @@ -179,7 +177,7 @@ msgstr "{count} felhasználó kedveli" #: src/view/shell/desktop/LeftNav.tsx:223 msgid "{count} unread items" -msgstr "" +msgstr "{count} olvasatlan elem" #: src/lib/generate-starterpack.ts:108 #: src/screens/StarterPack/Wizard/index.tsx:183 @@ -195,92 +193,142 @@ msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "perccel" #: src/view/com/notifications/FeedItem.tsx:300 -msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" +msgid "" +"{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one " +"{{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " +"followed you" msgstr "" +"{firstAuthorLink} és <0>{formattedAuthorsCount} további személy " +"mostantól követ Téged" #: src/view/com/notifications/FeedItem.tsx:326 -msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" +msgid "" +"{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one " +"{{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " +"liked your custom feed" msgstr "" +"{firstAuthorLink} és <0>{formattedAuthorsCount} további személy kedvelte " +"az egyéni hírfolyamodat" #: src/view/com/notifications/FeedItem.tsx:222 -msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" +msgid "" +"{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one " +"{{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " +"liked your post" msgstr "" +"{firstAuthorLink} és <0>{formattedAuthorsCount} további személy kedvelte " +"a bejegyzésedet" #: src/view/com/notifications/FeedItem.tsx:246 -msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" +msgid "" +"{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one " +"{{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " +"reposted your post" msgstr "" +"{firstAuthorLink} és <0>{formattedAuthorsCount} további személy " +"megosztotta a bejegyzésedet" #: src/view/com/notifications/FeedItem.tsx:350 -msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" +msgid "" +"{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one " +"{{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " +"signed up with your starter pack" msgstr "" +"{firstAuthorLink} és <0>{formattedAuthorsCount} további személy a Te " +"kezdőcsomagoddal regisztrált" #: src/view/com/notifications/FeedItem.tsx:312 msgid "{firstAuthorLink} followed you" -msgstr "" +msgstr "{firstAuthorLink} mostantól követ Téged" #: src/view/com/notifications/FeedItem.tsx:289 msgid "{firstAuthorLink} followed you back" -msgstr "" +msgstr "{firstAuthorLink} kölcsönözte a követésedet" #: src/view/com/notifications/FeedItem.tsx:338 msgid "{firstAuthorLink} liked your custom feed" -msgstr "" +msgstr "{firstAuthorLink} kedvelte az egyéni hírfolyamodat" #: src/view/com/notifications/FeedItem.tsx:234 msgid "{firstAuthorLink} liked your post" -msgstr "" +msgstr "{firstAuthorLink} kedvelte a bejegyzésedet" #: src/view/com/notifications/FeedItem.tsx:258 msgid "{firstAuthorLink} reposted your post" -msgstr "" +msgstr "{firstAuthorLink} megosztotta a bejegyzésedet" #: src/view/com/notifications/FeedItem.tsx:362 msgid "{firstAuthorLink} signed up with your starter pack" -msgstr "" +msgstr "{firstAuthorLink} a Te kezdőcsomagoddal regisztrált" #: src/view/com/notifications/FeedItem.tsx:293 -msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" +msgid "" +"{firstAuthorName} and {additionalAuthorsCount, plural, one " +"{{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " +"followed you" msgstr "" +"{firstAuthorName} és {formattedAuthorsCount} további személy mostantól követ " +"Téged" #: src/view/com/notifications/FeedItem.tsx:319 -msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" +msgid "" +"{firstAuthorName} and {additionalAuthorsCount, plural, one " +"{{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " +"liked your custom feed" msgstr "" +"{firstAuthorName} és {formattedAuthorsCount} további személy kedvelte az " +"egyéni hírfolyamodat" #: src/view/com/notifications/FeedItem.tsx:215 -msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" +msgid "" +"{firstAuthorName} and {additionalAuthorsCount, plural, one " +"{{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " +"liked your post" msgstr "" +"{firstAuthorName} és {formattedAuthorsCount} további személy kedvelte a " +"bejegyzésedet" #: src/view/com/notifications/FeedItem.tsx:239 -msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" +msgid "" +"{firstAuthorName} and {additionalAuthorsCount, plural, one " +"{{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " +"reposted your post" msgstr "" +"{firstAuthorName} és {formattedAuthorsCount} további személy megosztotta a " +"bejegyzésedet" #: src/view/com/notifications/FeedItem.tsx:343 -msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" +msgid "" +"{firstAuthorName} and {additionalAuthorsCount, plural, one " +"{{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " +"signed up with your starter pack" msgstr "" +"{firstAuthorName} és {formattedAuthorsCount} további személy a Te " +"kezdőcsomagoddal regisztrált" #: src/view/com/notifications/FeedItem.tsx:298 msgid "{firstAuthorName} followed you" -msgstr "" +msgstr "{firstAuthorName} mostantól követ Téged" #: src/view/com/notifications/FeedItem.tsx:288 msgid "{firstAuthorName} followed you back" -msgstr "" +msgstr "{firstAuthorName} kölcsönözte a követésedet" #: src/view/com/notifications/FeedItem.tsx:324 msgid "{firstAuthorName} liked your custom feed" -msgstr "" +msgstr "{firstAuthorName} kedvelte az egyéni hírfolyamodat" #: src/view/com/notifications/FeedItem.tsx:220 msgid "{firstAuthorName} liked your post" -msgstr "" +msgstr "{firstAuthorName} kedvelte a bejegyzésedet" #: src/view/com/notifications/FeedItem.tsx:244 msgid "{firstAuthorName} reposted your post" -msgstr "" +msgstr "{firstAuthorName} megosztotta a bejegyzésedet" #: src/view/com/notifications/FeedItem.tsx:348 msgid "{firstAuthorName} signed up with your starter pack" -msgstr "" +msgstr "{firstAuthorName} a Te kezdőcsomagoddal regisztrált" #: src/components/ProfileHoverCard/index.web.tsx:508 #: src/screens/Profile/Header/Metrics.tsx:50 @@ -303,7 +351,7 @@ msgstr "{numUnreadNotifications} olvasatlan értesítés" #: src/view/shell/bottom-bar/BottomBar.tsx:230 msgid "{numUnreadNotifications} unread items" -msgstr "" +msgstr "{numUnreadNotifications} olvasatlan értesítés" #: src/components/NewskieDialog.tsx:116 msgid "{profileName} joined Bluesky {0} ago" @@ -311,17 +359,25 @@ msgstr "{profileName} {0} ezelőtt csatlakozott a Blueskyhoz" #: src/components/NewskieDialog.tsx:111 msgid "{profileName} joined Bluesky using a starter pack {0} ago" -msgstr "{profileName} {0} ezelőtt csatlakozott a Blueskyhoz egy kezdőcsomag igénybevételével" +msgstr "" +"{profileName} {0} ezelőtt csatlakozott a Blueskyhoz egy kezdőcsomag " +"igénybevételével" #: src/screens/StarterPack/Wizard/index.tsx:475 msgctxt "profiles" -msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" -msgstr "<0>{0}, <1>{1}, és {2} további személy szerepel a kezdőcsomagodban" +msgid "" +"<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are " +"included in your starter pack" +msgstr "" +"<0>{0}, <1>{1}, és {2} további személy szerepel a kezdőcsomagodban" #: src/screens/StarterPack/Wizard/index.tsx:528 msgctxt "feeds" -msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" -msgstr "<0>{0}, <1>{1}, és {2} további személy szerepel a kezdőcsomagodban" +msgid "" +"<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are " +"included in your starter pack" +msgstr "" +"<0>{0}, <1>{1}, és {2} további személy szerepel a kezdőcsomagodban" #: src/view/shell/Drawer.tsx:97 msgid "<0>{0} {1, plural, one {follower} other {followers}}" @@ -348,11 +404,14 @@ msgid "<0>{date} at {time}" msgstr "<0>{date}, {time}" #: src/screens/Settings/NotificationSettings.tsx:72 -msgid "<0>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." +msgid "" +"<0>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 "" - -#~ msgid "<0>Not Applicable. This warning is only available for posts with media attached." -#~ msgstr "<0>Nem alkalmazható. Ez a figyelmeztetés csak a csatolt médiatartalommal rendelkező bejegyzésekhez használható fel." +"<0>Kísérleti: Ha ez a funkció engedélyezve van, akkor csak az általad " +"követett felhasználók válaszairól és idézéseiről fogsz értesítést kapni. " +"Ezeket a beállításokat idővel bővíteni fogjuk." #: src/screens/StarterPack/Wizard/index.tsx:466 msgid "<0>You and<1> <2>{0} are included in your starter pack" @@ -378,15 +437,12 @@ msgstr "30 napig" msgid "7 days" msgstr "7 napig" -#: src/Navigation.tsx:361 -#: src/screens/Settings/AboutSettings.tsx:25 -#: src/screens/Settings/Settings.tsx:207 -#: src/screens/Settings/Settings.tsx:210 +#: src/Navigation.tsx:361 src/screens/Settings/AboutSettings.tsx:25 +#: src/screens/Settings/Settings.tsx:207 src/screens/Settings/Settings.tsx:210 msgid "About" -msgstr "" +msgstr "Súgó" -#: src/view/com/util/ViewHeader.tsx:89 -#: src/view/screens/Search/Search.tsx:883 +#: src/view/com/util/ViewHeader.tsx:89 src/view/screens/Search/Search.tsx:883 msgid "Access navigation links and settings" msgstr "Navigációs hivatkozások és beállítások" @@ -395,24 +451,17 @@ msgid "Access profile and other navigation links" msgstr "Profil és egyéb navigációs hivatkozások" #: src/screens/Settings/AccessibilitySettings.tsx:43 -#: src/screens/Settings/Settings.tsx:183 -#: src/screens/Settings/Settings.tsx:186 +#: src/screens/Settings/Settings.tsx:183 src/screens/Settings/Settings.tsx:186 msgid "Accessibility" msgstr "Kisegítő lehetőségek" -#: src/view/screens/Settings/index.tsx:455 -#~ msgid "Accessibility settings" -#~ msgstr "Kisegítő lehetőségek" - #: src/Navigation.tsx:321 msgid "Accessibility Settings" msgstr "Kisegítő lehetőségek" -#: src/Navigation.tsx:337 -#: src/screens/Login/LoginForm.tsx:176 +#: src/Navigation.tsx:337 src/screens/Login/LoginForm.tsx:176 #: src/screens/Settings/AccountSettings.tsx:42 -#: src/screens/Settings/Settings.tsx:145 -#: src/screens/Settings/Settings.tsx:148 +#: src/screens/Settings/Settings.tsx:145 src/screens/Settings/Settings.tsx:148 msgid "Account" msgstr "Fiók" @@ -482,8 +531,7 @@ msgstr "Tartalomfigyelmeztetés felvétele" msgid "Add a user to this list" msgstr "Felhasználó felvétele a listára" -#: src/components/dialogs/SwitchAccount.tsx:55 -#: src/screens/Deactivated.tsx:198 +#: src/components/dialogs/SwitchAccount.tsx:55 src/screens/Deactivated.tsx:198 msgid "Add account" msgstr "Fiók felvétele a listára" @@ -501,18 +549,17 @@ msgstr "Helyettesítő szöveg hozzáadása" msgid "Add alt text (optional)" msgstr "Helyettesítő szöveg hozzáadása (nem kötelező)" -#: src/screens/Settings/Settings.tsx:364 -#: src/screens/Settings/Settings.tsx:367 +#: src/screens/Settings/Settings.tsx:364 src/screens/Settings/Settings.tsx:367 msgid "Add another account" -msgstr "" +msgstr "Fiók felvétele a listára" #: src/view/com/composer/Composer.tsx:713 msgid "Add another post" -msgstr "" +msgstr "Válaszlánc folytatása" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:102 msgid "Add app password" -msgstr "" +msgstr "Alkalmazásjelszó létrehozása" #: src/screens/Settings/AppPasswords.tsx:67 #: src/screens/Settings/AppPasswords.tsx:75 @@ -530,7 +577,7 @@ msgstr "Elnémított szavak és címkék felvétele" #: src/view/com/composer/Composer.tsx:1228 msgid "Add new post" -msgstr "" +msgstr "Válaszlánc folytatása" #: src/screens/Home/NoFeedsPinned.tsx:99 msgid "Add recommended feeds" @@ -542,7 +589,9 @@ msgstr "Vegyél fel néhány hírfolyamot a kezdőcsomagodhoz!" #: src/screens/Feeds/NoFollowingFeed.tsx:41 msgid "Add the default feed of only people you follow" -msgstr "Az alapértelmezett hírfolyamban az általad követett személyek bejegyzései jelennek meg" +msgstr "" +"Az alapértelmezett hírfolyamban az általad követett személyek bejegyzései " +"jelennek meg" #: src/screens/Settings/components/ChangeHandleDialog.tsx:387 msgid "Add the following DNS record to your domain:" @@ -572,7 +621,7 @@ msgstr "Felvetted a hírfolyamot a hírfolyamgyűjteményedbe" #: src/view/com/composer/labels/LabelsBtn.tsx:161 msgid "Adult" -msgstr "" +msgstr "Pornó" #: src/components/moderation/ContentHider.tsx:83 #: src/lib/moderation/useGlobalLabelStrings.ts:34 @@ -583,7 +632,9 @@ msgstr "Felnőtt tartalom" #: src/screens/Moderation/index.tsx:360 msgid "Adult content can only be enabled via the Web at <0>bsky.app." -msgstr "A felnőtt tartalmakat csak böngészőből, a <0>bsky.app honlapon engedélyezheted." +msgstr "" +"A felnőtt tartalmakat csak böngészőből, a <0>bsky.app honlapon " +"engedélyezheted." #: src/components/moderation/LabelPreference.tsx:242 msgid "Adult content is disabled." @@ -615,8 +666,7 @@ msgstr "Itt egy helyen megtalálod az összes elmentett hírfolyamot." msgid "Allow access to your direct messages" msgstr "Hozzáférés megadása a személyes üzenetekhez" -#: src/screens/Messages/Settings.tsx:64 -#: src/screens/Messages/Settings.tsx:67 +#: src/screens/Messages/Settings.tsx:64 src/screens/Messages/Settings.tsx:67 msgid "Allow new messages from" msgstr "Bejövő üzenetek fogadása" @@ -657,8 +707,12 @@ msgid "Alt Text" msgstr "Helyettesítő szöveg" #: 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 "A helyettesítő szöveg segít leírni egy képet vak vagy gyengén látó felhasználók számára, és mindenki számára további információval szolgál." +msgid "" +"Alt text describes images for blind and low-vision users, and helps give " +"context to everyone." +msgstr "" +"A helyettesítő szöveg segít leírni egy képet vak vagy gyengén látó " +"felhasználók számára, és mindenki számára további információval szolgál." #: src/view/com/composer/GifAltText.tsx:179 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:139 @@ -667,16 +721,28 @@ msgstr "A helyettesítő szöveg le lesz vágva! Korlát: {0} karakter." #: 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 "Küldtünk egy emailt a(z) {0} címre. Ez a levél egy ellenőrzőkódot tartalmaz, amit alább adhatsz meg." +msgid "" +"An email has been sent to {0}. It includes a confirmation code which you can " +"enter below." +msgstr "" +"Küldtünk egy emailt a(z) {0} címre. Ez a levél egy ellenőrzőkódot tartalmaz, " +"amit alább adhatsz meg." #: src/view/com/modals/ChangeEmail.tsx:114 -msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below." -msgstr "Küldtünk egy emailt a korábbi email címedre: {0}. Ez a levél egy ellenőrzőkódot tartalmaz, amit alább adhatsz meg." +msgid "" +"An email has been sent to your previous address, {0}. It includes a " +"confirmation code which you can enter below." +msgstr "" +"Küldtünk egy emailt a korábbi email címedre: {0}. Ez a levél egy " +"ellenőrzőkódot tartalmaz, amit alább adhatsz meg." #: src/components/dialogs/VerifyEmailDialog.tsx:91 -msgid "An email has been sent! Please enter the confirmation code included in the email below." -msgstr "Küldtünk egy emailt. Ez a levél egy ellenőrzőkódot tartalmaz, amit alább adhatsz meg." +msgid "" +"An email has been sent! Please enter the confirmation code included in the " +"email below." +msgstr "" +"Küldtünk egy emailt. Ez a levél egy ellenőrzőkódot tartalmaz, amit alább " +"adhatsz meg." #: src/components/dialogs/GifSelect.tsx:265 msgid "An error has occurred" @@ -691,7 +757,8 @@ msgid "An error occurred while compressing the video." msgstr "A videó tömörítése meghiúsult." #: src/components/StarterPack/ProfileStarterPacks.tsx:333 -msgid "An error occurred while generating your starter pack. Want to try again?" +msgid "" +"An error occurred while generating your starter pack. Want to try again?" msgstr "A kezdőcsomag létrehozása meghiúsult. Szeretnéd újra megpróbálni?" #: src/view/com/util/post-embeds/VideoEmbed.tsx:135 @@ -734,8 +801,7 @@ msgstr "A csevegés megnyitása meghiúsult" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:326 -#: src/components/ProfileCard.tsx:346 +#: src/components/ProfileCard.tsx:326 src/components/ProfileCard.tsx:346 #: src/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 msgid "An issue occurred, please try again." @@ -754,8 +820,7 @@ msgstr "ismeretlen feljegyző" msgid "and" msgstr "és" -#: src/screens/Onboarding/index.tsx:29 -#: src/screens/Onboarding/state.ts:81 +#: src/screens/Onboarding/index.tsx:29 src/screens/Onboarding/state.ts:81 msgid "Animals" msgstr "Állatok" @@ -782,7 +847,7 @@ msgstr "Az alkalmazás nyelve" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:122 msgid "App Password" -msgstr "" +msgstr "Alkalmazásjelszó" #: src/screens/Settings/AppPasswords.tsx:139 msgid "App password deleted" @@ -790,35 +855,26 @@ msgstr "Törölted az alkalmazásjelszót" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:84 msgid "App password name must be unique" -msgstr "" +msgstr "Az alkalmazásjelszó neve nem egyedi" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:62 -msgid "App password names can only contain letters, numbers, spaces, dashes, and underscores" +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 "Egy alkalmazásjelszó neve csak az angol ábécé betűit, számokat, szóközöket, kötőjeleket és alsókötőjeleket tartalmazhat." +"Egy alkalmazásjelszó csak az angol ábécé betűit, számokat, szóközöket, " +"kötőjeleket és alsókötőjeleket tartalmazhat" #: 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 "Egy alkalmazásjelszónak legalább 4-karakter hosszúnak kell lennie." - -#: src/view/screens/Settings/index.tsx:664 -#~ msgid "App password settings" -#~ msgstr "Alkalmazásjelszó-beállítások" +msgstr "Egy alkalmazásjelszónak legalább 4 karakter hosszúnak kell lennie" #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:56 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:59 msgid "App passwords" -msgstr "" +msgstr "Alkalmazásjelszók" -#: src/Navigation.tsx:289 -#: src/screens/Settings/AppPasswords.tsx:47 +#: src/Navigation.tsx:289 src/screens/Settings/AppPasswords.tsx:47 msgid "App Passwords" msgstr "Alkalmazásjelszók" @@ -843,21 +899,11 @@ msgstr "Elküldted a fellebbezést" msgid "Appeal this decision" msgstr "Döntés fellebbezése" -#: src/Navigation.tsx:329 -#: src/screens/Settings/AppearanceSettings.tsx:76 -#: src/screens/Settings/Settings.tsx:175 -#: src/screens/Settings/Settings.tsx:178 +#: src/Navigation.tsx:329 src/screens/Settings/AppearanceSettings.tsx:76 +#: src/screens/Settings/Settings.tsx:175 src/screens/Settings/Settings.tsx:178 msgid "Appearance" msgstr "Megjelenítés" -#: src/view/screens/Settings/index.tsx:476 -#~ msgid "Appearance settings" -#~ msgstr "Megjelenítési beállítások" - -#: src/Navigation.tsx:325 -#~ msgid "Appearance Settings" -#~ msgstr "Megjelenítési beállítások" - #: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47 #: src/screens/Home/NoFeedsPinned.tsx:93 msgid "Apply default recommended feeds" @@ -865,24 +911,24 @@ msgstr "Ajánlott hírfolyamok elfogadása" #: src/view/com/post-thread/PostThreadItem.tsx:825 msgid "Archived from {0}" -msgstr "" +msgstr "Archiválás dátuma: {0}" #: src/view/com/post-thread/PostThreadItem.tsx:794 #: src/view/com/post-thread/PostThreadItem.tsx:833 msgid "Archived post" -msgstr "" +msgstr "Archivált bejegyzés" #: src/screens/Settings/AppPasswords.tsx:201 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 "Biztosan törölni akarod a(z) „{name}” nevű alkalmazásjelszót?" +msgstr "Biztosan törölni akarod a(z) „{0}” nevű alkalmazásjelszót?" #: src/components/dms/MessageMenu.tsx:149 -msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." -msgstr "Biztosan törölni akarod ezt az üzenetet? Az üzenet a Te nézőpontodból el lesz távolítva, de a másik fél számára nem." +msgid "" +"Are you sure you want to delete this message? The message will be deleted " +"for you, but not for the other participant." +msgstr "" +"Biztosan törölni akarod ezt az üzenetet? Az üzenet a Te nézőpontodból el " +"lesz távolítva, de a másik fél számára nem." #: src/screens/StarterPack/StarterPackScreen.tsx:633 msgid "Are you sure you want to delete this starter pack?" @@ -893,12 +939,17 @@ msgid "Are you sure you want to discard your changes?" msgstr "Biztosan el akarod vetni a változtatásokat?" #: src/components/dms/LeaveConvoPrompt.tsx:48 -msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." -msgstr "Biztosan el akarod hagyni ezt a csevegést? Már nem fogsz tudni hozzáférni az üzeneteidhez, a másik fél viszont igen." +msgid "" +"Are you sure you want to leave this conversation? Your messages will be " +"deleted for you, but not for the other participant." +msgstr "" +"Biztosan el akarod hagyni ezt a csevegést? Már nem fogsz tudni hozzáférni az " +"üzeneteidhez, a másik fél viszont igen." #: src/view/com/feeds/FeedSourceCard.tsx:316 msgid "Are you sure you want to remove {0} from your feeds?" -msgstr "Biztosan el akarod távolítani a(z) {0} c. hírfolyamot a gyűjteményedből?" +msgstr "" +"Biztosan el akarod távolítani a(z) {0} c. hírfolyamot a gyűjteményedből?" #: src/components/FeedCard.tsx:313 msgid "Are you sure you want to remove this from your feeds?" @@ -910,7 +961,7 @@ msgstr "Biztosan el akarod vetni ezt a piszkozatot?" #: src/view/com/composer/Composer.tsx:828 msgid "Are you sure you'd like to discard this post?" -msgstr "" +msgstr "Biztosan el akarod vetni ezt a bejegyzést?" #: src/components/dialogs/MutedWords.tsx:433 msgid "Are you sure?" @@ -920,8 +971,7 @@ msgstr "Biztos vagy benne?" msgid "Are you writing in <0>{0}?" msgstr "Jelenleg <0>{0} nyelven írsz?" -#: src/screens/Onboarding/index.tsx:23 -#: src/screens/Onboarding/state.ts:82 +#: src/screens/Onboarding/index.tsx:23 src/screens/Onboarding/state.ts:82 msgid "Art" msgstr "Művészet" @@ -936,11 +986,13 @@ msgstr "Adj meg legalább 3 karaktert" #: src/screens/Settings/AccessibilitySettings.tsx:98 msgid "Autoplay options have moved to the <0>Content and Media settings." msgstr "" +"Az automatikus lejátszási beállítások elköltöztek a <0>Tartalmi- és " +"médiabeállításokba." #: src/screens/Settings/ContentAndMediaSettings.tsx:89 #: src/screens/Settings/ContentAndMediaSettings.tsx:95 msgid "Autoplay videos and GIFs" -msgstr "" +msgstr "Videók és GIF-ek automatikus lejátszása" #: src/components/dms/MessagesListHeader.tsx:75 #: src/components/moderation/LabelsOnMeDialog.tsx:290 @@ -949,8 +1001,7 @@ msgstr "" #: src/screens/Login/ChooseAccountForm.tsx:95 #: src/screens/Login/ForgotPasswordForm.tsx:123 #: src/screens/Login/ForgotPasswordForm.tsx:129 -#: src/screens/Login/LoginForm.tsx:282 -#: src/screens/Login/LoginForm.tsx:288 +#: src/screens/Login/LoginForm.tsx:282 src/screens/Login/LoginForm.tsx:288 #: src/screens/Login/SetNewPasswordForm.tsx:154 #: src/screens/Login/SetNewPasswordForm.tsx:160 #: src/screens/Messages/components/ChatDisabled.tsx:133 @@ -962,45 +1013,35 @@ msgstr "" msgid "Back" msgstr "Vissza" -#: src/view/screens/Settings/index.tsx:442 -#~ msgid "Basics" -#~ msgstr "Alapbeállítások" - -#: src/view/screens/Lists.tsx:104 -#: src/view/screens/ModerationModlists.tsx:100 +#: src/view/screens/Lists.tsx:104 src/view/screens/ModerationModlists.tsx:100 msgid "Before creating a list, you must first verify your email." -msgstr "" +msgstr "A listakészítés előtt ellenőriznünk kell az email-címedet." #: src/view/com/composer/Composer.tsx:591 msgid "Before creating a post, you must first verify your email." -msgstr "" +msgstr "A bejegyzésírás előtt ellenőriznünk kell az email-címedet." #: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Before creating a starter pack, you must first verify your email." -msgstr "" +msgstr "A kezdőcsomag-létrehozás előtt ellenőriznünk kell az email-címedet." #: src/components/dms/dialogs/NewChatDialog.tsx:79 #: src/components/dms/MessageProfileButton.tsx:89 #: src/screens/Messages/Conversation.tsx:219 msgid "Before you may message another user, you must first verify your email." -msgstr "" +msgstr "Az üzenetküldés előtt ellenőriznünk kell az email-címedet." #: src/components/dialogs/BirthDateSettings.tsx:106 #: src/screens/Settings/AccountSettings.tsx:102 msgid "Birthday" msgstr "Születésnap" -#: src/view/screens/Settings/index.tsx:348 -#~ msgid "Birthday:" -#~ msgstr "Születésnap" - #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283 #: src/view/com/profile/ProfileMenu.tsx:341 msgid "Block" msgstr "Letiltás" -#: src/components/dms/ConvoMenu.tsx:188 -#: src/components/dms/ConvoMenu.tsx:192 +#: src/components/dms/ConvoMenu.tsx:188 src/components/dms/ConvoMenu.tsx:192 msgid "Block account" msgstr "Fiók letiltása" @@ -1033,34 +1074,56 @@ msgstr "Letiltva" msgid "Blocked accounts" msgstr "Letiltott fiókok" -#: src/Navigation.tsx:153 -#: src/view/screens/ModerationBlockedAccounts.tsx:108 +#: src/Navigation.tsx:153 src/view/screens/ModerationBlockedAccounts.tsx:108 msgid "Blocked Accounts" msgstr "Letiltott fiókok" #: src/view/com/profile/ProfileMenu.tsx:336 -msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." -msgstr "Az általad letiltott fiókok nem képesek válaszolni a bejegyzéseidre, megemlíteni Téged vagy bármilyen egyéb módon kapcsolatba lépni Veled." +msgid "" +"Blocked accounts cannot reply in your threads, mention you, or otherwise " +"interact with you." +msgstr "" +"Az általad letiltott fiókok nem képesek válaszolni a bejegyzéseidre, " +"megemlíteni Téged vagy bármilyen egyéb módon kapcsolatba lépni Veled." #: src/view/screens/ModerationBlockedAccounts.tsx:116 -msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." -msgstr "Az általad letiltott fiókok nem képesek válaszolni a bejegyzéseidre, megemlíteni Téged vagy bármilyen egyéb módon kapcsolatba lépni Veled. A letiltott fiókok bejegyzéseit nem fogod látni és ez fordítva is érvényes." +msgid "" +"Blocked accounts cannot reply in your threads, mention you, or otherwise " +"interact with you. You will not see their content and they will be prevented " +"from seeing yours." +msgstr "" +"Az általad letiltott fiókok nem képesek válaszolni a bejegyzéseidre, " +"megemlíteni Téged vagy bármilyen egyéb módon kapcsolatba lépni Veled. A " +"letiltott fiókok bejegyzéseit nem fogod látni és ez fordítva is érvényes." #: src/view/com/post-thread/PostThread.tsx:412 msgid "Blocked post." msgstr "Letiltott bejegyzés." #: src/screens/Profile/Sections/Labels.tsx:173 -msgid "Blocking does not prevent this labeler from placing labels on your account." -msgstr "A feljegyző letiltása nem akadályozza meg abban, hogy feljegyzéseket helyezzen a fiókodra." +msgid "" +"Blocking does not prevent this labeler from placing labels on your account." +msgstr "" +"A feljegyző letiltása nem akadályozza meg abban, hogy feljegyzéseket " +"helyezzen a fiókodra." #: src/view/screens/ProfileList.tsx:744 -msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." -msgstr "A letiltás nyilvános. Az általad letiltott fiókok nem képesek válaszolni a bejegyzéseidre, megemlíteni Téged vagy bármilyen egyéb módon kapcsolatba lépni Veled." +msgid "" +"Blocking is public. Blocked accounts cannot reply in your threads, mention " +"you, or otherwise interact with you." +msgstr "" +"A letiltás nyilvános. Az általad letiltott fiókok nem képesek válaszolni a " +"bejegyzéseidre, megemlíteni Téged vagy bármilyen egyéb módon kapcsolatba " +"lépni Veled." #: src/view/com/profile/ProfileMenu.tsx:333 -msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." -msgstr "A fiók letiltása nem fogja megakadályozni a feljegyzések hozzárendelését a saját fiókodhoz, viszont a letiltott fiók nem lesz képes válaszolni a bejegyzéseidre és egyéb módon kapcsolatba lépni Veled." +msgid "" +"Blocking will not prevent labels from being applied on your account, but it " +"will stop this account from replying in your threads or interacting with you." +msgstr "" +"A fiók letiltása nem fogja megakadályozni a feljegyzések hozzárendelését a " +"saját fiókodhoz, viszont a letiltott fiók nem lesz képes válaszolni a " +"bejegyzéseidre és egyéb módon kapcsolatba lépni Veled." #: src/view/com/auth/SplashScreen.web.tsx:173 msgid "Blog" @@ -1073,23 +1136,36 @@ msgstr "Bluesky" #: src/view/com/post-thread/PostThreadItem.tsx:850 msgid "Bluesky cannot confirm the authenticity of the claimed date." -msgstr "" +msgstr "A Bluesky nem tudja megerősíteni a létrehozás dátumát." #: src/view/com/auth/server-input/index.tsx:151 -msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server." -msgstr "A Bluesky egy nyílt hálózat, ahol saját szolgáltatót választhatsz. Ha fejlesztő vagy, saját kiszolgálót is üzemeltethetsz." +msgid "" +"Bluesky is an open network where you can choose your hosting provider. If " +"you're a developer, you can host your own server." +msgstr "" +"A Bluesky egy nyílt hálózat, ahol saját szolgáltatót választhatsz. Ha " +"fejlesztő vagy, saját kiszolgálót is üzemeltethetsz." #: src/components/ProgressGuide/List.tsx:55 msgid "Bluesky is better with friends!" msgstr "A Bluesky ismerősökkel még jobb!" #: src/components/StarterPack/ProfileStarterPacks.tsx:300 -msgid "Bluesky will choose a set of recommended accounts from people in your network." -msgstr "A Bluesky egy javasolt felhasználócsoportot fog kijelölni a hálózatodon." +msgid "" +"Bluesky will choose a set of recommended accounts from people in your " +"network." +msgstr "" +"A Bluesky egy javasolt felhasználócsoportot fog kijelölni a hálózatodon." #: src/screens/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 "A Bluesky nem fogja mutatni a profilodat és a bejegyzéseidet a kijelentkezett felhasználók számára. Lehetséges, hogy ezt a kérést nem minden alkalmazás fogja tiszteletben tartani. Ez a beállítás nem teszi priváttá a profilodat." +msgid "" +"Bluesky will not show your profile and posts to logged-out users. Other apps " +"may not honor this request. This does not make your account private." +msgstr "" +"A Bluesky nem fogja mutatni a profilodat és a bejegyzéseidet a " +"kijelentkezett felhasználók számára. Lehetséges, hogy ezt a kérést nem " +"minden alkalmazás fogja tiszteletben tartani. Ez a beállítás nem teszi " +"priváttá a profilodat." #: src/lib/moderation/useLabelBehaviorDescription.ts:53 msgid "Blur images" @@ -1099,8 +1175,7 @@ msgstr "Képek elhomályosítása" msgid "Blur images and filter from feeds" msgstr "Képek elhomályosítása és kiszűrés a hírfolyamokból" -#: src/screens/Onboarding/index.tsx:30 -#: src/screens/Onboarding/state.ts:83 +#: src/screens/Onboarding/index.tsx:30 src/screens/Onboarding/state.ts:83 msgid "Books" msgstr "Könyvek" @@ -1150,8 +1225,12 @@ msgid "By creating an account you agree to the <0>Privacy Policy." msgstr "A fiók létrehozásával elfogadod az <0>adatvédelmi irányelveket." #: src/screens/Signup/StepInfo/Policies.tsx:48 -msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." -msgstr "A fiók létrehozásával elfogadod a <0>felhasználási feltételeket és az <1>adatvédelmi irányelveket." +msgid "" +"By creating an account you agree to the <0>Terms of Service and " +"<1>Privacy Policy." +msgstr "" +"A fiók létrehozásával elfogadod a <0>felhasználási feltételeket és az " +"<1>adatvédelmi irányelveket." #: src/screens/Signup/StepInfo/Policies.tsx:68 msgid "By creating an account you agree to the <0>Terms of Service." @@ -1165,21 +1244,14 @@ msgstr "Saját" msgid "Camera" msgstr "Kamera" -#: src/view/com/modals/AddAppPasswords.tsx:180 -#~ msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long." -#~ msgstr "A jelszó neve csak az angol ábécé betűit, számokat, szóközöket, kötőjeleket és alsókötőjeleket tartalmazhat. Legalább 4, de legfeljebb 32 karakter hosszú lehet." - -#: src/components/Menu/index.tsx:236 -#: src/components/Prompt.tsx:129 -#: src/components/Prompt.tsx:131 -#: src/components/TagMenu/index.tsx:267 +#: src/components/Menu/index.tsx:236 src/components/Prompt.tsx:129 +#: src/components/Prompt.tsx:131 src/components/TagMenu/index.tsx:267 #: src/screens/Deactivated.tsx:164 #: src/screens/Profile/Header/EditProfileDialog.tsx:220 #: src/screens/Profile/Header/EditProfileDialog.tsx:228 #: src/screens/Settings/components/ChangeHandleDialog.tsx:72 #: src/screens/Settings/components/ChangeHandleDialog.tsx:79 -#: src/screens/Settings/Settings.tsx:252 -#: src/view/com/composer/Composer.tsx:891 +#: src/screens/Settings/Settings.tsx:252 src/view/com/composer/Composer.tsx:891 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 #: src/view/com/modals/ChangePassword.tsx:268 @@ -1210,10 +1282,6 @@ msgstr "Mégse" msgid "Cancel account deletion" msgstr "Fióktörlés megszakítása" -#: src/view/com/modals/ChangeHandle.tsx:137 -#~ msgid "Cancel change handle" -#~ msgstr "Felhasználónévváltás megszakítása" - #: src/view/com/modals/CropImage.web.tsx:94 msgid "Cancel image crop" msgstr "Képkivágás megszakítása" @@ -1259,25 +1327,16 @@ msgstr "Feliratok és helyettesítő szöveg" msgid "Change" msgstr "Megváltoztatás" -#: src/view/screens/Settings/index.tsx:342 -#~ msgctxt "action" -#~ msgid "Change" -#~ msgstr "Megváltoztatás" - #: src/screens/Settings/AccountSettings.tsx:90 #: src/screens/Settings/AccountSettings.tsx:94 msgid "Change email" -msgstr "" +msgstr "Email-cím megváltoztatása" #: src/components/dialogs/VerifyEmailDialog.tsx:162 #: src/components/dialogs/VerifyEmailDialog.tsx:187 msgid "Change email address" msgstr "Email-cím megváltoztatása" -#: src/view/screens/Settings/index.tsx:685 -#~ msgid "Change handle" -#~ msgstr "Felhasználónév megváltoztatása" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:88 #: src/screens/Settings/components/ChangeHandleDialog.tsx:93 msgid "Change Handle" @@ -1287,10 +1346,6 @@ msgstr "Felhasználónév megváltoztatása" msgid "Change my email" msgstr "Email-cím megváltoztatása" -#: src/view/screens/Settings/index.tsx:730 -#~ msgid "Change password" -#~ msgstr "Jelszó megváltoztatása" - #: src/view/com/modals/ChangePassword.tsx:142 msgid "Change Password" msgstr "Jelszó megváltoztatása" @@ -1305,12 +1360,10 @@ msgstr "Email-cím megváltoztatása" #: src/components/dialogs/VerifyEmailDialog.tsx:171 msgid "Change your email address" -msgstr "" +msgstr "Email-cím megváltoztatása" -#: src/Navigation.tsx:373 -#: src/view/shell/bottom-bar/BottomBar.tsx:200 -#: src/view/shell/desktop/LeftNav.tsx:348 -#: src/view/shell/Drawer.tsx:417 +#: src/Navigation.tsx:373 src/view/shell/bottom-bar/BottomBar.tsx:200 +#: src/view/shell/desktop/LeftNav.tsx:348 src/view/shell/Drawer.tsx:417 msgid "Chat" msgstr "Csevegés" @@ -1318,10 +1371,8 @@ msgstr "Csevegés" msgid "Chat muted" msgstr "Elnémítottad a csevegést" -#: src/components/dms/ConvoMenu.tsx:112 -#: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:378 -#: src/screens/Messages/ChatList.tsx:88 +#: src/components/dms/ConvoMenu.tsx:112 src/components/dms/MessageMenu.tsx:81 +#: src/Navigation.tsx:378 src/screens/Messages/ChatList.tsx:88 msgid "Chat settings" msgstr "Csevegések" @@ -1333,8 +1384,7 @@ msgstr "Csevegések" msgid "Chat unmuted" msgstr "Feloldottad a csevegés némítását" -#: src/screens/SignupQueued.tsx:78 -#: src/screens/SignupQueued.tsx:82 +#: src/screens/SignupQueued.tsx:78 src/screens/SignupQueued.tsx:82 msgid "Check my status" msgstr "Állapot ellenőrzése" @@ -1343,12 +1393,13 @@ msgid "Check your email for a login code and enter it here." msgstr "Add meg az emailben kapott megerősítőkódot!" #: src/view/com/modals/DeleteAccount.tsx:232 -msgid "Check your inbox for an email with the confirmation code to enter below:" +msgid "" +"Check your inbox for an email with the confirmation code to enter below:" msgstr "Küldtünk egy emailt. Add meg a benne található ellenőrzőkódot:" #: src/screens/Settings/components/ChangeHandleDialog.tsx:370 msgid "Choose domain verification method" -msgstr "" +msgstr "Tartományhitelesítési módszer" #: src/screens/StarterPack/Wizard/index.tsx:199 msgid "Choose Feeds" @@ -1363,8 +1414,13 @@ msgid "Choose People" msgstr "Személyek kiválasztása" #: src/view/com/composer/labels/LabelsBtn.tsx:116 -msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences." -msgstr "Válaszd ki a médiatartalomra alkalmazható feljegyzési kategóriákat! Ha egyet sem választasz ki, akkor a bejegyzést bármilyen közönség által megtekinthetőnek vesszük." +msgid "" +"Choose self-labels that are applicable for the media you are posting. If " +"none are selected, this post is suitable for all audiences." +msgstr "" +"Válaszd ki a médiatartalomra alkalmazható feljegyzési kategóriákat! Ha egyet " +"sem választasz ki, akkor a bejegyzést bármilyen közönség által " +"megtekinthetőnek vesszük." #: src/view/com/auth/server-input/index.tsx:76 msgid "Choose Service" @@ -1372,7 +1428,8 @@ msgstr "Szolgáltatás kiválasztása" #: src/screens/Onboarding/StepFinished.tsx:276 msgid "Choose the algorithms that power your custom feeds." -msgstr "Válaszd ki az algoritmusokat, amelyek az egyéni hírfolyamaidat működtetik!" +msgstr "" +"Válaszd ki az algoritmusokat, amelyek az egyéni hírfolyamaidat működtetik!" #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:107 msgid "Choose this color as your avatar" @@ -1394,10 +1451,6 @@ msgstr "Összes adat törlése (A program újra fog indulni)" msgid "Clear search query" msgstr "Keresési kifejezés törlése" -#: src/view/screens/Settings/index.tsx:878 -#~ msgid "Clears all storage data" -#~ msgstr "Az összes adat törlése" - #: src/view/screens/Support.tsx:41 msgid "click here" msgstr "kattints ide" @@ -1437,8 +1490,7 @@ msgstr "Kipp 🐴 kopp 🐴" #: src/components/dialogs/GifSelect.tsx:281 #: src/components/dialogs/VerifyEmailDialog.tsx:289 #: src/components/dms/dialogs/SearchablePeopleList.tsx:263 -#: src/components/NewskieDialog.tsx:146 -#: src/components/NewskieDialog.tsx:153 +#: src/components/NewskieDialog.tsx:146 src/components/NewskieDialog.tsx:153 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 #: src/view/com/modals/ChangePassword.tsx:268 @@ -1480,8 +1532,7 @@ msgstr "Képnézegető bezárása" msgid "Close navigation footer" msgstr "Navigációs lábléc bezárása" -#: src/components/Menu/index.tsx:230 -#: src/components/TagMenu/index.tsx:261 +#: src/components/Menu/index.tsx:230 src/components/TagMenu/index.tsx:261 msgid "Close this dialog" msgstr "Párbeszédablak bezárása" @@ -1493,10 +1544,6 @@ msgstr "Alsó navigációs sáv bezárása" msgid "Closes password update alert" msgstr "Jelszófrissítési figyelmeztetés bezárása" -#: src/view/com/composer/Composer.tsx:549 -#~ msgid "Closes post composer and discards post draft" -#~ msgstr "Bejegyzésíró bezárása és a piszkozat elvetése" - #: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:37 msgid "Closes viewer for header image" msgstr "Borítókép-nézegető bezárása" @@ -1513,24 +1560,22 @@ msgstr "Egy értesítés felhasználólistájának összecsukása" msgid "Color mode" msgstr "Színmód" -#: src/screens/Onboarding/index.tsx:38 -#: src/screens/Onboarding/state.ts:84 +#: src/screens/Onboarding/index.tsx:38 src/screens/Onboarding/state.ts:84 msgid "Comedy" msgstr "Humor" -#: src/screens/Onboarding/index.tsx:24 -#: src/screens/Onboarding/state.ts:85 +#: src/screens/Onboarding/index.tsx:24 src/screens/Onboarding/state.ts:85 msgid "Comics" msgstr "Képregények" -#: src/Navigation.tsx:279 -#: src/view/screens/CommunityGuidelines.tsx:34 +#: src/Navigation.tsx:279 src/view/screens/CommunityGuidelines.tsx:34 msgid "Community Guidelines" msgstr "Közösségi irányelvek" #: src/screens/Onboarding/StepFinished.tsx:289 msgid "Complete onboarding and start using your account" -msgstr "Regisztrációs varázsló befejezése és a Bluesky használatának megkezdése" +msgstr "" +"Regisztrációs varázsló befejezése és a Bluesky használatának megkezdése" #: src/screens/Signup/index.tsx:144 msgid "Complete the challenge" @@ -1538,7 +1583,7 @@ msgstr "Biztonsági kihívás" #: src/view/shell/desktop/LeftNav.tsx:314 msgid "Compose new post" -msgstr "" +msgstr "Új bejegyzés írása" #: src/view/com/composer/Composer.tsx:794 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" @@ -1563,8 +1608,7 @@ msgstr "A <0>moderálási beállításokban módosítható." #: 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/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 @@ -1612,21 +1656,18 @@ msgstr "Megerősítőkód" msgid "Connecting..." msgstr "Csatlakozás folyamatban…" -#: src/screens/Signup/index.tsx:175 -#: src/screens/Signup/index.tsx:178 +#: src/screens/Signup/index.tsx:175 src/screens/Signup/index.tsx:178 msgid "Contact support" msgstr "Támogatás" #: src/screens/Settings/AccessibilitySettings.tsx:102 -#: src/screens/Settings/Settings.tsx:167 -#: src/screens/Settings/Settings.tsx:170 +#: src/screens/Settings/Settings.tsx:167 src/screens/Settings/Settings.tsx:170 msgid "Content and media" -msgstr "" +msgstr "Tartalom és média" -#: src/Navigation.tsx:353 -#: src/screens/Settings/ContentAndMediaSettings.tsx:36 +#: src/Navigation.tsx:353 src/screens/Settings/ContentAndMediaSettings.tsx:36 msgid "Content and Media" -msgstr "" +msgstr "Tartalom és média" #: src/lib/moderation/useGlobalLabelStrings.ts:18 msgid "Content Blocked" @@ -1696,10 +1737,9 @@ msgstr "Vágólapra helyezve" msgid "Copied build version to clipboard" msgstr "Buildszám a vágólapra helyezve" -#: src/components/dms/MessageMenu.tsx:57 -#: src/lib/sharing.ts:25 +#: src/components/dms/MessageMenu.tsx:57 src/lib/sharing.ts:25 #: src/view/com/modals/InviteCodes.tsx:153 -#: src/view/com/util/forms/PostDropdownBtn.tsx:240 +#: src/view/com/util/forms/PostDropdownBtn.tsx:305 #: src/view/com/util/post-ctrls/PostCtrls.tsx:386 msgid "Copied to clipboard" msgstr "Vágólapra helyezve" @@ -1709,38 +1749,29 @@ msgstr "Vágólapra helyezve" msgid "Copied!" msgstr "Vágólapra helyezve." -#: src/view/com/modals/AddAppPasswords.tsx:215 -#~ msgid "Copies app password" -#~ msgstr "Alkalmazásjelszó másolása" - #: src/components/StarterPack/QrCodeDialog.tsx:175 msgid "Copy" msgstr "Másolás" -#: src/view/com/modals/ChangeHandle.tsx:467 -#~ msgid "Copy {0}" -#~ msgstr "{0} másolása" - #: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 msgid "Copy App Password" -msgstr "" +msgstr "Alkalmazásjelszó másolása" #: src/screens/Settings/AboutSettings.tsx:61 msgid "Copy build version to clipboard" -msgstr "" +msgstr "Buildszám másolása a vágólapra" -#: src/components/dialogs/Embed.tsx:122 -#: src/components/dialogs/Embed.tsx:141 +#: src/components/dialogs/Embed.tsx:122 src/components/dialogs/Embed.tsx:141 msgid "Copy code" msgstr "Kód másolása" #: src/screens/Settings/components/ChangeHandleDialog.tsx:472 msgid "Copy DID" -msgstr "" +msgstr "DID másolása" #: src/screens/Settings/components/ChangeHandleDialog.tsx:405 msgid "Copy host" -msgstr "" +msgstr "Gazda másolása" #: src/components/StarterPack/ShareDialog.tsx:124 msgid "Copy link" @@ -1754,8 +1785,8 @@ msgstr "Hivatkozás másolása" msgid "Copy link to list" msgstr "Lista hivatkozásának másolása" -#: src/view/com/util/forms/PostDropdownBtn.tsx:452 -#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/forms/PostDropdownBtn.tsx:491 +#: src/view/com/util/forms/PostDropdownBtn.tsx:500 msgid "Copy link to post" msgstr "Bejegyzés hivatkozásának másolása" @@ -1764,8 +1795,8 @@ msgstr "Bejegyzés hivatkozásának másolása" msgid "Copy message text" msgstr "Üzenet szövegének másolása" -#: src/view/com/util/forms/PostDropdownBtn.tsx:430 -#: src/view/com/util/forms/PostDropdownBtn.tsx:432 +#: src/view/com/util/forms/PostDropdownBtn.tsx:469 +#: src/view/com/util/forms/PostDropdownBtn.tsx:471 msgid "Copy post text" msgstr "Bejegyzés szövegének másolása" @@ -1775,10 +1806,9 @@ msgstr "QR-kód másolása" #: src/screens/Settings/components/ChangeHandleDialog.tsx:426 msgid "Copy TXT record value" -msgstr "" +msgstr "TXT-rekord értékének másolása" -#: src/Navigation.tsx:284 -#: src/view/screens/CopyrightPolicy.tsx:31 +#: src/Navigation.tsx:284 src/view/screens/CopyrightPolicy.tsx:31 msgid "Copyright Policy" msgstr "Jogi irányelvek" @@ -1806,10 +1836,6 @@ msgstr "A videó feldolgozása meghiúsult." msgid "Create" msgstr "Létrehozás" -#: src/view/screens/Settings/index.tsx:403 -#~ msgid "Create a new Bluesky account" -#~ msgstr "Új Bluesky-fiók létrehozása" - #: src/components/StarterPack/QrCodeDialog.tsx:153 msgid "Create a QR code for a starter pack" msgstr "QR-kód létrehozása egy kezdőcsomaghoz" @@ -1833,8 +1859,7 @@ msgstr "Regisztráció" msgid "Create Account" msgstr "Regisztráció" -#: src/components/dialogs/Signin.tsx:86 -#: src/components/dialogs/Signin.tsx:88 +#: src/components/dialogs/Signin.tsx:86 src/components/dialogs/Signin.tsx:88 msgid "Create an account" msgstr "Regisztráció" @@ -1846,10 +1871,6 @@ msgstr "Profilkép létrehozása" msgid "Create another" msgstr "Másik létrehozása" -#: src/view/com/modals/AddAppPasswords.tsx:243 -#~ msgid "Create App Password" -#~ msgstr "Alkalmazásjelszó létrehozása" - #: src/view/com/auth/SplashScreen.tsx:48 #: src/view/com/auth/SplashScreen.web.tsx:109 msgid "Create new account" @@ -1863,8 +1884,7 @@ msgstr "Jelentés neki: {0}" msgid "Created {0}" msgstr "Létrehozás dátuma: {0}" -#: src/screens/Onboarding/index.tsx:26 -#: src/screens/Onboarding/state.ts:86 +#: src/screens/Onboarding/index.tsx:26 src/screens/Onboarding/state.ts:86 msgid "Culture" msgstr "Kultúra" @@ -1873,18 +1893,13 @@ msgstr "Kultúra" msgid "Custom" msgstr "Egyéni" -#: src/view/com/modals/ChangeHandle.tsx:375 -#~ msgid "Custom domain" -#~ msgstr "Egyéni tartomány" - -#: src/view/screens/Feeds.tsx:761 -#: src/view/screens/Search/Explore.tsx:391 -msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." -msgstr "A közösség által épített egyéni hírfolyamok új élményekkel ruháznak fel, és segítenek megtalálni a Téged érdeklő tartalmakat." - -#: src/view/screens/PreferencesExternalEmbeds.tsx:54 -#~ msgid "Customize media from external sites." -#~ msgstr "A külső forrásból származó médiatartalmak testreszabása." +#: src/view/screens/Feeds.tsx:761 src/view/screens/Search/Explore.tsx:391 +msgid "" +"Custom feeds built by the community bring you new experiences and help you " +"find the content you love." +msgstr "" +"A közösség által épített egyéni hírfolyamok új élményekkel ruháznak fel, és " +"segítenek megtalálni a Téged érdeklő tartalmakat." #: src/components/dialogs/PostInteractionSettingsDialog.tsx:289 msgid "Customize who can interact with this post." @@ -1913,10 +1928,6 @@ msgstr "Születési dátum" msgid "Deactivate account" msgstr "Fiók deaktiválása" -#: src/view/screens/Settings/index.tsx:785 -#~ msgid "Deactivate my account" -#~ msgstr "Fiók deaktiválása" - #: src/screens/Settings/Settings.tsx:323 msgid "Debug Moderation" msgstr "Moderálási hibakeresés" @@ -1934,7 +1945,7 @@ msgstr "Alapértelmezett" #: src/screens/StarterPack/StarterPackScreen.tsx:585 #: src/screens/StarterPack/StarterPackScreen.tsx:664 #: src/screens/StarterPack/StarterPackScreen.tsx:744 -#: src/view/com/util/forms/PostDropdownBtn.tsx:673 +#: src/view/com/util/forms/PostDropdownBtn.tsx:706 #: src/view/screens/ProfileList.tsx:726 msgid "Delete" msgstr "Törlés" @@ -1980,13 +1991,9 @@ msgstr "Üzenet törlése helyileg" msgid "Delete my account" msgstr "Fiók törlése" -#: src/view/screens/Settings/index.tsx:807 -#~ msgid "Delete My Account…" -#~ msgstr "Fiók törlése…" - #: src/view/com/composer/Composer.tsx:802 -#: src/view/com/util/forms/PostDropdownBtn.tsx:653 -#: src/view/com/util/forms/PostDropdownBtn.tsx:655 +#: src/view/com/util/forms/PostDropdownBtn.tsx:688 +#: src/view/com/util/forms/PostDropdownBtn.tsx:690 msgid "Delete post" msgstr "Bejegyzés törlése" @@ -2003,7 +2010,7 @@ msgstr "Kezdőcsomag törlése" msgid "Delete this list?" msgstr "Lista törlése" -#: src/view/com/util/forms/PostDropdownBtn.tsx:668 +#: src/view/com/util/forms/PostDropdownBtn.tsx:701 msgid "Delete this post?" msgstr "Bejegyzés törlése" @@ -2014,16 +2021,12 @@ msgstr "Törölted a tartalmat" #: src/components/dms/MessagesListHeader.tsx:150 #: src/screens/Messages/components/ChatListItem.tsx:107 msgid "Deleted Account" -msgstr "" +msgstr "Törölt fiók" #: src/view/com/post-thread/PostThread.tsx:398 msgid "Deleted post." msgstr "Törölted a bejegyzést." -#: src/view/screens/Settings/index.tsx:858 -#~ msgid "Deletes the chat declaration record" -#~ msgstr "Csevegéskijelentési jegyzőkönyv ürítése" - #: src/screens/Profile/Header/EditProfileDialog.tsx:344 #: src/view/com/modals/CreateOrEditList.tsx:280 #: src/view/com/modals/CreateOrEditList.tsx:301 @@ -2037,7 +2040,9 @@ msgid "Description is too long" msgstr "A leírás túl hosszú" #: src/screens/Profile/Header/EditProfileDialog.tsx:365 -msgid "Description is too long. The maximum number of characters is {DESCRIPTION_MAX_GRAPHEMES}." +msgid "" +"Description is too long. The maximum number of characters is " +"{DESCRIPTION_MAX_GRAPHEMES}." msgstr "A leírás túl hosszú. A korlát {DESCRIPTION_MAX_GRAPHEMES} karakter." #: src/view/com/composer/GifAltText.tsx:150 @@ -2045,36 +2050,28 @@ msgstr "A leírás túl hosszú. A korlát {DESCRIPTION_MAX_GRAPHEMES} karakter. msgid "Descriptive alt text" msgstr "Helyettesítő szöveg" -#: src/view/com/util/forms/PostDropdownBtn.tsx:586 -#: src/view/com/util/forms/PostDropdownBtn.tsx:596 +#: src/view/com/util/forms/PostDropdownBtn.tsx:623 +#: src/view/com/util/forms/PostDropdownBtn.tsx:633 msgid "Detach quote" msgstr "Idézet leválasztása" -#: src/view/com/util/forms/PostDropdownBtn.tsx:731 +#: src/view/com/util/forms/PostDropdownBtn.tsx:764 msgid "Detach quote post?" msgstr "Idézet leválasztása" -#: src/screens/Settings/Settings.tsx:234 -#: src/screens/Settings/Settings.tsx:237 +#: src/screens/Settings/Settings.tsx:234 src/screens/Settings/Settings.tsx:237 msgid "Developer options" -msgstr "" +msgstr "Fejlesztői beállítások" #: src/components/WhoCanReply.tsx:175 msgid "Dialog: adjust who can interact with this post" -msgstr "Párbeszédablak: A bejegyzés kapcsolatbalépési jogosultságainak testreszabása" - -#: src/view/com/composer/Composer.tsx:325 -#~ msgid "Did you want to say anything?" -#~ msgstr "Szeretnél mondani valamit?" +msgstr "" +"Párbeszédablak: A bejegyzés kapcsolatbalépési jogosultságainak testreszabása" #: src/screens/Settings/AppearanceSettings.tsx:109 msgid "Dim" msgstr "Félhomályos" -#: src/view/screens/AccessibilitySettings.tsx:109 -#~ msgid "Disable autoplay for videos and GIFs" -#~ msgstr "Videók és GIF-ek automatikus lejátszásának letiltása" - #: src/screens/Settings/components/DisableEmail2FADialog.tsx:89 msgid "Disable Email 2FA" msgstr "Kétlépcsős azonosítás kikapcsolása" @@ -2091,8 +2088,7 @@ msgstr "Feliratok letiltása" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 #: src/lib/moderation/useLabelBehaviorDescription.ts:68 -#: src/screens/Messages/Settings.tsx:133 -#: src/screens/Messages/Settings.tsx:136 +#: src/screens/Messages/Settings.tsx:133 src/screens/Messages/Settings.tsx:136 #: src/screens/Moderation/index.tsx:350 msgid "Disabled" msgstr "Letiltva" @@ -2113,7 +2109,7 @@ msgstr "Piszkozat elvetése" #: src/view/com/composer/Composer.tsx:827 msgid "Discard post?" -msgstr "" +msgstr "Bejegyzés elvetése" #: src/screens/Settings/components/PwiOptOut.tsx:80 #: src/screens/Settings/components/PwiOptOut.tsx:84 @@ -2166,8 +2162,12 @@ msgid "Display name is too long" msgstr "A megjelenítendő név túl hosszú" #: src/screens/Profile/Header/EditProfileDialog.tsx:334 -msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}." -msgstr "A megjelenítendő név túl hosszú. A korlát {DISPLAY_NAME_MAX_GRAPHEMES} karakter." +msgid "" +"Display name is too long. The maximum number of characters is " +"{DISPLAY_NAME_MAX_GRAPHEMES}." +msgstr "" +"A megjelenítendő név túl hosszú. A korlát {DISPLAY_NAME_MAX_GRAPHEMES} " +"karakter." #: src/screens/Settings/components/ChangeHandleDialog.tsx:373 #: src/screens/Settings/components/ChangeHandleDialog.tsx:375 @@ -2178,14 +2178,6 @@ msgstr "DNS-panellel" msgid "Do not apply this mute word to users you follow" msgstr "A követett felhasználók kivételt élveznek a némítás alól" -#: src/view/com/composer/labels/LabelsBtn.tsx:174 -#~ msgid "Does not contain adult content." -#~ msgstr "Nem ábrázol felnőtt tartalmakat." - -#: src/view/com/composer/labels/LabelsBtn.tsx:213 -#~ msgid "Does not contain graphic or disturbing content." -#~ msgstr "Nem tartalmaz a nyugalom megzavarására alkalmas tartalmakat." - #: src/lib/moderation/useGlobalLabelStrings.ts:39 msgid "Does not include nudity." msgstr "Nem ábrázol meztelenséget." @@ -2194,10 +2186,6 @@ msgstr "Nem ábrázol meztelenséget." msgid "Doesn't begin or end with a hyphen" msgstr "Nem kezdődhet vagy végződhet kötőjellel" -#: src/view/com/modals/ChangeHandle.tsx:468 -#~ msgid "Domain Value" -#~ msgstr "Tartományérték" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:488 msgid "Domain verified!" msgstr "A tartományellenőrzés kész." @@ -2297,13 +2285,14 @@ msgstr "pl.: Akik folyton csak reklámokkal válaszolnak." #: src/view/com/modals/InviteCodes.tsx:97 msgid "Each code works once. You'll receive more invite codes periodically." -msgstr "Mindegyik meghívó csak egyszer használható fel. Időközönként újakat fogsz kapni." +msgstr "" +"Mindegyik meghívó csak egyszer használható fel. Időközönként újakat fogsz " +"kapni." #: src/screens/Settings/AccountSettings.tsx:105 #: src/screens/StarterPack/StarterPackScreen.tsx:574 #: src/screens/StarterPack/Wizard/index.tsx:560 -#: src/screens/StarterPack/Wizard/index.tsx:567 -#: src/view/screens/Feeds.tsx:386 +#: src/screens/StarterPack/Wizard/index.tsx:567 src/view/screens/Feeds.tsx:386 #: src/view/screens/Feeds.tsx:454 msgid "Edit" msgstr "Szerkesztés" @@ -2313,8 +2302,7 @@ msgctxt "action" msgid "Edit" msgstr "Szerkesztés" -#: src/view/com/util/UserAvatar.tsx:347 -#: src/view/com/util/UserBanner.tsx:95 +#: src/view/com/util/UserAvatar.tsx:347 src/view/com/util/UserBanner.tsx:95 msgid "Edit avatar" msgstr "Profilkép szerkesztése" @@ -2328,8 +2316,8 @@ msgstr "Hírfolyamok szerkesztése" msgid "Edit image" msgstr "Kép szerkesztése" -#: src/view/com/util/forms/PostDropdownBtn.tsx:632 -#: src/view/com/util/forms/PostDropdownBtn.tsx:647 +#: src/view/com/util/forms/PostDropdownBtn.tsx:669 +#: src/view/com/util/forms/PostDropdownBtn.tsx:682 msgid "Edit interaction settings" msgstr "Kapcsolatbalépési beállítások szerkesztése" @@ -2341,10 +2329,8 @@ msgstr "Lista szerkesztése" msgid "Edit Moderation List" msgstr "Moderálólista szerkesztése" -#: src/Navigation.tsx:294 -#: src/view/screens/Feeds.tsx:384 -#: src/view/screens/Feeds.tsx:452 -#: src/view/screens/SavedFeeds.tsx:116 +#: src/Navigation.tsx:294 src/view/screens/Feeds.tsx:384 +#: src/view/screens/Feeds.tsx:452 src/view/screens/SavedFeeds.tsx:116 msgid "Edit My Feeds" msgstr "Hírfolyamgyűjtemény szerkesztése" @@ -2397,8 +2383,7 @@ msgstr "Profilleírás szerkesztése" msgid "Edit your starter pack" msgstr "Kezdőcsomag szerkesztése" -#: src/screens/Onboarding/index.tsx:31 -#: src/screens/Onboarding/state.ts:88 +#: src/screens/Onboarding/index.tsx:31 src/screens/Onboarding/state.ts:88 msgid "Education" msgstr "Tanítás-tanulás" @@ -2414,7 +2399,7 @@ msgstr "Kikapcsoltad a kétlépcsős azonosítást" #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:47 msgid "Email 2FA enabled" -msgstr "" +msgstr "Kétlépcsős azonosítás bekapcsolva" #: src/screens/Login/ForgotPasswordForm.tsx:93 msgid "Email address" @@ -2441,28 +2426,28 @@ msgstr "Visszaigazoltad az email-címedet" msgid "Email Verified" msgstr "Visszaigazoltad az email-címedet" -#: src/view/screens/Settings/index.tsx:320 -#~ msgid "Email:" -#~ msgstr "Email-cím:" - #: src/components/dialogs/Embed.tsx:113 msgid "Embed HTML code" msgstr "HTML-kód beágyazása" #: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:469 -#: src/view/com/util/forms/PostDropdownBtn.tsx:471 +#: src/view/com/util/forms/PostDropdownBtn.tsx:508 +#: src/view/com/util/forms/PostDropdownBtn.tsx:510 msgid "Embed post" msgstr "Bejegyzés beágyazása" #: src/components/dialogs/Embed.tsx:101 -msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." -msgstr "Jelenítsd meg ezt a bejegyzést a honlapodon! Másold ki az alábbi kódrészletet és illeszd be a honlapod HTML-kódjába." +msgid "" +"Embed this post in your website. Simply copy the following snippet and paste " +"it into the HTML code of your website." +msgstr "" +"Jelenítsd meg ezt a bejegyzést a honlapodon! Másold ki az alábbi " +"kódrészletet és illeszd be a honlapod HTML-kódjába." #: src/screens/Settings/components/Email2FAToggle.tsx:56 #: src/screens/Settings/components/Email2FAToggle.tsx:60 msgid "Enable" -msgstr "" +msgstr "Engedélyezés" #: src/components/dialogs/EmbedConsent.tsx:100 msgid "Enable {0} only" @@ -2474,7 +2459,7 @@ msgstr "Felnőtt tartalmak engedélyezése" #: src/screens/Settings/components/Email2FAToggle.tsx:53 msgid "Enable Email 2FA" -msgstr "" +msgstr "Emailes kétlépcsős azonosítás bekapcsolása" #: src/components/dialogs/EmbedConsent.tsx:81 #: src/components/dialogs/EmbedConsent.tsx:88 @@ -2498,8 +2483,7 @@ msgstr "Feliratok engedélyezése" msgid "Enable this source only" msgstr "Csak ezen forrás engedélyezése" -#: src/screens/Messages/Settings.tsx:124 -#: src/screens/Messages/Settings.tsx:127 +#: src/screens/Messages/Settings.tsx:124 src/screens/Messages/Settings.tsx:127 #: src/screens/Moderation/index.tsx:348 msgid "Enabled" msgstr "Engedélyezve" @@ -2512,10 +2496,6 @@ msgstr "A hírfolyam véget ért" msgid "Ensure you have selected a language for each subtitle file." msgstr "Minden feliratfájlhoz rendelj hozzá egy nyelvet!" -#: src/view/com/modals/AddAppPasswords.tsx:161 -#~ msgid "Enter a name for this App Password" -#~ msgstr "Alkalmazásjelszó nevének megadása" - #: src/screens/Login/SetNewPasswordForm.tsx:133 msgid "Enter a password" msgstr "Jelszó megadása" @@ -2542,8 +2522,12 @@ msgid "Enter the domain you want to use" msgstr "Add meg a használni kívánt tartományt" #: src/screens/Login/ForgotPasswordForm.tsx:113 -msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password." -msgstr "Add meg a regisztrációkor használt email-címedet! Küldeni fogunk egy „helyreállítási kódot”, amivel megváltoztathatod a jelszavad." +msgid "" +"Enter the email you used to create your account. We'll send you a \"reset " +"code\" so you can set a new password." +msgstr "" +"Add meg a regisztrációkor használt email-címedet! Küldeni fogunk egy " +"„helyreállítási kódot”, amivel megváltoztathatod a jelszavad." #: src/components/dialogs/BirthDateSettings.tsx:107 msgid "Enter your birth date" @@ -2595,8 +2579,7 @@ msgstr "Bárki válaszolhat" msgid "Everybody can reply to this post." msgstr "Bárki válaszolhat erre a bejegyzésre." -#: src/screens/Messages/Settings.tsx:77 -#: src/screens/Messages/Settings.tsx:80 +#: src/screens/Messages/Settings.tsx:77 src/screens/Messages/Settings.tsx:80 msgid "Everyone" msgstr "Bárkitől" @@ -2624,10 +2607,6 @@ msgstr "Kilépés a teljes képernyős módból" msgid "Exits account deletion process" msgstr "Fióktörlés megszakítása" -#: src/view/com/modals/ChangeHandle.tsx:138 -#~ msgid "Exits handle change process" -#~ msgstr "Felhasználónévváltás megszakítása" - #: src/view/com/modals/CropImage.web.tsx:95 msgid "Exits image cropping process" msgstr "Képkivágás megszakítása" @@ -2660,11 +2639,7 @@ msgstr "Az URI nem old fel egy rekordot" #: src/screens/Settings/FollowingFeedPreferences.tsx:116 #: src/screens/Settings/ThreadPreferences.tsx:124 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 "Kísérleti: Ha ez a funkció engedélyezve van, akkor csak az általad követett felhasználók válaszairól és idézéseiről fogsz értesítést kapni. Ezeket a beállításokat idővel bővíteni fogjuk." +msgstr "Kísérleti" #: src/components/dialogs/MutedWords.tsx:500 msgid "Expired" @@ -2694,7 +2669,7 @@ msgstr "Adatok exportálása" #: src/screens/Settings/ContentAndMediaSettings.tsx:65 #: src/screens/Settings/ContentAndMediaSettings.tsx:68 msgid "External media" -msgstr "" +msgstr "Külső médiatartalom" #: src/components/dialogs/EmbedConsent.tsx:54 #: src/components/dialogs/EmbedConsent.tsx:58 @@ -2703,30 +2678,26 @@ msgstr "Külső médiatartalom" #: src/components/dialogs/EmbedConsent.tsx:70 #: src/screens/Settings/ExternalMediaPreferences.tsx:34 -msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." -msgstr "A külső médiatartalmak engedélyezése lehetővé teszi más honlapok számára az adatgyűjtést Rólad vagy az eszközödről. A „Lejátszás” gomb megnyomásáig semmilyen adatot sem küldünk vagy kérünk le." +msgid "" +"External media may allow websites to collect information about you and your " +"device. No information is sent or requested until you press the \"play\" " +"button." +msgstr "" +"A külső médiatartalmak engedélyezése lehetővé teszi más honlapok számára az " +"adatgyűjtést Rólad vagy az eszközödről. A „Lejátszás” gomb megnyomásáig " +"semmilyen adatot sem küldünk vagy kérünk le." -#: src/Navigation.tsx:313 -#: src/screens/Settings/ExternalMediaPreferences.tsx:29 +#: src/Navigation.tsx:313 src/screens/Settings/ExternalMediaPreferences.tsx:29 msgid "External Media Preferences" msgstr "Külső médiatartalmak" -#: src/view/screens/Settings/index.tsx:637 -#~ msgid "External media settings" -#~ msgstr "Külső médiatartalmak" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:553 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 "Az alkalmazásjelszó létrehozása meghiúsult." +msgstr "A felhasználónév megváltoztatása meghiúsult. Próbáld újra!" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:173 msgid "Failed to create app password. Please try again." -msgstr "" +msgstr "Az alkalmazásjelszó létrehozása meghiúsult. Próbáld újra!" #: src/screens/StarterPack/Wizard/index.tsx:238 #: src/screens/StarterPack/Wizard/index.tsx:246 @@ -2734,14 +2705,17 @@ msgid "Failed to create starter pack" msgstr "A kezdőcsomag létrehozása meghiúsult" #: src/view/com/modals/CreateOrEditList.tsx:186 -msgid "Failed to create the list. Check your internet connection and try again." -msgstr "A lista létrehozása meghiúsult. Ellenőrizd az internetkapcsolatot, majd próbáld újra!" - +msgid "" +"Failed to create the list. Check your internet connection and try again." +msgstr "" +"A lista létrehozása meghiúsult. Ellenőrizd az internetkapcsolatot, majd " +"próbáld újra!" + #: src/components/dms/MessageMenu.tsx:73 msgid "Failed to delete message" msgstr "Az üzenet törlése meghiúsult" -#: src/view/com/util/forms/PostDropdownBtn.tsx:200 +#: src/view/com/util/forms/PostDropdownBtn.tsx:265 msgid "Failed to delete post, please try again" msgstr "A bejegyzés törlése meghiúsult. Próbáld újra!" @@ -2783,10 +2757,6 @@ msgstr "A kép mentése meghiúsult: {0}" msgid "Failed to save notification preferences, please try again" msgstr "Az értesítési beállítások mentése meghiúsult. Próbáld újra!" -#: src/lib/api/index.ts:NaN -#~ msgid "Failed to save post interaction settings. Your post was created but users may be able to interact with it." -#~ msgstr "A kapcsolatbalépési beállítások mentése meghiúsult. A bejegyzés létrejött, de lehetséges, hogy nem kívánt felhasználók is kapcsolatba léphetnek vele." - #: src/components/dms/MessageItem.tsx:233 msgid "Failed to send" msgstr "A küldés meghiúsult" @@ -2796,7 +2766,7 @@ msgstr "A küldés meghiúsult" msgid "Failed to submit appeal, please try again." msgstr "A fellebbezés elküldése meghiúsult. Próbáld újra!" -#: src/view/com/util/forms/PostDropdownBtn.tsx:229 +#: src/view/com/util/forms/PostDropdownBtn.tsx:294 msgid "Failed to toggle thread mute, please try again" msgstr "A beszélgetés némításának ki-/bekapcsolása meghiúsult. Próbáld újra!" @@ -2808,23 +2778,20 @@ msgstr "A hírfolyamok frissítése meghiúsult" msgid "Failed to update settings" msgstr "A beállítások mentése meghiúsult" -#: src/lib/media/video/upload.ts:72 -#: src/lib/media/video/upload.web.ts:74 -#: src/lib/media/video/upload.web.ts:78 -#: src/lib/media/video/upload.web.ts:88 +#: src/lib/media/video/upload.ts:72 src/lib/media/video/upload.web.ts:74 +#: src/lib/media/video/upload.web.ts:78 src/lib/media/video/upload.web.ts:88 msgid "Failed to upload video" msgstr "A videó feltöltése meghiúsult" #: src/screens/Settings/components/ChangeHandleDialog.tsx:341 msgid "Failed to verify handle. Please try again." -msgstr "" +msgstr "A felhasználónév hitelesítése meghiúsult. Próbáld újra!" #: src/Navigation.tsx:229 msgid "Feed" msgstr "Hírfolyam" -#: src/components/FeedCard.tsx:134 -#: src/view/com/feeds/FeedSourceCard.tsx:253 +#: src/components/FeedCard.tsx:134 src/view/com/feeds/FeedSourceCard.tsx:253 msgid "Feed by {0}" msgstr "Hírfolyam – Szerző: {0}" @@ -2832,40 +2799,34 @@ msgstr "Hírfolyam – Szerző: {0}" msgid "Feed toggle" msgstr "Hírfolyam ki/be" -#: src/view/shell/desktop/RightNav.tsx:70 -#: src/view/shell/Drawer.tsx:319 +#: src/view/shell/desktop/RightNav.tsx:70 src/view/shell/Drawer.tsx:319 msgid "Feedback" msgstr "Visszajelzés" -#: src/view/com/util/forms/PostDropdownBtn.tsx:271 -#: src/view/com/util/forms/PostDropdownBtn.tsx:280 +#: src/view/com/util/forms/PostDropdownBtn.tsx:336 +#: src/view/com/util/forms/PostDropdownBtn.tsx:345 msgid "Feedback sent!" msgstr "Megkaptuk a visszajelzést!" -#: src/Navigation.tsx:388 -#: src/screens/StarterPack/StarterPackScreen.tsx:183 -#: src/view/screens/Feeds.tsx:446 -#: src/view/screens/Feeds.tsx:552 -#: src/view/screens/Profile.tsx:232 -#: src/view/screens/Search/Search.tsx:537 -#: src/view/shell/desktop/LeftNav.tsx:457 -#: src/view/shell/Drawer.tsx:476 +#: src/Navigation.tsx:388 src/screens/StarterPack/StarterPackScreen.tsx:183 +#: src/view/screens/Feeds.tsx:446 src/view/screens/Feeds.tsx:552 +#: src/view/screens/Profile.tsx:232 src/view/screens/Search/Search.tsx:537 +#: src/view/shell/desktop/LeftNav.tsx:457 src/view/shell/Drawer.tsx:476 msgid "Feeds" msgstr "Hírfolyamok" #: src/view/screens/SavedFeeds.tsx:205 -msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." -msgstr "A hírfolyamok olyan egyéni algoritmusok, amelyeket felhasználók építenek egy kis programozási tudással. További információért <0/>!" +msgid "" +"Feeds are custom algorithms that users build with a little coding expertise. " +"<0/> for more information." +msgstr "" +"A hírfolyamok olyan egyéni algoritmusok, amelyeket felhasználók építenek egy " +"kis programozási tudással. További információért <0/>!" -#: src/components/FeedCard.tsx:273 -#: src/view/screens/SavedFeeds.tsx:83 +#: src/components/FeedCard.tsx:273 src/view/screens/SavedFeeds.tsx:83 msgid "Feeds updated!" msgstr "Hírfolyamok frissítve" -#: src/view/com/modals/ChangeHandle.tsx:468 -#~ msgid "File Contents" -#~ msgstr "A fájl tartalmának" - #: src/screens/Settings/components/ExportCarDialog.tsx:43 msgid "File saved successfully!" msgstr "A fájl sikeresen elmentve!" @@ -2888,14 +2849,6 @@ msgstr "Követendő fiókok felfedezése" msgid "Find posts and users on Bluesky" msgstr "Bejegyzések és felhasználók felfedezése a Blueskyon" -#: src/view/screens/PreferencesFollowingFeed.tsx:52 -#~ msgid "Fine-tune the content you see on your Following feed." -#~ msgstr "A Követett hírfolyam tartalmának személyre szabása." - -#: src/view/screens/PreferencesThreads.tsx:55 -#~ msgid "Fine-tune the discussion threads." -#~ msgstr "Válaszláncok személyre szabása." - #: src/screens/StarterPack/Wizard/index.tsx:200 msgid "Finish" msgstr "Befejezés" @@ -2956,8 +2909,12 @@ msgid "Follow Back" msgstr "Követés kölcsönzése" #: src/view/screens/Search/Explore.tsx:334 -msgid "Follow more accounts to get connected to your interests and build your network." -msgstr "Kövess további felhasználókat, ha szeretnél az érdeklődési köröd alapján kapcsolatokat építeni!" +msgid "" +"Follow more accounts to get connected to your interests and build your " +"network." +msgstr "" +"Kövess további felhasználókat, ha szeretnél az érdeklődési köröd alapján " +"kapcsolatokat építeni!" #: src/components/KnownFollowers.tsx:231 msgid "Followed by <0>{0}" @@ -2972,21 +2929,15 @@ msgid "Followed by <0>{0} and <1>{1}" msgstr "<0>{0} és <1>{1} követi" #: src/components/KnownFollowers.tsx:186 -msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" +msgid "" +"Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# " +"others}}" msgstr "<0>{0}, <1>{1} és {2} további személy követi" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:404 msgid "Followed users" msgstr "A követett felhasználóktól" -#: src/view/com/notifications/FeedItem.tsx:207 -#~ msgid "followed you" -#~ msgstr "mostantól követ Téged" - -#: src/view/com/notifications/FeedItem.tsx:205 -#~ msgid "followed you back" -#~ msgstr "kölcsönözte a követésedet" - #: src/view/screens/ProfileFollowers.tsx:30 #: src/view/screens/ProfileFollowers.tsx:31 msgid "Followers" @@ -3007,10 +2958,8 @@ msgstr "Ismert követők" #: 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:632 -#: src/view/screens/ProfileFollows.tsx:30 -#: src/view/screens/ProfileFollows.tsx:31 -#: src/view/screens/SavedFeeds.tsx:431 +#: src/view/screens/Feeds.tsx:632 src/view/screens/ProfileFollows.tsx:30 +#: src/view/screens/ProfileFollows.tsx:31 src/view/screens/SavedFeeds.tsx:431 msgid "Following" msgstr "Követett" @@ -3028,8 +2977,7 @@ msgstr "Mostantól követed: {name}" msgid "Following feed preferences" msgstr "Követett hírfolyam" -#: src/Navigation.tsx:300 -#: src/screens/Settings/FollowingFeedPreferences.tsx:50 +#: src/Navigation.tsx:300 src/screens/Settings/FollowingFeedPreferences.tsx:50 msgid "Following Feed Preferences" msgstr "Követett hírfolyam" @@ -3049,22 +2997,23 @@ msgstr "Betűtípus" msgid "Font size" msgstr "Betűméret" -#: src/screens/Onboarding/index.tsx:40 -#: src/screens/Onboarding/state.ts:89 +#: src/screens/Onboarding/index.tsx:40 src/screens/Onboarding/state.ts:89 msgid "Food" msgstr "Étel-ital" #: src/view/com/modals/DeleteAccount.tsx:129 -msgid "For security reasons, we'll need to send a confirmation code to your email address." +msgid "" +"For security reasons, we'll need to send a confirmation code to your email " +"address." msgstr "Biztonsági okokból egy ellenőrzőkódot fogunk küldeni az email-címedre." #: src/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." +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 "Biztonsági okokból ezt többé nem tekintheted meg. Ha elveszted ezt a jelszót, akkor újat kell létrehoznod." +"Biztonsági okokból ezt többé nem tekintheted meg. Ha elveszted ezt a " +"jelszót, akkor újat kell létrehoznod." #: src/screens/Settings/AppearanceSettings.tsx:127 msgid "For the best experience, we recommend using the theme font." @@ -3074,8 +3023,7 @@ msgstr "A legjobb élmény érdekében a témabetűtípus használatát javasolj msgid "Forever" msgstr "Örökké" -#: src/screens/Login/index.tsx:126 -#: src/screens/Login/index.tsx:141 +#: src/screens/Login/index.tsx:126 src/screens/Login/index.tsx:141 msgid "Forgot Password" msgstr "Elfelejtett jelszó" @@ -3139,34 +3087,28 @@ msgstr "A törvény vagy a felhasználási feltételek egyértelmű megszegése" #: src/components/moderation/ScreenHider.tsx:154 #: src/components/moderation/ScreenHider.tsx:163 -#: src/view/com/auth/LoggedOut.tsx:72 -#: src/view/screens/NotFound.tsx:57 -#: src/view/screens/ProfileFeed.tsx:113 -#: src/view/screens/ProfileList.tsx:1029 +#: src/view/com/auth/LoggedOut.tsx:72 src/view/screens/NotFound.tsx:57 +#: src/view/screens/ProfileFeed.tsx:113 src/view/screens/ProfileList.tsx:1029 #: src/view/shell/desktop/LeftNav.tsx:134 msgid "Go back" msgstr "Vissza" -#: src/components/Error.tsx:79 -#: src/screens/List/ListHiddenScreen.tsx:210 -#: src/screens/Profile/ErrorState.tsx:62 -#: src/screens/Profile/ErrorState.tsx:66 +#: src/components/Error.tsx:79 src/screens/List/ListHiddenScreen.tsx:210 +#: src/screens/Profile/ErrorState.tsx:62 src/screens/Profile/ErrorState.tsx:66 #: src/screens/StarterPack/StarterPackScreen.tsx:757 -#: src/view/screens/NotFound.tsx:56 -#: src/view/screens/ProfileFeed.tsx:118 +#: src/view/screens/NotFound.tsx:56 src/view/screens/ProfileFeed.tsx:118 #: src/view/screens/ProfileList.tsx:1034 msgid "Go Back" msgstr "Vissza" #: src/screens/Settings/components/ChangeHandleDialog.tsx:529 msgid "Go back to previous page" -msgstr "" +msgstr "Vissza az előző oldalra" #: src/components/dms/ReportDialog.tsx:149 #: src/components/ReportDialog/SelectReportOptionView.tsx:80 #: src/components/ReportDialog/SubmitView.tsx:109 -#: src/screens/Onboarding/Layout.tsx:102 -#: src/screens/Onboarding/Layout.tsx:191 +#: src/screens/Onboarding/Layout.tsx:102 src/screens/Onboarding/Layout.tsx:191 #: src/screens/Signup/BackNextButtons.tsx:36 msgid "Go back to previous step" msgstr "Vissza az előző lépéshez" @@ -3217,16 +3159,16 @@ msgstr "Felhasználónév" #: src/screens/Settings/components/ChangeHandleDialog.tsx:557 msgid "Handle already taken. Please try a different one." -msgstr "" +msgstr "Ez a felhasználónév már foglalt. Adj meg egy másikat!" #: src/screens/Settings/components/ChangeHandleDialog.tsx:188 #: src/screens/Settings/components/ChangeHandleDialog.tsx:325 msgid "Handle changed!" -msgstr "" +msgstr "Megváltoztattad a felhasználónevedet." #: src/screens/Settings/components/ChangeHandleDialog.tsx:561 msgid "Handle too long. Please try a shorter one." -msgstr "" +msgstr "Ez a felhasználónév túl hosszú. Adj meg egy rövidebbet!" #: src/screens/Settings/AccessibilitySettings.tsx:80 msgid "Haptics" @@ -3248,24 +3190,22 @@ msgstr "Címke: #{tag}" msgid "Having trouble?" msgstr "Problémába ütköztél?" -#: src/screens/Settings/Settings.tsx:199 -#: src/screens/Settings/Settings.tsx:203 -#: src/view/shell/desktop/RightNav.tsx:99 -#: src/view/shell/Drawer.tsx:332 +#: src/screens/Settings/Settings.tsx:199 src/screens/Settings/Settings.tsx:203 +#: src/view/shell/desktop/RightNav.tsx:99 src/view/shell/Drawer.tsx:332 msgid "Help" msgstr "Súgó" #: src/screens/Onboarding/StepProfile/index.tsx:237 -msgid "Help people know you're not a bot by uploading a picture or creating an avatar." -msgstr "Segíts másoknak megbizonyosodni arról, hogy valódi személy vagy egy profilkép létrehozásával!" +msgid "" +"Help people know you're not a bot by uploading a picture or creating an " +"avatar." +msgstr "" +"Segíts másoknak megbizonyosodni arról, hogy valódi személy vagy egy " +"profilkép létrehozásával!" #: src/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 "Elkészült az alkalmazásjelszó." +msgstr "Elkészült az alkalmazásjelszó." #: src/components/ListCard.tsx:130 msgid "Hidden list" @@ -3278,7 +3218,7 @@ msgstr "Rejtett lista" #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 #: src/lib/moderation/useLabelBehaviorDescription.ts:30 -#: src/view/com/util/forms/PostDropdownBtn.tsx:684 +#: src/view/com/util/forms/PostDropdownBtn.tsx:717 msgid "Hide" msgstr "Elrejtés" @@ -3287,18 +3227,18 @@ msgctxt "action" msgid "Hide" msgstr "Elrejtés" -#: src/view/com/util/forms/PostDropdownBtn.tsx:543 -#: src/view/com/util/forms/PostDropdownBtn.tsx:549 +#: src/view/com/util/forms/PostDropdownBtn.tsx:580 +#: src/view/com/util/forms/PostDropdownBtn.tsx:586 msgid "Hide post for me" msgstr "Bejegyzés elrejtése helyileg" -#: src/view/com/util/forms/PostDropdownBtn.tsx:560 -#: src/view/com/util/forms/PostDropdownBtn.tsx:570 +#: src/view/com/util/forms/PostDropdownBtn.tsx:597 +#: src/view/com/util/forms/PostDropdownBtn.tsx:607 msgid "Hide reply for everyone" msgstr "Válasz elrejtése mindenkinek" -#: src/view/com/util/forms/PostDropdownBtn.tsx:542 -#: src/view/com/util/forms/PostDropdownBtn.tsx:548 +#: src/view/com/util/forms/PostDropdownBtn.tsx:579 +#: src/view/com/util/forms/PostDropdownBtn.tsx:585 msgid "Hide reply for me" msgstr "Válasz elrejtése helyileg" @@ -3307,12 +3247,12 @@ msgstr "Válasz elrejtése helyileg" msgid "Hide the content" msgstr "Tartalom elrejtése" -#: src/view/com/util/forms/PostDropdownBtn.tsx:679 +#: src/view/com/util/forms/PostDropdownBtn.tsx:712 msgid "Hide this post?" msgstr "Bejegyzés elrejtése" -#: src/view/com/util/forms/PostDropdownBtn.tsx:679 -#: src/view/com/util/forms/PostDropdownBtn.tsx:741 +#: src/view/com/util/forms/PostDropdownBtn.tsx:712 +#: src/view/com/util/forms/PostDropdownBtn.tsx:774 msgid "Hide this reply?" msgstr "Válasz elrejtése" @@ -3321,42 +3261,65 @@ msgid "Hide user list" msgstr "Felhasználólista elrejtése" #: src/view/com/posts/FeedErrorMessage.tsx:117 -msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." -msgstr "Hmm… Hiba történt a hírfolyamkiszolgálóval történő kapcsolatfelvétel közben. Kérjük, értesítsd erről a hírfolyam tulajdonosát!" +msgid "" +"Hmm, some kind of issue occurred when contacting the feed server. Please let " +"the feed owner know about this issue." +msgstr "" +"Hmm… Hiba történt a hírfolyamkiszolgálóval történő kapcsolatfelvétel közben. " +"Kérjük, értesítsd erről a hírfolyam tulajdonosát!" #: src/view/com/posts/FeedErrorMessage.tsx:105 -msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." -msgstr "Hmm… Úgy tűnik, hogy a hírfolyamkiszolgáló nincs helyesen beállítva. Kérjük, értesítsd erről a hírfolyam tulajdonosát!" +msgid "" +"Hmm, the feed server appears to be misconfigured. Please let the feed owner " +"know about this issue." +msgstr "" +"Hmm… Úgy tűnik, hogy a hírfolyamkiszolgáló nincs helyesen beállítva. Kérjük, " +"értesítsd erről a hírfolyam tulajdonosát!" #: src/view/com/posts/FeedErrorMessage.tsx:111 -msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." -msgstr "Hmm… Úgy tűnik, hogy a hírfolyamkiszolgáló nem elérhető. Kérjük, értesítsd erről a hírfolyam tulajdonosát!" +msgid "" +"Hmm, the feed server appears to be offline. Please let the feed owner know " +"about this issue." +msgstr "" +"Hmm… Úgy tűnik, hogy a hírfolyamkiszolgáló nem elérhető. Kérjük, értesítsd " +"erről a hírfolyam tulajdonosát!" #: src/view/com/posts/FeedErrorMessage.tsx:108 -msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." -msgstr "Hmm… Úgy tűnik, hogy a hírfolyamkiszolgáló helytelen választ adott. Kérjük, értesítsd erről a hírfolyam tulajdonosát!" +msgid "" +"Hmm, the feed server gave a bad response. Please let the feed owner know " +"about this issue." +msgstr "" +"Hmm… Úgy tűnik, hogy a hírfolyamkiszolgáló helytelen választ adott. Kérjük, " +"értesítsd erről a hírfolyam tulajdonosát!" #: src/view/com/posts/FeedErrorMessage.tsx:102 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." -msgstr "Hmm… A hírfolyam felkeresése meghiúsult. Lehetséges, hogy már nem létezik." +msgstr "" +"Hmm… A hírfolyam felkeresése meghiúsult. Lehetséges, hogy már nem létezik." #: src/screens/Moderation/index.tsx:55 -msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." -msgstr "Hmmmm… Az adatok betöltése meghiúsult. A részleteket alább láthatod. Ha a probléma fennáll, jelentsd nekünk!" +msgid "" +"Hmmmm, it seems we're having trouble loading this data. See below for more " +"details. If this issue persists, please contact us." +msgstr "" +"Hmmmm… Az adatok betöltése meghiúsult. A részleteket alább láthatod. Ha a " +"probléma fennáll, jelentsd nekünk!" #: src/screens/Profile/ErrorState.tsx:31 msgid "Hmmmm, we couldn't load that moderation service." msgstr "Hmmmm… Ez a moderálási szolgáltatás nem található." #: src/view/com/composer/state/video.ts:426 -msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" -msgstr "Egy pillanat! A videófeltöltés lehetősége még nem mindenki számára elérhető. Próbáld újra később!" +msgid "" +"Hold up! We’re gradually giving access to video, and you’re still waiting in " +"line. Check back soon!" +msgstr "" +"Egy pillanat! A videófeltöltés lehetősége még nem mindenki számára elérhető. " +"Próbáld újra később!" -#: src/Navigation.tsx:585 -#: src/Navigation.tsx:605 +#: src/Navigation.tsx:585 src/Navigation.tsx:605 #: src/view/shell/bottom-bar/BottomBar.tsx:158 -#: src/view/shell/desktop/LeftNav.tsx:401 -#: src/view/shell/Drawer.tsx:391 +#: src/view/shell/desktop/LeftNav.tsx:401 src/view/shell/Drawer.tsx:391 msgid "Home" msgstr "Kezdőlap" @@ -3403,32 +3366,45 @@ msgstr "Értettem" msgid "If alt text is long, toggles alt text expanded state" msgstr "Hosszabb helyettesítő szövegek mutatása/levágása" -#~ msgid "If none are selected, suitable for all ages." -#~ msgstr "Ha egyet sem jelölsz ki, akkor a tartalom minden korosztály számára megtekinthető marad." - #: src/screens/Signup/StepInfo/Policies.tsx:110 -msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." -msgstr "Ha még nem töltötted be az országod által meghatározott nagykorúsági életkort, akkor az alábbi feltételeket a szülődnek vagy törvényes gondviselődnek kell elolvasnia." +msgid "" +"If you are not yet an adult according to the laws of your country, your " +"parent or legal guardian must read these Terms on your behalf." +msgstr "" +"Ha még nem töltötted be az országod által meghatározott nagykorúsági " +"életkort, akkor az alábbi feltételeket a szülődnek vagy törvényes " +"gondviselődnek kell elolvasnia." #: src/view/screens/ProfileList.tsx:723 msgid "If you delete this list, you won't be able to recover it." msgstr "A lista törlése nem vonható vissza." #: src/screens/Settings/components/ChangeHandleDialog.tsx:247 -msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity – <0>learn more." +msgid "" +"If you have your own domain, you can use that as your handle. This lets you " +"self-verify your identity – <0>learn more." msgstr "" +"Ha rendelkezel saját tartománnyal, akkor az is lehet a felhasználóneved. Így " +"magadtól is hitelesítheted a kiléted – <0>további információ." -#: src/view/com/util/forms/PostDropdownBtn.tsx:670 +#: src/view/com/util/forms/PostDropdownBtn.tsx:703 msgid "If you remove this post, you won't be able to recover it." msgstr "A bejegyzés törlése nem vonható vissza." #: src/view/com/modals/ChangePassword.tsx:149 -msgid "If you want to change your password, we will send you a code to verify that this is your account." -msgstr "A jelszó megváltoztatásához egy ellenőrzőkódot fogunk küldeni, hogy igazolhasd a kiléted." +msgid "" +"If you want to change your password, we will send you a code to verify that " +"this is your account." +msgstr "" +"A jelszó megváltoztatásához egy ellenőrzőkódot fogunk küldeni, hogy " +"igazolhasd a kiléted." #: src/screens/Settings/components/DeactivateAccountDialog.tsx:92 -msgid "If you're trying to change your handle or email, do so before you deactivate." -msgstr "Ha meg akarod változtatni a felhasználóneved vagy az email-címed, azt még a deaktiválás előtt tedd meg!" +msgid "" +"If you're trying to change your handle or email, do so before you deactivate." +msgstr "" +"Ha meg akarod változtatni a felhasználóneved vagy az email-címed, azt még a " +"deaktiválás előtt tedd meg!" #: src/lib/moderation/useReportOptions.ts:38 msgid "Illegal and Urgent" @@ -3444,7 +3420,8 @@ msgstr "A kép mentése sikeres" #: src/lib/moderation/useReportOptions.ts:49 msgid "Impersonation or false claims about identity or affiliation" -msgstr "Megszemélyesítés vagy a kilétéről/hovatartozásáról szóló valótlan állítások" +msgstr "" +"Megszemélyesítés vagy a kilétéről/hovatartozásáról szóló valótlan állítások" #: src/lib/moderation/useReportOptions.ts:68 msgid "Impersonation, misinformation, or false claims" @@ -3462,10 +3439,6 @@ msgstr "A jelszó visszaállításához add meg az emailben kapott ellenőrzők msgid "Input confirmation code for account deletion" msgstr "A fiókod törléséhez add meg az ellenőrzőkódot!" -#: src/view/com/modals/AddAppPasswords.tsx:175 -#~ msgid "Input name for app password" -#~ msgstr "Alkalmazásjelszó nevének megadása" - #: src/screens/Login/SetNewPasswordForm.tsx:145 msgid "Input new password" msgstr "Új jelszó megadása" @@ -3486,10 +3459,6 @@ msgstr "A regisztrációkor használt felhasználónév vagy email-cím megadás msgid "Input your password" msgstr "Jelszó megadása" -#: src/view/com/modals/ChangeHandle.tsx:376 -#~ msgid "Input your preferred hosting provider" -#~ msgstr "Kívánt tárhelyszolgáltató megadása" - #: src/screens/Signup/StepHandle.tsx:114 msgid "Input your user handle" msgstr "Felhasználónév megadása" @@ -3498,10 +3467,6 @@ msgstr "Felhasználónév megadása" msgid "Interaction limited" msgstr "A kapcsolatbalépés korlátozott" -#: src/components/dialogs/nuxs/NeueTypography.tsx:47 -#~ msgid "Introducing new font settings" -#~ msgstr "Új betűtípus-beállítások váltak elérhetővé" - #: src/screens/Login/LoginForm.tsx:142 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." @@ -3509,14 +3474,13 @@ msgstr "Érvénytelen kétlépcsős azonosítási kód." #: src/screens/Settings/components/ChangeHandleDialog.tsx:563 msgid "Invalid handle. Please try a different one." -msgstr "" +msgstr "Érvénytelen felhasználónév. Adj meg egy másikat!" #: src/view/com/post-thread/PostThreadItem.tsx:272 msgid "Invalid or unsupported post record" msgstr "A megadott bejegyzésrekord érvénytelen vagy nem támogatott" -#: src/screens/Login/LoginForm.tsx:88 -#: src/screens/Login/LoginForm.tsx:147 +#: src/screens/Login/LoginForm.tsx:88 src/screens/Login/LoginForm.tsx:147 msgid "Invalid username or password" msgstr "Érvénytelen felhasználónév vagy jelszó" @@ -3533,7 +3497,8 @@ msgid "Invite code" msgstr "Meghívókód" #: src/screens/Signup/state.ts:258 -msgid "Invite code not accepted. Check that you input it correctly and try again." +msgid "" +"Invite code not accepted. Check that you input it correctly and try again." msgstr "Érvénytelen meghívókód. Ellenőrizd a helyességét, majd próbáld újra!" #: src/view/com/modals/InviteCodes.tsx:171 @@ -3550,23 +3515,31 @@ msgstr "Hívj meg másokat is ebbe a kezdőcsomagba!" #: src/screens/StarterPack/Wizard/StepDetails.tsx:35 msgid "Invite your friends to follow your favorite feeds and people" -msgstr "Könnyen oszd meg a barátaiddal a kedvenc hírfolyamaidat és személyeidet!" +msgstr "" +"Könnyen oszd meg a barátaiddal a kedvenc hírfolyamaidat és személyeidet!" #: src/screens/StarterPack/Wizard/StepDetails.tsx:32 msgid "Invites, but personal" msgstr "Olyan, mint egy meghívó, csak személyesebb" #: src/screens/Signup/StepInfo/index.tsx:80 -msgid "It looks like you may have entered your email address incorrectly. Are you sure it's right?" -msgstr "Úgy tűnik, hogy ez az email-cím érvénytelen. Biztos, hogy helyesen adtad meg?" +msgid "" +"It looks like you may have entered your email address incorrectly. Are you " +"sure it's right?" +msgstr "" +"Úgy tűnik, hogy ez az email-cím érvénytelen. Biztos, hogy helyesen adtad meg?" #: src/screens/Signup/StepInfo/index.tsx:241 msgid "It's correct" msgstr "Igen, helyes" #: src/screens/StarterPack/Wizard/index.tsx:461 -msgid "It's just you right now! Add more people to your starter pack by searching above." -msgstr "Még csak Te szerepelsz a kezdőcsomagban. A fenti keresővel másokat is hozzáadhatsz." +msgid "" +"It's just you right now! Add more people to your starter pack by searching " +"above." +msgstr "" +"Még csak Te szerepelsz a kezdőcsomagban. A fenti keresővel másokat is " +"hozzáadhatsz." #: src/view/com/composer/Composer.tsx:1556 msgid "Job ID: {0}" @@ -3583,13 +3556,11 @@ msgstr "Karrier" msgid "Join Bluesky" msgstr "Csatlakozz a Blueskyhoz!" -#: src/components/StarterPack/QrCode.tsx:61 -#: src/view/shell/NavSignupCard.tsx:40 +#: src/components/StarterPack/QrCode.tsx:61 src/view/shell/NavSignupCard.tsx:40 msgid "Join the conversation" msgstr "Csatlakozz hozzánk!" -#: src/screens/Onboarding/index.tsx:21 -#: src/screens/Onboarding/state.ts:91 +#: src/screens/Onboarding/index.tsx:21 src/screens/Onboarding/state.ts:91 msgid "Journalism" msgstr "Sajtó" @@ -3611,8 +3582,13 @@ msgid "Labels added" msgstr "Alkalmaztad a feljegyzéseket" #: src/screens/Profile/Sections/Labels.tsx:163 -msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." -msgstr "A feljegyzések felhasználókra és tartalmakra elhelyezett különleges címkék. A hálózat ezeket használja a különböző tartalmak kategóriákba sorolására, elrejtésére és a megtekintés előtti figyelmeztetések megjelenítésére." +msgid "" +"Labels are annotations on users and content. They can be used to hide, warn, " +"and categorize the network." +msgstr "" +"A feljegyzések felhasználókra és tartalmakra elhelyezett különleges címkék. " +"A hálózat ezeket használja a különböző tartalmak kategóriákba sorolására, " +"elrejtésére és a megtekintés előtti figyelmeztetések megjelenítésére." #: src/components/moderation/LabelsOnMeDialog.tsx:71 msgid "Labels on your account" @@ -3626,17 +3602,12 @@ msgstr "A tartalmadra helyezett feljegyzések" msgid "Language selection" msgstr "Nyelvválasztás" -#: src/view/screens/Settings/index.tsx:497 -#~ msgid "Language settings" -#~ msgstr "Nyelvi beállítások" - #: src/Navigation.tsx:163 msgid "Language Settings" msgstr "Nyelvi beállítások" #: src/screens/Settings/LanguageSettings.tsx:67 -#: src/screens/Settings/Settings.tsx:191 -#: src/screens/Settings/Settings.tsx:194 +#: src/screens/Settings/Settings.tsx:191 src/screens/Settings/Settings.tsx:194 msgid "Languages" msgstr "Nyelvek" @@ -3644,14 +3615,13 @@ msgstr "Nyelvek" msgid "Larger" msgstr "Nagyobb" -#: src/screens/Hashtag.tsx:98 -#: src/view/screens/Search/Search.tsx:521 +#: src/screens/Hashtag.tsx:98 src/view/screens/Search/Search.tsx:521 msgid "Latest" msgstr "Legújabb" #: src/screens/Settings/components/ChangeHandleDialog.tsx:251 msgid "learn more" -msgstr "" +msgstr "további információ" #: src/components/moderation/ScreenHider.tsx:140 msgid "Learn More" @@ -3694,10 +3664,8 @@ msgstr "Elhagyás" msgid "Leave chat" msgstr "Csevegés elhagyása" -#: src/components/dms/ConvoMenu.tsx:138 -#: src/components/dms/ConvoMenu.tsx:141 -#: src/components/dms/ConvoMenu.tsx:208 -#: src/components/dms/ConvoMenu.tsx:211 +#: src/components/dms/ConvoMenu.tsx:138 src/components/dms/ConvoMenu.tsx:141 +#: src/components/dms/ConvoMenu.tsx:208 src/components/dms/ConvoMenu.tsx:211 #: src/components/dms/LeaveConvoPrompt.tsx:46 msgid "Leave conversation" msgstr "Beszélgetés elhagyása" @@ -3718,8 +3686,7 @@ msgstr "maradt." msgid "Let me choose" msgstr "Fiókok választása kézileg" -#: src/screens/Login/index.tsx:127 -#: src/screens/Login/index.tsx:142 +#: src/screens/Login/index.tsx:127 src/screens/Login/index.tsx:142 msgid "Let's get your password reset!" msgstr "Állítsuk helyre a jelszavad!" @@ -3745,27 +3712,17 @@ msgstr "Kedvelj 10 megjegyzést a Követett hírfolyam idomításához!" msgid "Like this feed" msgstr "Hírfolyam kedvelése" -#: src/components/LikesDialog.tsx:85 -#: src/Navigation.tsx:234 +#: src/components/LikesDialog.tsx:85 src/Navigation.tsx:234 #: src/Navigation.tsx:239 msgid "Liked by" msgstr "Kedvelők" -#: src/screens/Post/PostLikedBy.tsx:32 -#: src/screens/Post/PostLikedBy.tsx:33 +#: src/screens/Post/PostLikedBy.tsx:32 src/screens/Post/PostLikedBy.tsx:33 #: src/screens/Profile/ProfileLabelerLikedBy.tsx:29 #: src/view/screens/ProfileFeedLikedBy.tsx:30 msgid "Liked By" msgstr "Kedvelők" -#: src/view/com/notifications/FeedItem.tsx:211 -#~ msgid "liked your custom feed" -#~ msgstr "kedvelte az egyéni hírfolyamodat" - -#: src/view/com/notifications/FeedItem.tsx:178 -#~ msgid "liked your post" -#~ msgstr "kedvelte a bejegyzésedet" - #: src/view/screens/Profile.tsx:231 msgid "Likes" msgstr "Kedvelések" @@ -3786,8 +3743,7 @@ msgstr "Lista profilképe" msgid "List blocked" msgstr "Letiltottad a listán szereplő személyeket" -#: src/components/ListCard.tsx:150 -#: src/view/com/feeds/FeedSourceCard.tsx:255 +#: src/components/ListCard.tsx:150 src/view/com/feeds/FeedSourceCard.tsx:255 msgid "List by {0}" msgstr "Lisa – Szerző: {0}" @@ -3819,10 +3775,8 @@ msgstr "Feloldottad a listán szereplő személyek letiltását" msgid "List unmuted" msgstr "Feloldottad a lista némítását" -#: src/Navigation.tsx:133 -#: src/view/screens/Profile.tsx:227 -#: src/view/screens/Profile.tsx:234 -#: src/view/shell/desktop/LeftNav.tsx:475 +#: src/Navigation.tsx:133 src/view/screens/Profile.tsx:227 +#: src/view/screens/Profile.tsx:234 src/view/shell/desktop/LeftNav.tsx:475 #: src/view/shell/Drawer.tsx:491 msgid "Lists" msgstr "Listák" @@ -3847,10 +3801,8 @@ msgstr "További javasolt személyek" msgid "Load new notifications" msgstr "Új értesítések betöltése" -#: src/screens/Profile/Sections/Feed.tsx:96 -#: src/view/com/feeds/FeedPage.tsx:132 -#: src/view/screens/ProfileFeed.tsx:499 -#: src/view/screens/ProfileList.tsx:808 +#: src/screens/Profile/Sections/Feed.tsx:96 src/view/com/feeds/FeedPage.tsx:132 +#: src/view/screens/ProfileFeed.tsx:499 src/view/screens/ProfileList.tsx:808 msgid "Load new posts" msgstr "Új bejegyzések betöltése" @@ -3862,15 +3814,12 @@ msgstr "Betöltés…" msgid "Log" msgstr "Napló" -#: src/screens/Deactivated.tsx:209 -#: src/screens/Deactivated.tsx:215 +#: src/screens/Deactivated.tsx:209 src/screens/Deactivated.tsx:215 msgid "Log in or sign up" msgstr "Jelentkezz be vagy regisztrálj!" -#: src/screens/SignupQueued.tsx:155 -#: src/screens/SignupQueued.tsx:158 -#: src/screens/SignupQueued.tsx:184 -#: src/screens/SignupQueued.tsx:187 +#: src/screens/SignupQueued.tsx:155 src/screens/SignupQueued.tsx:158 +#: src/screens/SignupQueued.tsx:184 src/screens/SignupQueued.tsx:187 msgid "Log out" msgstr "Kijelentkezés" @@ -3899,16 +3848,27 @@ msgid "Looks like XXXXX-XXXXX" msgstr "Minta: XXXXX-XXXXX" #: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:39 -msgid "Looks like you haven't saved any feeds! Use our recommendations or browse more below." -msgstr "Úgy tűnik, hogy még egy hírfolyamot sem mentettél el. Nézd meg az ajánlott hírfolyamokat vagy böngéssz lejjebb a többi közül!" +msgid "" +"Looks like you haven't saved any feeds! Use our recommendations or browse " +"more below." +msgstr "" +"Úgy tűnik, hogy még egy hírfolyamot sem mentettél el. Nézd meg az ajánlott " +"hírfolyamokat vagy böngéssz lejjebb a többi közül!" #: src/screens/Home/NoFeedsPinned.tsx:83 -msgid "Looks like you unpinned all your feeds. But don't worry, you can add some below 😄" -msgstr "Úgy tűnik, hogy egy hírfolyamot sem tűztél ki. De ne aggódj – alább kitűzhetsz néhányat 😄" +msgid "" +"Looks like you unpinned all your feeds. But don't worry, you can add some " +"below 😄" +msgstr "" +"Úgy tűnik, hogy egy hírfolyamot sem tűztél ki. De ne aggódj – alább " +"kitűzhetsz néhányat 😄" #: src/screens/Feeds/NoFollowingFeed.tsx:37 -msgid "Looks like you're missing a following feed. <0>Click here to add one." -msgstr "Úgy tűnik, hogy hiányzik a Követett hírfolyamod. <0>Kattints ide, ha ki szeretnéd tűzni!" +msgid "" +"Looks like you're missing a following feed. <0>Click here to add one." +msgstr "" +"Úgy tűnik, hogy hiányzik a Követett hírfolyamod. <0>Kattints ide, ha ki " +"szeretnéd tűzni!" #: src/components/StarterPack/ProfileStarterPacks.tsx:266 msgid "Make one for me" @@ -3921,14 +3881,13 @@ msgstr "Ellenőrizd, hogy biztosan ide akarsz-e menni!" #: src/screens/Settings/ContentAndMediaSettings.tsx:41 #: src/screens/Settings/ContentAndMediaSettings.tsx:44 msgid "Manage saved feeds" -msgstr "" +msgstr "Elmentett hírfolyamok kezelése" #: src/components/dialogs/MutedWords.tsx:108 msgid "Manage your muted words and tags" msgstr "Elnémított szavak és címkék kezelése" -#: src/components/dms/ConvoMenu.tsx:151 -#: src/components/dms/ConvoMenu.tsx:158 +#: src/components/dms/ConvoMenu.tsx:151 src/components/dms/ConvoMenu.tsx:158 msgid "Mark as read" msgstr "Megjelölés olvasottként" @@ -3938,7 +3897,9 @@ msgstr "Média" #: src/view/com/composer/labels/LabelsBtn.tsx:212 msgid "Media that may be disturbing or inappropriate for some audiences." -msgstr "A nyugalom megzavarására alkalmas vagy felnőtt témákat ábrázoló médiatartalom." +msgstr "" +"A nyugalom megzavarására alkalmas vagy felnőtt témákat ábrázoló " +"médiatartalom." #: src/components/WhoCanReply.tsx:254 msgid "mentioned users" @@ -3948,8 +3909,7 @@ msgstr "megemlített felhasználó" msgid "Mentioned users" msgstr "A megemlített felhasználóktól" -#: src/components/Menu/index.tsx:95 -#: src/view/com/util/ViewHeader.tsx:87 +#: src/components/Menu/index.tsx:95 src/view/com/util/ViewHeader.tsx:87 #: src/view/screens/Search/Search.tsx:882 msgid "Menu" msgstr "Menü" @@ -3980,10 +3940,8 @@ msgstr "Az üzenet túl hosszú" msgid "Message settings" msgstr "Üzenetbeállítások" -#: src/Navigation.tsx:600 -#: src/screens/Messages/ChatList.tsx:162 -#: src/screens/Messages/ChatList.tsx:243 -#: src/screens/Messages/ChatList.tsx:314 +#: src/Navigation.tsx:600 src/screens/Messages/ChatList.tsx:162 +#: src/screens/Messages/ChatList.tsx:243 src/screens/Messages/ChatList.tsx:314 msgid "Messages" msgstr "Üzenetek" @@ -3995,10 +3953,8 @@ msgstr "Félrevezető fiók" msgid "Misleading Post" msgstr "Félrevezető bejegyzés" -#: src/Navigation.tsx:138 -#: src/screens/Moderation/index.tsx:101 -#: src/screens/Settings/Settings.tsx:159 -#: src/screens/Settings/Settings.tsx:162 +#: src/Navigation.tsx:138 src/screens/Moderation/index.tsx:101 +#: src/screens/Settings/Settings.tsx:159 src/screens/Settings/Settings.tsx:162 msgid "Moderation" msgstr "Moderálás" @@ -4032,8 +3988,7 @@ msgstr "Frissítetted a moderálólistát" msgid "Moderation lists" msgstr "Moderálólisták" -#: src/Navigation.tsx:143 -#: src/view/screens/ModerationModlists.tsx:72 +#: src/Navigation.tsx:143 src/view/screens/ModerationModlists.tsx:72 msgid "Moderation Lists" msgstr "Moderálólisták" @@ -4041,10 +3996,6 @@ msgstr "Moderálólisták" msgid "moderation settings" msgstr "moderálási beállítások" -#: src/view/screens/Settings/index.tsx:522 -#~ msgid "Moderation settings" -#~ msgstr "Moderálási beállítások" - #: src/Navigation.tsx:249 msgid "Moderation states" msgstr "Moderálási állapotok" @@ -4056,7 +4007,9 @@ msgstr "Moderálási eszközök" #: src/components/moderation/ModerationDetailsDialog.tsx:51 #: src/lib/moderation/useModerationCauseDescription.ts:45 msgid "Moderator has chosen to set a general warning on the content." -msgstr "Ezen a tartalmon általános figyelmeztetés van érvényben, egy moderátor döntése alapján." +msgstr "" +"Ezen a tartalmon általános figyelmeztetés van érvényben, egy moderátor " +"döntése alapján." #: src/view/com/post-thread/PostThreadItem.tsx:628 msgid "More" @@ -4073,7 +4026,7 @@ msgstr "További lehetőségek" #: src/screens/Settings/ThreadPreferences.tsx:81 msgid "Most-liked first" -msgstr "" +msgstr "A legtöbb kedveléssel rendelkező válaszok elöl" #: src/screens/Settings/ThreadPreferences.tsx:78 msgid "Most-liked replies first" @@ -4114,8 +4067,7 @@ msgstr "Fiókok elnémítása" msgid "Mute all {displayTag} posts" msgstr "Az összes {displayTag} címkével rendelkező bejegyzés elnémítása" -#: src/components/dms/ConvoMenu.tsx:172 -#: src/components/dms/ConvoMenu.tsx:178 +#: src/components/dms/ConvoMenu.tsx:172 src/components/dms/ConvoMenu.tsx:178 msgid "Mute conversation" msgstr "Beszélgetés elnémítása" @@ -4155,13 +4107,13 @@ msgstr "Szó elnémítása csak címkékben" msgid "Mute this word until you unmute it" msgstr "Szó elnémítása a némítás feloldásáig" -#: src/view/com/util/forms/PostDropdownBtn.tsx:507 -#: src/view/com/util/forms/PostDropdownBtn.tsx:513 +#: src/view/com/util/forms/PostDropdownBtn.tsx:546 +#: src/view/com/util/forms/PostDropdownBtn.tsx:550 msgid "Mute thread" msgstr "Válaszlánc elnémítása" -#: src/view/com/util/forms/PostDropdownBtn.tsx:523 -#: src/view/com/util/forms/PostDropdownBtn.tsx:525 +#: src/view/com/util/forms/PostDropdownBtn.tsx:560 +#: src/view/com/util/forms/PostDropdownBtn.tsx:562 msgid "Mute words & tags" msgstr "Szavak és címkék elnémítása" @@ -4169,14 +4121,17 @@ msgstr "Szavak és címkék elnémítása" msgid "Muted accounts" msgstr "Elnémított fiókok" -#: src/Navigation.tsx:148 -#: src/view/screens/ModerationMutedAccounts.tsx:108 +#: src/Navigation.tsx:148 src/view/screens/ModerationMutedAccounts.tsx:108 msgid "Muted Accounts" msgstr "Elnémított fiókok" #: src/view/screens/ModerationMutedAccounts.tsx:116 -msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." -msgstr "Egy elnémított fiók nem fog megjelenni a hírfolyamaidban és nem kapsz tőle értesítéseket. A némított fiókok listája nem nyilvános." +msgid "" +"Muted accounts have their posts removed from your feed and from your " +"notifications. Mutes are completely private." +msgstr "" +"Egy elnémított fiók nem fog megjelenni a hírfolyamaidban és nem kapsz tőle " +"értesítéseket. A némított fiókok listája nem nyilvános." #: src/lib/moderation/useModerationCauseDescription.ts:90 msgid "Muted by \"{0}\"" @@ -4187,8 +4142,13 @@ msgid "Muted words & tags" msgstr "Elnémított szavak és címkék" #: src/view/screens/ProfileList.tsx:734 -msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." -msgstr "Egy fiók elnémítása nem nyilvános. Egy elnémított felhasználó képes a fiókoddal kapcsolatba lépni, de ezekről a történésekről nem fogsz értesítéseket kapni és az összes bejegyzésük el lesz rejtve a számodra." +msgid "" +"Muting is private. Muted accounts can interact with you, but you will not " +"see their posts or receive notifications from them." +msgstr "" +"Egy fiók elnémítása nem nyilvános. Egy elnémított felhasználó képes a " +"fiókoddal kapcsolatba lépni, de ezekről a történésekről nem fogsz " +"értesítéseket kapni és az összes bejegyzésük el lesz rejtve a számodra." #: src/components/dialogs/BirthDateSettings.tsx:34 #: src/components/dialogs/BirthDateSettings.tsx:37 @@ -4203,14 +4163,6 @@ msgstr "Hírfolyamgyűjtemény" msgid "My Profile" msgstr "Saját profil" -#: src/view/screens/Settings/index.tsx:583 -#~ msgid "My saved feeds" -#~ msgstr "Elmentett hírfolyamok" - -#: src/view/screens/Settings/index.tsx:589 -#~ msgid "My Saved Feeds" -#~ msgstr "Elmentett hírfolyamok" - #: src/view/com/modals/CreateOrEditList.tsx:270 msgid "Name" msgstr "Név" @@ -4226,8 +4178,7 @@ msgstr "A név megadása kötelező" msgid "Name or Description Violates Community Standards" msgstr "A címe vagy a leírása megszegi a közösségi irányelveket" -#: src/screens/Onboarding/index.tsx:22 -#: src/screens/Onboarding/state.ts:94 +#: src/screens/Onboarding/index.tsx:22 src/screens/Onboarding/state.ts:94 msgid "Nature" msgstr "Természet" @@ -4235,9 +4186,6 @@ msgstr "Természet" msgid "Navigate to {0}" msgstr "Ugrás: {0}" -#~ msgid "Navigate to starter pack" -#~ msgstr "Ugrás a kezdőcsomaghoz" - #: src/screens/Login/ForgotPasswordForm.tsx:166 #: src/screens/Login/LoginForm.tsx:316 #: src/view/com/modals/ChangePassword.tsx:169 @@ -4274,20 +4222,15 @@ msgid "New" msgstr "Létrehozás" #: src/components/dms/dialogs/NewChatDialog.tsx:65 -#: src/screens/Messages/ChatList.tsx:328 -#: src/screens/Messages/ChatList.tsx:335 +#: src/screens/Messages/ChatList.tsx:328 src/screens/Messages/ChatList.tsx:335 msgid "New chat" msgstr "Új csevegés" -#: src/components/dialogs/nuxs/NeueTypography.tsx:51 -#~ msgid "New font settings ✨" -#~ msgstr "Új betűtípus-beállítások váltak elérhetővé ✨" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:201 #: src/screens/Settings/components/ChangeHandleDialog.tsx:209 #: src/screens/Settings/components/ChangeHandleDialog.tsx:356 msgid "New handle" -msgstr "" +msgstr "Új felhasználónév" #: src/components/dms/NewMessagesPill.tsx:92 msgid "New messages" @@ -4310,12 +4253,9 @@ msgctxt "action" msgid "New post" msgstr "Új bejegyzés" -#: src/view/screens/Feeds.tsx:582 -#: src/view/screens/Notifications.tsx:224 -#: src/view/screens/Profile.tsx:496 -#: src/view/screens/ProfileFeed.tsx:433 -#: src/view/screens/ProfileList.tsx:248 -#: src/view/screens/ProfileList.tsx:287 +#: src/view/screens/Feeds.tsx:582 src/view/screens/Notifications.tsx:224 +#: src/view/screens/Profile.tsx:496 src/view/screens/ProfileFeed.tsx:433 +#: src/view/screens/ProfileList.tsx:248 src/view/screens/ProfileList.tsx:287 msgid "New post" msgstr "Új bejegyzés" @@ -4337,15 +4277,13 @@ msgstr "Felhasználólista létrehozása" msgid "Newest replies first" msgstr "A legújabb válaszok elöl" -#: src/screens/Onboarding/index.tsx:20 -#: src/screens/Onboarding/state.ts:95 +#: src/screens/Onboarding/index.tsx:20 src/screens/Onboarding/state.ts:95 msgid "News" msgstr "Hírek" #: src/screens/Login/ForgotPasswordForm.tsx:137 #: src/screens/Login/ForgotPasswordForm.tsx:143 -#: src/screens/Login/LoginForm.tsx:315 -#: src/screens/Login/LoginForm.tsx:322 +#: src/screens/Login/LoginForm.tsx:315 src/screens/Login/LoginForm.tsx:322 #: src/screens/Login/SetNewPasswordForm.tsx:168 #: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 @@ -4364,21 +4302,11 @@ msgstr "Tovább" msgid "Next image" msgstr "Következő kép" -#: src/view/screens/PreferencesFollowingFeed.tsx:71 -#: src/view/screens/PreferencesFollowingFeed.tsx:97 -#: src/view/screens/PreferencesFollowingFeed.tsx:132 -#: src/view/screens/PreferencesFollowingFeed.tsx:169 -#: src/view/screens/PreferencesThreads.tsx:101 -#: src/view/screens/PreferencesThreads.tsx:124 -#~ msgid "No" -#~ msgstr "Nem" - #: src/screens/Settings/AppPasswords.tsx:100 msgid "No app passwords yet" -msgstr "" +msgstr "Még nem hoztál létre alkalmazásjelszót" -#: src/view/screens/ProfileFeed.tsx:565 -#: src/view/screens/ProfileList.tsx:882 +#: src/view/screens/ProfileFeed.tsx:565 src/view/screens/ProfileList.tsx:882 msgid "No description" msgstr "Nincs leírás" @@ -4389,7 +4317,8 @@ msgstr "DNS-panel nélkül" #: src/components/dialogs/GifSelect.tsx:231 msgid "No featured GIFs found. There may be an issue with Tenor." -msgstr "A kiemelt GIF-ek lekérése meghiúsult. Lehetséges, hogy ez a Tenor hibája." +msgstr "" +"A kiemelt GIF-ek lekérése meghiúsult. Lehetséges, hogy ez a Tenor hibája." #: src/screens/StarterPack/Wizard/StepFeeds.tsx:118 msgid "No feeds found. Try searching for something else." @@ -4421,8 +4350,7 @@ msgstr "Nincs több megjeleníthető beszélgetés" msgid "No notifications yet!" msgstr "Még nincsenek értesítéseid!" -#: src/screens/Messages/Settings.tsx:95 -#: src/screens/Messages/Settings.tsx:98 +#: src/screens/Messages/Settings.tsx:95 src/screens/Messages/Settings.tsx:98 msgid "No one" msgstr "Senkitől" @@ -4470,10 +4398,6 @@ msgstr "A(z) „{query}” kifejezésre nincs találat" msgid "No search results found for \"{search}\"." msgstr "A(z) „{search}” kifejezésre nincs találat." -#: src/view/com/composer/labels/LabelsBtn.tsx:129 -#~ msgid "No self-labels can be applied to this post because it contains no media." -#~ msgstr "Erre a bejegyzésre nem alkalmazhatsz feljegyzéseket, mert nem csatoltál hozzá médiatartalmat." - #: src/components/dialogs/EmbedConsent.tsx:104 #: src/components/dialogs/EmbedConsent.tsx:111 msgid "No thanks" @@ -4483,8 +4407,7 @@ msgstr "Köszönöm, nem" msgid "Nobody" msgstr "Senkitől" -#: src/components/LikedByList.tsx:80 -#: src/components/LikesDialog.tsx:97 +#: src/components/LikedByList.tsx:80 src/components/LikesDialog.tsx:97 #: src/view/com/post-thread/PostLikedBy.tsx:87 msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Ezt a tartalmat még senki sem kedvelte. Talán Te lehetnél az első!" @@ -4505,8 +4428,7 @@ msgstr "Nincs találat. Próbálj rákeresni valaki másra!" msgid "Non-sexual Nudity" msgstr "Nem szexuális meztelenség" -#: src/Navigation.tsx:128 -#: src/view/screens/Profile.tsx:128 +#: src/Navigation.tsx:128 src/view/screens/Profile.tsx:128 msgid "Not Found" msgstr "Ez a tartalom nem található" @@ -4516,14 +4438,23 @@ msgid "Not right now" msgstr "Talán máskor" #: src/view/com/profile/ProfileMenu.tsx:348 -#: src/view/com/util/forms/PostDropdownBtn.tsx:698 +#: src/view/com/util/forms/PostDropdownBtn.tsx:731 #: src/view/com/util/post-ctrls/PostCtrls.tsx:350 msgid "Note about sharing" -msgstr "Megjegyzés a megosztásról" +msgstr "Korlátozott láthatóság" #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:81 -msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." -msgstr "Megjegyzés: A Bluesky egy nyílt és nyilvános hálózat. Ez a beállítás csak a Bluesky alkalmazásban és -honlapon korlátozza a tartalmaid láthatóságát és nem biztos, hogy más alkalmazások is tiszteletben tartják. Lehetséges, hogy más alkalmazásokban és honlapokon ugyanúgy láthatóak maradnak a tartalmaid kijelentkezett felhasználók számára is." +msgid "" +"Note: Bluesky is an open and public network. This setting only limits the " +"visibility of your content on the Bluesky app and website, and other apps " +"may not respect this setting. Your content may still be shown to logged-out " +"users by other apps and websites." +msgstr "" +"Megjegyzés: A Bluesky egy nyílt és nyilvános hálózat. Ez a beállítás csak a " +"Bluesky alkalmazásban és -honlapon korlátozza a tartalmaid láthatóságát és " +"nem biztos, hogy más alkalmazások is tiszteletben tartják. Lehetséges, hogy " +"más alkalmazásokban és honlapokon ugyanúgy láthatóak maradnak a tartalmaid " +"kijelentkezett felhasználók számára is." #: src/screens/Messages/ChatList.tsx:213 msgid "Nothing here" @@ -4533,8 +4464,7 @@ msgstr "Nincs itt semmi" msgid "Notification filters" msgstr "Értesítések szűrése" -#: src/Navigation.tsx:383 -#: src/view/screens/Notifications.tsx:117 +#: src/Navigation.tsx:383 src/view/screens/Notifications.tsx:117 msgid "Notification settings" msgstr "Értesítési beállítások" @@ -4550,13 +4480,11 @@ msgstr "Értesítési hangok" msgid "Notification Sounds" msgstr "Értesítési hangok" -#: src/Navigation.tsx:595 -#: src/view/screens/Notifications.tsx:143 +#: src/Navigation.tsx:595 src/view/screens/Notifications.tsx:143 #: src/view/screens/Notifications.tsx:153 #: src/view/screens/Notifications.tsx:199 #: src/view/shell/bottom-bar/BottomBar.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:438 -#: src/view/shell/Drawer.tsx:444 +#: src/view/shell/desktop/LeftNav.tsx:438 src/view/shell/Drawer.tsx:444 msgid "Notifications" msgstr "Értesítések" @@ -4614,7 +4542,7 @@ msgstr "Regisztrációs varázsló alaphelyzetbe állítása" #: src/view/com/composer/Composer.tsx:323 msgid "One or more GIFs is missing alt text." -msgstr "" +msgstr "Legalább egy GIF-ről hiányzik a helyettesítő szöveg." #: src/view/com/composer/Composer.tsx:320 msgid "One or more images is missing alt text." @@ -4622,7 +4550,7 @@ msgstr "Legalább egy képről hiányzik a helyettesítő szöveg." #: src/view/com/composer/Composer.tsx:330 msgid "One or more videos is missing alt text." -msgstr "" +msgstr "Legalább egy videóról hiányzik a helyettesítő szöveg." #: src/screens/Onboarding/StepProfile/index.tsx:115 msgid "Only .jpg and .png files are supported" @@ -4672,7 +4600,7 @@ msgstr "Profilképkészítő megnyitása" #: src/screens/Settings/AccountSettings.tsx:120 msgid "Open change handle dialog" -msgstr "" +msgstr "Felhasználónév-megváltoztatási párbeszédablak megnyitása" #: src/screens/Messages/components/ChatListItem.tsx:272 #: src/screens/Messages/components/ChatListItem.tsx:273 @@ -4691,23 +4619,19 @@ msgstr "Hírfolyambeállítások megnyitása" #: src/screens/Settings/Settings.tsx:200 msgid "Open helpdesk in browser" -msgstr "" +msgstr "Támogatási hivatkozás megnyitása böngészőben" #: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:71 msgid "Open link to {niceUrl}" msgstr "A(z) {niceUrl} hivatkozás megnyitása" -#: src/view/screens/Settings/index.tsx:703 -#~ msgid "Open links with in-app browser" -#~ msgstr "Hivatkozások megnyitása az alkalmazáson belüli böngészőben" - #: src/components/dms/ActionsWrapper.tsx:88 msgid "Open message options" msgstr "Üzenetlehetőségek megnyitása" #: src/screens/Settings/Settings.tsx:321 msgid "Open moderation debug page" -msgstr "" +msgstr "Moderálási hibakeresési oldal megnyitása" #: src/screens/Moderation/index.tsx:225 msgid "Open muted words and tags settings" @@ -4717,7 +4641,7 @@ msgstr "Elnémított szavak és címkék beállításainak megnyitása" msgid "Open navigation" msgstr "Navigációs ablak megnyitása" -#: src/view/com/util/forms/PostDropdownBtn.tsx:365 +#: src/view/com/util/forms/PostDropdownBtn.tsx:112 msgid "Open post options menu" msgstr "Bejegyzéslehetőségek megnyitása" @@ -4725,8 +4649,7 @@ msgstr "Bejegyzéslehetőségek megnyitása" msgid "Open starter pack menu" msgstr "Kezdőcsomag-menü megnyitása" -#: src/screens/Settings/Settings.tsx:314 -#: src/screens/Settings/Settings.tsx:328 +#: src/screens/Settings/Settings.tsx:314 src/screens/Settings/Settings.tsx:328 msgid "Open storybook page" msgstr "Mesekönyv-oldal megnyitása" @@ -4740,48 +4663,31 @@ msgstr "{numItems} lehetőség megnyitása" #: src/view/com/composer/labels/LabelsBtn.tsx:63 msgid "Opens a dialog to add a content warning to your post" -msgstr "A tartalomfigyelmeztetések alkalmazására alkalmas párbeszédablak megnyitása" +msgstr "" +"A tartalomfigyelmeztetések alkalmazására alkalmas párbeszédablak megnyitása" #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:62 msgid "Opens a dialog to choose who can reply to this thread" -msgstr "Párbeszédablak megnyitása, ahol megadhatod, hogy ki vehet részt a válaszláncban" - -#: src/view/screens/Settings/index.tsx:456 -#~ msgid "Opens accessibility settings" -#~ msgstr "Kisegítő lehetőségek megnyitása" +msgstr "" +"Párbeszédablak megnyitása, ahol megadhatod, hogy ki vehet részt a " +"válaszláncban" #: src/view/screens/Log.tsx:59 msgid "Opens additional details for a debug entry" msgstr "Hibakeresési bejegyzés részleteinek megnyitása" -#: src/view/screens/Settings/index.tsx:477 -#~ msgid "Opens appearance settings" -#~ msgstr "Megjelenítési beállítások megnyitása" - #: src/view/com/composer/photos/OpenCameraBtn.tsx:73 msgid "Opens camera on device" msgstr "Az eszköz kamerájának megnyitása" -#: src/view/screens/Settings/index.tsx:606 -#~ msgid "Opens chat settings" -#~ msgstr "Csevegési beállítások megnyitása" - #: src/view/com/post-thread/PostThreadComposePrompt.tsx:36 msgid "Opens composer" msgstr "Bejegyzésíró megnyitása" -#: src/view/screens/Settings/index.tsx:498 -#~ msgid "Opens configurable language settings" -#~ msgstr "Nyelvi beállítások megnyitása" - #: src/view/com/composer/photos/SelectPhotoBtn.tsx:51 msgid "Opens device photo gallery" msgstr "Az eszköz fényképgalériájának megnyitása" -#: src/view/screens/Settings/index.tsx:638 -#~ msgid "Opens external embeds settings" -#~ msgstr "Külső forrásból beágyazott tartalmak beállításainak megnyitása" - #: src/view/com/auth/SplashScreen.tsx:50 #: src/view/com/auth/SplashScreen.web.tsx:111 msgid "Opens flow to create a new Bluesky account" @@ -4800,71 +4706,14 @@ msgstr "GIF-választó párbeszédablak megnyitása" msgid "Opens list of invite codes" msgstr "A meghívókódok listájának megnyitása" -#: src/view/screens/Settings/index.tsx:775 -#~ msgid "Opens modal for account deactivation confirmation" -#~ msgstr "A fiók deaktiválását megerősítő modális ablak megnyitása" - -#: src/view/screens/Settings/index.tsx:797 -#~ msgid "Opens modal for account deletion confirmation. Requires email code" -#~ msgstr "A fiók törlését megerősítő modális ablak megnyitása. A folytatáshoz emailben kapott kód szükséges" - -#: src/view/screens/Settings/index.tsx:732 -#~ msgid "Opens modal for changing your Bluesky password" -#~ msgstr "A fiók jelszavának megváltoztatását lehetővé tevő modális ablak megnyitása" - -#: src/view/screens/Settings/index.tsx:687 -#~ msgid "Opens modal for choosing a new Bluesky handle" -#~ msgstr "A fiók felhasználónevének megváltoztatását lehetővé tevő modális ablak megnyitása" - -#: src/view/screens/Settings/index.tsx:755 -#~ msgid "Opens modal for downloading your Bluesky account data (repository)" -#~ msgstr "A fiók adatainak (adattárának) letöltését lehetővé tevő modális ablak megnyitása" - -#: src/view/screens/Settings/index.tsx:963 -#~ msgid "Opens modal for email verification" -#~ msgstr "Az emailes visszaigazolást lehetővé tevő modális ablak megnyitása" - -#: src/view/com/modals/ChangeHandle.tsx:269 -#~ msgid "Opens modal for using custom domain" -#~ msgstr "Az egyéni tartomány megadását lehetővé tevő modális ablak megnyitása" - -#: src/view/screens/Settings/index.tsx:523 -#~ msgid "Opens moderation settings" -#~ msgstr "Moderálási beállítások megnyitása" - #: src/screens/Login/LoginForm.tsx:231 msgid "Opens password reset form" msgstr "Jelszóvisszaállítási űrlap megnyitása" -#: src/view/screens/Settings/index.tsx:584 -#~ msgid "Opens screen with all saved feeds" -#~ msgstr "Elmentett hírfolyamok megjelenítése" - -#: src/view/screens/Settings/index.tsx:665 -#~ msgid "Opens the app password settings" -#~ msgstr "Alkalmazásjelszó-beállítások megnyitása" - -#: src/view/screens/Settings/index.tsx:541 -#~ msgid "Opens the Following feed preferences" -#~ msgstr "Követett hírfolyam beállításainak megnyitása" - #: src/view/com/modals/LinkWarning.tsx:93 msgid "Opens the linked website" msgstr "Hivatkozás megnyitása" -#: src/view/screens/Settings/index.tsx:828 -#: src/view/screens/Settings/index.tsx:838 -#~ msgid "Opens the storybook page" -#~ msgstr "Mesekönyv-oldal megnyitása" - -#: src/view/screens/Settings/index.tsx:816 -#~ msgid "Opens the system log page" -#~ msgstr "Rendszernaplós oldal megnyitása" - -#: src/view/screens/Settings/index.tsx:562 -#~ msgid "Opens the threads preferences" -#~ msgstr "Válaszlánc-beállítások megnyitása" - #: src/view/com/notifications/FeedItem.tsx:678 #: src/view/com/util/UserAvatar.tsx:436 msgid "Opens this profile" @@ -4908,20 +4757,20 @@ msgstr "Egyéb" msgid "Other account" msgstr "Másik fiók" -#: src/view/screens/Settings/index.tsx:380 -#~ msgid "Other accounts" -#~ msgstr "További fiókok" - #: src/view/com/composer/select-language/SelectLangBtn.tsx:93 msgid "Other..." msgstr "Egyebek…" #: src/screens/Messages/components/ChatDisabled.tsx:28 -msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." -msgstr "A fiókod ellen jelentések érkeztek, és miután a moderátoraink felülvizsgálták őket, úgy döntöttek, hogy megfosztanak a csevegési jogosultságoktól a Blueskyon." +msgid "" +"Our moderators have reviewed reports and decided to disable your access to " +"chats on Bluesky." +msgstr "" +"A fiókod ellen jelentések érkeztek, és miután a moderátoraink " +"felülvizsgálták őket, úgy döntöttek, hogy megfosztanak a csevegési " +"jogosultságoktól a Blueskyon." -#: src/components/Lists.tsx:216 -#: src/view/screens/NotFound.tsx:47 +#: src/components/Lists.tsx:216 src/view/screens/NotFound.tsx:47 msgid "Page not found" msgstr "Az oldal nem található" @@ -4978,15 +4827,17 @@ msgid "Permission to access camera roll is required." msgstr "Galériahozzáférés szükséges." #: src/view/com/lightbox/Lightbox.tsx:35 -msgid "Permission to access camera roll was denied. Please enable it in your system settings." -msgstr "A galéria hozzáférését megtagadták. Engedélyezd a rendszerbeállításokban!" +msgid "" +"Permission to access camera roll was denied. Please enable it in your system " +"settings." +msgstr "" +"A galéria hozzáférését megtagadták. Engedélyezd a rendszerbeállításokban!" #: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Person toggle" msgstr "Személy ki/be" -#: src/screens/Onboarding/index.tsx:28 -#: src/screens/Onboarding/state.ts:96 +#: src/screens/Onboarding/index.tsx:28 src/screens/Onboarding/state.ts:96 msgid "Pets" msgstr "Háziállatok" @@ -4998,8 +4849,7 @@ msgstr "Fényképészet" msgid "Pictures meant for adults." msgstr "Felnőtteknek szánt képek." -#: src/view/screens/ProfileFeed.tsx:293 -#: src/view/screens/ProfileList.tsx:676 +#: src/view/screens/ProfileFeed.tsx:293 src/view/screens/ProfileList.tsx:676 msgid "Pin to home" msgstr "Kitűzés a kezdőlapra" @@ -5007,8 +4857,8 @@ msgstr "Kitűzés a kezdőlapra" msgid "Pin to Home" msgstr "Kitűzés a kezdőlapra" -#: src/view/com/util/forms/PostDropdownBtn.tsx:398 -#: src/view/com/util/forms/PostDropdownBtn.tsx:405 +#: src/view/com/util/forms/PostDropdownBtn.tsx:437 +#: src/view/com/util/forms/PostDropdownBtn.tsx:444 msgid "Pin to your profile" msgstr "Kitűzés a profilodra" @@ -5056,8 +4906,7 @@ msgstr "GIF lejátszása" msgid "Please choose your handle." msgstr "Válassz ki egy felhasználónevet!" -#: src/screens/Signup/state.ts:210 -#: src/screens/Signup/StepInfo/index.tsx:114 +#: src/screens/Signup/state.ts:210 src/screens/Signup/StepInfo/index.tsx:114 msgid "Please choose your password." msgstr "Válassz ki egy jelszót!" @@ -5066,27 +4915,28 @@ msgid "Please complete the verification captcha." msgstr "Végezd el a captchás ellenőrzést!" #: src/view/com/modals/ChangeEmail.tsx:65 -msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed." -msgstr "Az email-címed megváltoztatása előtt ellenőriznünk kell a jelenlegit. Ez egy átmeneti megoldás, amíg ki nem fejlesztjük a rendes email-cím-frissítő eszközöket." - -#: src/view/com/modals/AddAppPasswords.tsx:94 -#~ msgid "Please enter a name for your app password. All spaces is not allowed." -#~ msgstr "Add meg az alkalmazásjelszó nevét! A név nem tartalmazhat csak szóközöket." +msgid "" +"Please confirm your email before changing it. This is a temporary " +"requirement while email-updating tools are added, and it will soon be " +"removed." +msgstr "" +"Az email-címed megváltoztatása előtt ellenőriznünk kell a jelenlegit. Ez egy " +"átmeneti megoldás, amíg ki nem fejlesztjük a rendes email-cím-frissítő " +"eszközöket." #: src/screens/Settings/components/AddAppPasswordDialog.tsx:114 -msgid "Please enter a unique name for this app password or use our randomly generated one." +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 "Nevezd el egyedien az alkalmazásjelszót vagy használd a véletlenszerűen létrehozottat!" +"Nevezd el egyedien az alkalmazásjelszót vagy használd a véletlenszerűen " +"létrehozottat." #: src/components/dialogs/MutedWords.tsx:86 msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Adj meg egy érvényes elnémítandó szót, címkét vagy kifejezést!" -#: src/screens/Signup/state.ts:196 -#: src/screens/Signup/StepInfo/index.tsx:102 +#: src/screens/Signup/state.ts:196 src/screens/Signup/StepInfo/index.tsx:102 msgid "Please enter your email." msgstr "Add meg az email-címed!" @@ -5100,11 +4950,15 @@ msgstr "Add meg a jelszavad is:" #: src/components/moderation/LabelsOnMeDialog.tsx:265 msgid "Please explain why you think this label was incorrectly applied by {0}" -msgstr "Magyarázd el, hogy miért gondolod úgy, hogy a(z) {0} helytelenül alkalmazta ezt a feljegyzést" +msgstr "" +"Magyarázd el, hogy miért gondolod úgy, hogy a(z) {0} helytelenül alkalmazta " +"ezt a feljegyzést" #: src/screens/Messages/components/ChatDisabled.tsx:110 msgid "Please explain why you think your chats were incorrectly disabled" -msgstr "Magyarázd el, hogy miért gondolod úgy, hogy jogtalanul fosztottak meg a csevegési jogosultságodtól" +msgstr "" +"Magyarázd el, hogy miért gondolod úgy, hogy jogtalanul fosztottak meg a " +"csevegési jogosultságodtól" #: src/lib/hooks/useAccountSwitcher.ts:45 #: src/lib/hooks/useAccountSwitcher.ts:55 @@ -5115,8 +4969,7 @@ msgstr "Jelentkezz be, mint @{0}!" msgid "Please Verify Your Email" msgstr "Igazold vissza az email-címed!" -#: src/screens/Onboarding/index.tsx:34 -#: src/screens/Onboarding/state.ts:98 +#: src/screens/Onboarding/index.tsx:34 src/screens/Onboarding/state.ts:98 msgid "Politics" msgstr "Politika" @@ -5137,26 +4990,27 @@ msgstr "Bejegyzés" #: src/view/com/composer/Composer.tsx:917 msgctxt "action" msgid "Post All" -msgstr "" +msgstr "Összes közzététele" #: src/view/com/post-thread/PostThreadItem.tsx:204 msgid "Post by {0}" msgstr "{0} bejegyzése" -#: src/Navigation.tsx:202 -#: src/Navigation.tsx:209 -#: src/Navigation.tsx:216 +#: src/Navigation.tsx:202 src/Navigation.tsx:209 src/Navigation.tsx:216 #: src/Navigation.tsx:223 msgid "Post by @{0}" msgstr "@{0} bejegyzése" -#: src/view/com/util/forms/PostDropdownBtn.tsx:180 +#: src/view/com/util/forms/PostDropdownBtn.tsx:245 msgid "Post deleted" msgstr "Törölted a bejegyzést" #: src/lib/api/index.ts:185 -msgid "Post failed to upload. Please check your Internet connection and try again." -msgstr "A bejegyzés közzététele meghiúsult. Ellenőrizd az internetkapcsolatot, majd próbáld újra!" +msgid "" +"Post failed to upload. Please check your Internet connection and try again." +msgstr "" +"A bejegyzés közzététele meghiúsult. Ellenőrizd az internetkapcsolatot, majd " +"próbáld újra!" #: src/view/com/post-thread/PostThread.tsx:212 msgid "Post hidden" @@ -5197,10 +5051,6 @@ msgstr "Kitűzted a bejegyzést" msgid "Post unpinned" msgstr "Feloldottad a bejegyzés kitűzését" -#: src/lib/api/index.ts:106 -#~ msgid "Posting..." -#~ msgstr "Bejegyzés közzététele folyamatban…" - #: src/components/TagMenu/index.tsx:252 msgid "posts" msgstr "bejegyzés" @@ -5211,8 +5061,14 @@ msgid "Posts" msgstr "Bejegyzések" #: src/components/dialogs/MutedWords.tsx:115 -msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." -msgstr "A különböző bejegyzéseket a szövegük, címkéik vagy mindkettő által is elnémíthatod. Javasoljuk a gyakori szavak kerülését, mivel ez bizonyos esetekben az összes bejegyzés elrejtését is eredményezheti." +msgid "" +"Posts can be muted based on their text, their tags, or both. We recommend " +"avoiding common words that appear in many posts, since it can result in no " +"posts being shown." +msgstr "" +"A különböző bejegyzéseket a szövegük, címkéik vagy mindkettő által is " +"elnémíthatod. Javasoljuk a gyakori szavak kerülését, mivel ez bizonyos " +"esetekben az összes bejegyzés elrejtését is eredményezheti." #: src/view/com/posts/FeedErrorMessage.tsx:68 msgid "Posts hidden" @@ -5234,8 +5090,7 @@ msgstr "Az újracsatlakozáshoz kattints ide!" msgid "Press to change hosting provider" msgstr "A tárhelyszolgáltató megváltoztatásához kattints ide!" -#: src/components/Error.tsx:61 -#: src/components/Lists.tsx:93 +#: src/components/Error.tsx:61 src/components/Lists.tsx:93 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Signup/BackNextButtons.tsx:48 msgid "Press to retry" @@ -5243,7 +5098,8 @@ msgstr "Az újrapróbálkozáshoz kattints ide!" #: src/components/KnownFollowers.tsx:124 msgid "Press to view followers of this account that you also follow" -msgstr "Kattints ide a fiók azon követőinek megjelenítéséhez, akiket Te is követsz!" +msgstr "" +"Kattints ide a fiók azon követőinek megjelenítéséhez, akiket Te is követsz!" #: src/view/com/lightbox/Lightbox.web.tsx:148 msgid "Previous image" @@ -5256,11 +5112,7 @@ msgstr "Elsődleges nyelv" #: src/screens/Settings/ThreadPreferences.tsx:99 #: src/screens/Settings/ThreadPreferences.tsx:104 msgid "Prioritize your Follows" -msgstr "" - -#: src/view/screens/PreferencesThreads.tsx:92 -#~ msgid "Prioritize Your Follows" -#~ msgstr "Saját követések kiemelése" +msgstr "Követett személyek előnyben részesítése" #: src/screens/Settings/NotificationSettings.tsx:54 msgid "Priority notifications" @@ -5270,21 +5122,18 @@ msgstr "Előnyben részesített értesítések" msgid "Privacy" msgstr "Adatvédelem" -#: src/screens/Settings/Settings.tsx:153 -#: src/screens/Settings/Settings.tsx:156 +#: src/screens/Settings/Settings.tsx:153 src/screens/Settings/Settings.tsx:156 msgid "Privacy and security" -msgstr "" +msgstr "Adatvédelem és biztonság" #: src/Navigation.tsx:345 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:33 msgid "Privacy and Security" -msgstr "" +msgstr "Adatvédelem és biztonság" -#: src/Navigation.tsx:269 -#: src/screens/Settings/AboutSettings.tsx:38 +#: src/Navigation.tsx:269 src/screens/Settings/AboutSettings.tsx:38 #: src/screens/Settings/AboutSettings.tsx:41 -#: src/view/screens/PrivacyPolicy.tsx:31 -#: src/view/shell/Drawer.tsx:624 +#: src/view/screens/PrivacyPolicy.tsx:31 src/view/shell/Drawer.tsx:624 #: src/view/shell/Drawer.tsx:625 msgid "Privacy Policy" msgstr "Adatvédelmi irányelvek" @@ -5293,19 +5142,16 @@ msgstr "Adatvédelmi irányelvek" msgid "Processing video..." msgstr "Videó feldolgozása folyamatban…" -#: src/lib/api/index.ts:59 -#: src/screens/Login/ForgotPasswordForm.tsx:149 +#: src/lib/api/index.ts:59 src/screens/Login/ForgotPasswordForm.tsx:149 msgid "Processing..." msgstr "Feldolgozás folyamatban…" -#: src/view/screens/DebugMod.tsx:913 -#: src/view/screens/Profile.tsx:363 +#: src/view/screens/DebugMod.tsx:913 src/view/screens/Profile.tsx:363 msgid "profile" msgstr "profil" #: src/view/shell/bottom-bar/BottomBar.tsx:271 -#: src/view/shell/desktop/LeftNav.tsx:493 -#: src/view/shell/Drawer.tsx:71 +#: src/view/shell/desktop/LeftNav.tsx:493 src/view/shell/Drawer.tsx:71 #: src/view/shell/Drawer.tsx:516 msgid "Profile" msgstr "Profil" @@ -5315,30 +5161,19 @@ msgstr "Profil" msgid "Profile updated" msgstr "Frissítetted a profilodat" -#: src/view/screens/Settings/index.tsx:976 -#~ msgid "Protect your account by verifying your email." -#~ msgstr "Védd meg a fiókod az email-címed visszaigazolásával!" - #: src/screens/Onboarding/StepFinished.tsx:242 msgid "Public" msgstr "Nyilvános" #: src/view/screens/ModerationModlists.tsx:75 msgid "Public, shareable lists of users to mute or block in bulk." -msgstr "Nyilvános, megosztható fióklisták a tömeges elnémításhoz vagy letiltáshoz." +msgstr "" +"Nyilvános, megosztható fióklisták a tömeges elnémításhoz vagy letiltáshoz." #: src/view/screens/Lists.tsx:81 msgid "Public, shareable lists which can drive feeds." msgstr "Nyilvános, megosztható listák, amelyek hírfolyamként üzemelhetnek." -#: src/view/com/composer/Composer.tsx:566 -#~ msgid "Publish post" -#~ msgstr "Bejegyzés közzététele" - -#: src/view/com/composer/Composer.tsx:566 -#~ msgid "Publish reply" -#~ msgstr "Válasz közzététele" - #: src/components/StarterPack/QrCodeDialog.tsx:128 msgid "QR code copied to your clipboard!" msgstr "A QR-kód vágólapra másolása megtörtént" @@ -5358,11 +5193,11 @@ msgstr "A QR-kód fotóalbumba mentése megtörtént" msgid "Quote post" msgstr "Idézés" -#: src/view/com/util/forms/PostDropdownBtn.tsx:308 +#: src/view/com/util/forms/PostDropdownBtn.tsx:373 msgid "Quote post was re-attached" msgstr "Visszakapcsoltad az idézetet" -#: src/view/com/util/forms/PostDropdownBtn.tsx:307 +#: src/view/com/util/forms/PostDropdownBtn.tsx:372 msgid "Quote post was successfully detached" msgstr "Leválasztottad az idézetet" @@ -5382,8 +5217,7 @@ msgstr "Ezt a bejegyzést idézhetik mások" msgid "Quote settings" msgstr "Idézési beállítások" -#: src/screens/Post/PostQuotes.tsx:32 -#: src/screens/Post/PostQuotes.tsx:33 +#: src/screens/Post/PostQuotes.tsx:32 src/screens/Post/PostQuotes.tsx:33 msgid "Quotes" msgstr "Idézések" @@ -5397,11 +5231,15 @@ msgid "Random (aka \"Poster's Roulette\")" msgstr "Véletlenszerű (más néven: „Közzétevői rulett”)" #: src/screens/Settings/components/ChangeHandleDialog.tsx:566 -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." +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 "" +"Korlát átlépve – rövid időn belül túl sokszor próbáltad megváltoztatni a " +"felhasználónevedet. Várj egy kicsit, mielőtt újra megkísérelnéd!" -#: src/view/com/util/forms/PostDropdownBtn.tsx:585 -#: src/view/com/util/forms/PostDropdownBtn.tsx:595 +#: src/view/com/util/forms/PostDropdownBtn.tsx:622 +#: src/view/com/util/forms/PostDropdownBtn.tsx:632 msgid "Re-attach quote" msgstr "Idézet visszakapcsolása" @@ -5443,8 +5281,7 @@ msgstr "Értesítések frissítése" msgid "Reload conversations" msgstr "Beszélgetések újratöltése" -#: src/components/dialogs/MutedWords.tsx:438 -#: src/components/FeedCard.tsx:316 +#: src/components/dialogs/MutedWords.tsx:438 src/components/FeedCard.tsx:316 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/components/StarterPack/Wizard/WizardListCard.tsx:109 #: src/screens/Settings/Settings.tsx:458 @@ -5459,8 +5296,7 @@ msgstr "Eltávolítás" msgid "Remove {displayName} from starter pack" msgstr "{displayName} eltávolítása a kezdőcsomagból" -#: src/screens/Settings/Settings.tsx:437 -#: src/screens/Settings/Settings.tsx:440 +#: src/screens/Settings/Settings.tsx:437 src/screens/Settings/Settings.tsx:440 msgid "Remove account" msgstr "Fiók eltávolítása" @@ -5492,15 +5328,12 @@ msgstr "Hírfolyam eltávolítása" #: src/view/com/feeds/FeedSourceCard.tsx:190 #: src/view/com/feeds/FeedSourceCard.tsx:268 -#: src/view/screens/ProfileFeed.tsx:337 -#: src/view/screens/ProfileFeed.tsx:343 -#: src/view/screens/ProfileList.tsx:502 -#: src/view/screens/SavedFeeds.tsx:351 +#: src/view/screens/ProfileFeed.tsx:337 src/view/screens/ProfileFeed.tsx:343 +#: src/view/screens/ProfileList.tsx:502 src/view/screens/SavedFeeds.tsx:351 msgid "Remove from my feeds" msgstr "Eltávolítás a hírfolyamgyűjteményből" -#: src/components/FeedCard.tsx:311 -#: src/view/com/feeds/FeedSourceCard.tsx:314 +#: src/components/FeedCard.tsx:311 src/view/com/feeds/FeedSourceCard.tsx:314 msgid "Remove from my feeds?" msgstr "Eltávolítás a hírfolyamgyűjteményből" @@ -5568,8 +5401,7 @@ msgid "Removed from saved feeds" msgstr "Eltávolítottad a hírfolyamot az elmentett hírfolyamok közül" #: src/view/com/posts/FeedShutdownMsg.tsx:44 -#: src/view/screens/ProfileFeed.tsx:197 -#: src/view/screens/ProfileList.tsx:386 +#: src/view/screens/ProfileFeed.tsx:197 src/view/screens/ProfileList.tsx:386 msgid "Removed from your feeds" msgstr "Eltávolítottad a hírfolyamot a gyűjteményedből" @@ -5577,9 +5409,6 @@ msgstr "Eltávolítottad a hírfolyamot a gyűjteményedből" msgid "Removes quoted post" msgstr "Idézett bejegyzés eltávolítása" -#~ msgid "Removes the attachment" -#~ msgstr "Melléklet eltávolítása" - #: src/view/com/posts/FeedShutdownMsg.tsx:129 #: src/view/com/posts/FeedShutdownMsg.tsx:133 msgid "Replace with Discover" @@ -5620,8 +5449,7 @@ msgstr "Válaszbeállítások" msgid "Reply settings are chosen by the author of the thread" msgstr "A válaszlánc beállításait a szerző határozhatja meg" -#: src/view/com/post/Post.tsx:204 -#: src/view/com/posts/FeedItem.tsx:553 +#: src/view/com/post/Post.tsx:204 src/view/com/posts/FeedItem.tsx:553 msgctxt "description" msgid "Reply to <0><1/>" msgstr "Válasz neki: <0><1/>" @@ -5636,17 +5464,16 @@ msgctxt "description" msgid "Reply to a post" msgstr "Válasz egy bejegyzésre" -#: src/view/com/post/Post.tsx:202 -#: src/view/com/posts/FeedItem.tsx:550 +#: src/view/com/post/Post.tsx:202 src/view/com/posts/FeedItem.tsx:550 msgctxt "description" msgid "Reply to you" msgstr "Válasz a bejegyzésedre" -#: src/view/com/util/forms/PostDropdownBtn.tsx:338 +#: src/view/com/util/forms/PostDropdownBtn.tsx:403 msgid "Reply visibility updated" msgstr "Frissítetted a válasz láthatóságát" -#: src/view/com/util/forms/PostDropdownBtn.tsx:337 +#: src/view/com/util/forms/PostDropdownBtn.tsx:402 msgid "Reply was successfully hidden" msgstr "Elrejtetted a választ" @@ -5661,8 +5488,7 @@ msgstr "Jelentés" msgid "Report Account" msgstr "Fiók jelentése" -#: src/components/dms/ConvoMenu.tsx:197 -#: src/components/dms/ConvoMenu.tsx:200 +#: src/components/dms/ConvoMenu.tsx:197 src/components/dms/ConvoMenu.tsx:200 #: src/components/dms/ReportConversationPrompt.tsx:18 msgid "Report conversation" msgstr "Beszélgetés jelentése" @@ -5671,8 +5497,7 @@ msgstr "Beszélgetés jelentése" msgid "Report dialog" msgstr "Párbeszédablak jelentése" -#: src/view/screens/ProfileFeed.tsx:354 -#: src/view/screens/ProfileFeed.tsx:356 +#: src/view/screens/ProfileFeed.tsx:354 src/view/screens/ProfileFeed.tsx:356 msgid "Report feed" msgstr "Hírfolyam jelentése" @@ -5684,8 +5509,8 @@ msgstr "Lista jelentése" msgid "Report message" msgstr "Üzenet jelentése" -#: src/view/com/util/forms/PostDropdownBtn.tsx:621 -#: src/view/com/util/forms/PostDropdownBtn.tsx:623 +#: src/view/com/util/forms/PostDropdownBtn.tsx:658 +#: src/view/com/util/forms/PostDropdownBtn.tsx:660 msgid "Report post" msgstr "Bejegyzés jelentése" @@ -5756,15 +5581,10 @@ msgstr "{0} megosztotta" msgid "Reposted by <0><1/>" msgstr "<0><1/> megosztotta" -#: src/view/com/posts/FeedItem.tsx:301 -#: src/view/com/posts/FeedItem.tsx:320 +#: src/view/com/posts/FeedItem.tsx:301 src/view/com/posts/FeedItem.tsx:320 msgid "Reposted by you" msgstr "Megosztottad" -#: src/view/com/notifications/FeedItem.tsx:180 -#~ msgid "reposted your post" -#~ msgstr "megosztotta a bejegyzésedet" - #: src/view/com/post-thread/PostThreadItem.tsx:217 msgid "Reposts of this post" msgstr "A bejegyzés megosztásai" @@ -5786,11 +5606,7 @@ msgstr "Helyettesítő szöveg hozzáadásának megkövetelése közzététel el #: src/screens/Settings/components/Email2FAToggle.tsx:54 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 "Emailben kapott kód megkövetelése a bejelentkezéshez" +msgstr "Emailben kapott kód megkövetelése a bejelentkezéshez." #: src/screens/Signup/StepInfo/index.tsx:159 msgid "Required for this provider" @@ -5823,8 +5639,7 @@ msgstr "Helyreállítási kód" msgid "Reset Code" msgstr "Helyreállítási kód" -#: src/screens/Settings/Settings.tsx:335 -#: src/screens/Settings/Settings.tsx:337 +#: src/screens/Settings/Settings.tsx:335 src/screens/Settings/Settings.tsx:337 msgid "Reset onboarding state" msgstr "Regisztrációs varázsló állapotának alaphelyzetbe állítása" @@ -5832,19 +5647,6 @@ msgstr "Regisztrációs varázsló állapotának alaphelyzetbe állítása" msgid "Reset password" msgstr "Jelszó helyreállítása" -#: src/view/screens/Settings/index.tsx:847 -#: src/view/screens/Settings/index.tsx:850 -#~ msgid "Reset preferences state" -#~ msgstr "Beállítások alaphelyzetbe állítása" - -#: src/view/screens/Settings/index.tsx:868 -#~ msgid "Resets the onboarding state" -#~ msgstr "Regisztrációs varázsló állapotának alaphelyzetbe állítása" - -#: src/view/screens/Settings/index.tsx:848 -#~ msgid "Resets the preferences state" -#~ msgstr "Beállítások alaphelyzetbe állítása" - #: src/screens/Login/LoginForm.tsx:296 msgid "Retries login" msgstr "Bejelentkezés újrapróbálása" @@ -5854,12 +5656,10 @@ msgstr "Bejelentkezés újrapróbálása" msgid "Retries the last action, which errored out" msgstr "A legutóbb meghiúsult folyamat újrapróbálása" -#: src/components/dms/MessageItem.tsx:244 -#: src/components/Error.tsx:66 +#: src/components/dms/MessageItem.tsx:244 src/components/Error.tsx:66 #: src/components/Lists.tsx:104 #: src/components/StarterPack/ProfileStarterPacks.tsx:336 -#: src/screens/Login/LoginForm.tsx:295 -#: src/screens/Login/LoginForm.tsx:302 +#: src/screens/Login/LoginForm.tsx:295 src/screens/Login/LoginForm.tsx:302 #: src/screens/Messages/components/MessageListError.tsx:25 #: src/screens/Onboarding/StepInterests/index.tsx:217 #: src/screens/Onboarding/StepInterests/index.tsx:220 @@ -5871,8 +5671,7 @@ msgstr "A legutóbb meghiúsult folyamat újrapróbálása" msgid "Retry" msgstr "Újra" -#: src/components/Error.tsx:74 -#: src/screens/List/ListHiddenScreen.tsx:205 +#: src/components/Error.tsx:74 src/screens/List/ListHiddenScreen.tsx:205 #: src/screens/StarterPack/StarterPackScreen.tsx:751 #: src/view/screens/ProfileList.tsx:1030 msgid "Return to previous page" @@ -5882,8 +5681,7 @@ msgstr "Vissza az előző oldalra" msgid "Returns to home page" msgstr "Vissza a kezdőlapra" -#: src/view/screens/NotFound.tsx:60 -#: src/view/screens/ProfileFeed.tsx:114 +#: src/view/screens/NotFound.tsx:60 src/view/screens/ProfileFeed.tsx:114 msgid "Returns to previous page" msgstr "Vissza az előző oldalra" @@ -5901,8 +5699,7 @@ msgstr "Vissza az előző oldalra" #: 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:103 +#: src/view/com/modals/EditProfile.tsx:219 src/view/screens/SavedFeeds.tsx:103 msgid "Save" msgstr "Mentés" @@ -5916,8 +5713,7 @@ msgstr "Mentés" msgid "Save birthday" msgstr "Születésnap elmentése" -#: src/view/screens/SavedFeeds.tsx:98 -#: src/view/screens/SavedFeeds.tsx:103 +#: src/view/screens/SavedFeeds.tsx:98 src/view/screens/SavedFeeds.tsx:103 msgid "Save changes" msgstr "Változtatások mentése" @@ -5925,10 +5721,6 @@ msgstr "Változtatások mentése" msgid "Save Changes" msgstr "Változtatások mentése" -#: src/view/com/modals/ChangeHandle.tsx:158 -#~ msgid "Save handle change" -#~ msgstr "Felhasználónév-változtatás mentése" - #: src/components/StarterPack/ShareDialog.tsx:151 #: src/components/StarterPack/ShareDialog.tsx:158 msgid "Save image" @@ -5940,14 +5732,13 @@ msgstr "Kép kivágásának mentése" #: src/screens/Settings/components/ChangeHandleDialog.tsx:228 msgid "Save new handle" -msgstr "" +msgstr "Felhasználónév mentése" #: src/components/StarterPack/QrCodeDialog.tsx:179 msgid "Save QR code" msgstr "QR-kód mentése" -#: src/view/screens/ProfileFeed.tsx:338 -#: src/view/screens/ProfileFeed.tsx:344 +#: src/view/screens/ProfileFeed.tsx:338 src/view/screens/ProfileFeed.tsx:344 msgid "Save to my feeds" msgstr "Mentés a hírfolyamgyűjteménybe" @@ -5959,8 +5750,7 @@ msgstr "Elmentett hírfolyamok" msgid "Saved to your camera roll" msgstr "Elmentetted a képet a galériába" -#: src/view/screens/ProfileFeed.tsx:206 -#: src/view/screens/ProfileList.tsx:366 +#: src/view/screens/ProfileFeed.tsx:206 src/view/screens/ProfileList.tsx:366 msgid "Saved to your feeds" msgstr "Elmentetted a hírfolyamot a gyűjteményedbe" @@ -5968,23 +5758,17 @@ msgstr "Elmentetted a hírfolyamot a gyűjteményedbe" msgid "Saves any changes to your profile" msgstr "A profilon végzett változtatások mentése" -#: src/view/com/modals/ChangeHandle.tsx:159 -#~ msgid "Saves handle change to {handle}" -#~ msgstr "{handle} felhasználónév-változtatásának mentése" - #: src/view/com/modals/CropImage.web.tsx:105 msgid "Saves image crop settings" msgstr "Képkivágási beállítások mentése" -#: src/components/dms/ChatEmptyPill.tsx:33 -#: src/components/NewskieDialog.tsx:105 +#: src/components/dms/ChatEmptyPill.tsx:33 src/components/NewskieDialog.tsx:105 #: src/view/com/notifications/FeedItem.tsx:539 #: src/view/com/notifications/FeedItem.tsx:564 msgid "Say hello!" msgstr "Köszönj!" -#: src/screens/Onboarding/index.tsx:33 -#: src/screens/Onboarding/state.ts:99 +#: src/screens/Onboarding/index.tsx:33 src/screens/Onboarding/state.ts:99 msgid "Science" msgstr "Tudomány" @@ -5994,13 +5778,11 @@ msgstr "Vissza a tetejére" #: src/components/dms/dialogs/SearchablePeopleList.tsx:484 #: src/components/forms/SearchInput.tsx:34 -#: src/components/forms/SearchInput.tsx:36 -#: src/Navigation.tsx:590 +#: src/components/forms/SearchInput.tsx:36 src/Navigation.tsx:590 #: src/view/com/modals/ListAddRemoveUsers.tsx:76 #: src/view/screens/Search/Search.tsx:594 #: src/view/shell/bottom-bar/BottomBar.tsx:178 -#: src/view/shell/desktop/LeftNav.tsx:419 -#: src/view/shell/Drawer.tsx:365 +#: src/view/shell/desktop/LeftNav.tsx:419 src/view/shell/Drawer.tsx:365 msgid "Search" msgstr "Keresés" @@ -6012,12 +5794,6 @@ msgstr "Keresési kifejezés: {query}" msgid "Search for \"{searchText}\"" msgstr "Keresési kifejezés: {searchText}" -#~ msgid "Search for all posts by @{authorHandle} with tag {displayTag}" -#~ msgstr "Keresés: @{authorHandle} bejegyzései, amelyek {displayTag} címkével rendelkeznek" - -#~ msgid "Search for all posts with tag {displayTag}" -#~ msgstr "Keresés: Bejegyzések, amelyek {displayTag} címkével rendelkeznek" - #: src/screens/StarterPack/Wizard/index.tsx:500 msgid "Search for feeds that you want to suggest to others." msgstr "Ajánlható hírfolyamok keresése." @@ -6049,7 +5825,8 @@ msgstr "A(z) {truncatedTag} címkével ellátott bejegyzések megtekintése" #: src/components/TagMenu/index.web.tsx:94 msgid "See {truncatedTag} posts by user" -msgstr "A felhasználó {truncatedTag} címkével ellátott bejegyzéseinek megtekintése" +msgstr "" +"A felhasználó {truncatedTag} címkével ellátott bejegyzéseinek megtekintése" #: src/components/TagMenu/index.tsx:132 msgid "See <0>{displayTag} posts" @@ -6057,7 +5834,9 @@ msgstr "A(z) <0>{displayTag} címkével ellátott bejegyzések megtekintése #: src/components/TagMenu/index.tsx:183 msgid "See <0>{displayTag} posts by this user" -msgstr "A felhasználó <0>{displayTag} címkével ellátott bejegyzéseinek megtekintése" +msgstr "" +"A felhasználó <0>{displayTag} címkével ellátott bejegyzéseinek " +"megtekintése" #: src/view/com/auth/SplashScreen.web.tsx:176 msgid "See jobs at Bluesky" @@ -6093,7 +5872,7 @@ msgstr "Emoji kiválasztása" #: src/screens/Settings/LanguageSettings.tsx:252 msgid "Select content languages" -msgstr "" +msgstr "Nyelvek kiválasztása" #: src/screens/Login/index.tsx:117 msgid "Select from an existing account" @@ -6152,8 +5931,13 @@ msgid "Select what content this mute word should apply to." msgstr "Add meg, hogy milyen típusú tartalmakra legyen alkalmazható ez a szó!" #: src/screens/Settings/LanguageSettings.tsx:245 -msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." -msgstr "Add meg, hogy milyen nyelveken szeretnél tartalmakat látni a hírfolyamaidban. Ha egy nyelvet sem jelölsz ki, akkor minden bejegyzés láthatóvá válik." +msgid "" +"Select which languages you want your subscribed feeds to include. If none " +"are selected, all languages will be shown." +msgstr "" +"Add meg, hogy milyen nyelveken szeretnél tartalmakat látni a " +"hírfolyamaidban. Ha egy nyelvet sem jelölsz ki, akkor minden bejegyzés " +"láthatóvá válik." #: src/screens/Settings/LanguageSettings.tsx:76 msgid "Select your app language for the default text to display in the app." @@ -6226,8 +6010,8 @@ msgstr "Jelentés küldése neki: {0}" msgid "Send verification email" msgstr "Visszaigazoló email küldése" -#: src/view/com/util/forms/PostDropdownBtn.tsx:441 -#: src/view/com/util/forms/PostDropdownBtn.tsx:444 +#: src/view/com/util/forms/PostDropdownBtn.tsx:480 +#: src/view/com/util/forms/PostDropdownBtn.tsx:483 msgid "Send via direct message" msgstr "Továbbítás személyes üzenetben" @@ -6247,42 +6031,16 @@ msgstr "Születési dátum megadása" msgid "Set new password" msgstr "Új jelszó beállítása" -#: src/view/screens/PreferencesFollowingFeed.tsx:122 -#~ msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." -#~ msgstr "A funkció letiltásával minden idézet el lesz rejtve a hírfolyamból. A megosztások továbbra is láthatóak maradnak." - -#: src/view/screens/PreferencesFollowingFeed.tsx:64 -#~ msgid "Set this setting to \"No\" to hide all replies from your feed." -#~ msgstr "A funkció letiltásával minden válasz el lesz rejtve a hírfolyamból." - -#: src/view/screens/PreferencesFollowingFeed.tsx:88 -#~ msgid "Set this setting to \"No\" to hide all reposts from your feed." -#~ msgstr "A funkció letiltásával minden megosztás el lesz rejtve a hírfolyamból." - -#: src/view/screens/PreferencesThreads.tsx:117 -#~ msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature." -#~ msgstr "A funkció engedélyezésével a válaszláncok egymásba ágyazva lesznek megjelenítve. Ez egy kísérleti funkció." - -#: src/view/screens/PreferencesFollowingFeed.tsx:158 -#~ msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." -#~ msgstr "A funkció engedélyezésével a Követett hírfolyam nyomokban a többi hírfolyam bejegyzéseit is meg fogja jeleníteni. Ez egy kísérleti funkció." - #: src/screens/Onboarding/Layout.tsx:48 msgid "Set up your account" msgstr "Fiók beállítása" -#: src/view/com/modals/ChangeHandle.tsx:254 -#~ msgid "Sets Bluesky username" -#~ msgstr "Bluesky-felhasználónév beállítása" - #: src/screens/Login/ForgotPasswordForm.tsx:107 msgid "Sets email for password reset" msgstr "Email cím beállítása jelszóvisszaállításhoz" -#: src/Navigation.tsx:158 -#: src/screens/Settings/Settings.tsx:76 -#: src/view/shell/desktop/LeftNav.tsx:511 -#: src/view/shell/Drawer.tsx:529 +#: src/Navigation.tsx:158 src/screens/Settings/Settings.tsx:76 +#: src/view/shell/desktop/LeftNav.tsx:511 src/view/shell/Drawer.tsx:529 msgid "Settings" msgstr "Beállítások" @@ -6299,8 +6057,8 @@ msgstr "Szexuális tartalom" #: src/screens/StarterPack/StarterPackScreen.tsx:594 #: src/view/com/profile/ProfileMenu.tsx:195 #: src/view/com/profile/ProfileMenu.tsx:204 -#: src/view/com/util/forms/PostDropdownBtn.tsx:452 -#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/forms/PostDropdownBtn.tsx:491 +#: src/view/com/util/forms/PostDropdownBtn.tsx:500 #: src/view/com/util/post-ctrls/PostCtrls.tsx:339 #: src/view/screens/ProfileList.tsx:487 msgid "Share" @@ -6320,13 +6078,12 @@ msgid "Share a fun fact!" msgstr "Mondj el egy érdekességet!" #: src/view/com/profile/ProfileMenu.tsx:353 -#: src/view/com/util/forms/PostDropdownBtn.tsx:703 +#: src/view/com/util/forms/PostDropdownBtn.tsx:736 #: src/view/com/util/post-ctrls/PostCtrls.tsx:355 msgid "Share anyway" msgstr "Továbbítás mégis" -#: src/view/screens/ProfileFeed.tsx:364 -#: src/view/screens/ProfileFeed.tsx:366 +#: src/view/screens/ProfileFeed.tsx:364 src/view/screens/ProfileFeed.tsx:366 msgid "Share feed" msgstr "Hírfolyam továbbítása" @@ -6356,7 +6113,9 @@ msgstr "Kezdőcsomag továbbítása" #: src/components/StarterPack/ShareDialog.tsx:100 msgid "Share this starter pack and help people join your community on Bluesky." -msgstr "Oszd meg ezt a kezdőcsomagot, hogy mások is csatlakozhassanak a Blueskyos közösségedhez!" +msgstr "" +"Oszd meg ezt a kezdőcsomagot, hogy mások is csatlakozhassanak a Blueskyos " +"közösségedhez!" #: src/components/dms/ChatEmptyPill.tsx:34 msgid "Share your favorite feed!" @@ -6401,10 +6160,10 @@ msgstr "Elrejtett válaszok mutatása" #: src/view/com/post-thread/PostThreadItem.tsx:796 msgid "Show information about when this post was created" -msgstr "" +msgstr "További információ a bejegyzés dátumáról" -#: src/view/com/util/forms/PostDropdownBtn.tsx:491 -#: src/view/com/util/forms/PostDropdownBtn.tsx:493 +#: src/view/com/util/forms/PostDropdownBtn.tsx:530 +#: src/view/com/util/forms/PostDropdownBtn.tsx:532 msgid "Show less like this" msgstr "Kevesebb ilyet mutasson" @@ -6413,13 +6172,12 @@ msgid "Show list anyway" msgstr "Lista mutatása mégis" #: src/view/com/post-thread/PostThreadItem.tsx:588 -#: src/view/com/post/Post.tsx:242 -#: src/view/com/posts/FeedItem.tsx:509 +#: src/view/com/post/Post.tsx:242 src/view/com/posts/FeedItem.tsx:509 msgid "Show More" msgstr "Továbbiak" -#: src/view/com/util/forms/PostDropdownBtn.tsx:483 -#: src/view/com/util/forms/PostDropdownBtn.tsx:485 +#: src/view/com/util/forms/PostDropdownBtn.tsx:522 +#: src/view/com/util/forms/PostDropdownBtn.tsx:524 msgid "Show more like this" msgstr "Több ilyet mutasson" @@ -6429,60 +6187,42 @@ msgstr "Elnémított válaszok mutatása" #: src/screens/Settings/Settings.tsx:96 msgid "Show other accounts you can switch to" -msgstr "" - -#: src/view/screens/PreferencesFollowingFeed.tsx:155 -#~ msgid "Show Posts from My Feeds" -#~ msgstr "A többi hírfolyam bejegyzéseinek mutatása" +msgstr "További fiókok megjelenítése váltás céljából" #: src/screens/Settings/FollowingFeedPreferences.tsx:97 #: src/screens/Settings/FollowingFeedPreferences.tsx:107 msgid "Show quote posts" -msgstr "" - -#: src/view/screens/PreferencesFollowingFeed.tsx:119 -#~ msgid "Show Quote Posts" -#~ msgstr "Idézetek mutatása" +msgstr "Idézetek mutatása" #: src/screens/Settings/FollowingFeedPreferences.tsx:61 #: src/screens/Settings/FollowingFeedPreferences.tsx:71 msgid "Show replies" -msgstr "" - -#: src/view/screens/PreferencesFollowingFeed.tsx:61 -#~ msgid "Show Replies" -#~ msgstr "Válaszok mutatása" +msgstr "Válaszok mutatása" #: src/screens/Settings/ThreadPreferences.tsx:113 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 "A funkció engedélyezésével az Általad követett személyek válaszai lesznek legfelül megjelenítve egy bejegyzés alatt." +"Az Általad követett személyek válaszainak megjelenítése legfelül egy " +"bejegyzés alatt" #: src/screens/Settings/ThreadPreferences.tsx:138 msgid "Show replies in a threaded view" -msgstr "" +msgstr "Válaszok megjelenítése egymásba ágyazva" -#: src/view/com/util/forms/PostDropdownBtn.tsx:559 -#: src/view/com/util/forms/PostDropdownBtn.tsx:569 +#: src/view/com/util/forms/PostDropdownBtn.tsx:596 +#: src/view/com/util/forms/PostDropdownBtn.tsx:606 msgid "Show reply for everyone" msgstr "Válasz mutatása mindenkinek" #: src/screens/Settings/FollowingFeedPreferences.tsx:79 #: src/screens/Settings/FollowingFeedPreferences.tsx:89 msgid "Show reposts" -msgstr "" - -#: src/view/screens/PreferencesFollowingFeed.tsx:85 -#~ msgid "Show Reposts" -#~ msgstr "Megosztások mutatása" +msgstr "Megosztások mutatása" #: src/screens/Settings/FollowingFeedPreferences.tsx:122 #: src/screens/Settings/FollowingFeedPreferences.tsx:132 msgid "Show samples of your saved feeds in your Following feed" -msgstr "" +msgstr "Elmentett hírfolyamok bejegyzéseinek mutatása a Követett hírfolyamban" #: src/components/moderation/ContentHider.tsx:130 #: src/components/moderation/PostHider.tsx:79 @@ -6497,12 +6237,9 @@ msgstr "Figyelmeztetés" msgid "Show warning and filter from feeds" msgstr "Figyelmeztetés és kiszűrés a hírfolyamokból" -#: src/components/dialogs/Signin.tsx:97 -#: src/components/dialogs/Signin.tsx:99 -#: src/screens/Login/index.tsx:97 -#: src/screens/Login/index.tsx:116 -#: src/screens/Login/LoginForm.tsx:163 -#: src/view/com/auth/SplashScreen.tsx:62 +#: src/components/dialogs/Signin.tsx:97 src/components/dialogs/Signin.tsx:99 +#: src/screens/Login/index.tsx:97 src/screens/Login/index.tsx:116 +#: src/screens/Login/LoginForm.tsx:163 src/view/com/auth/SplashScreen.tsx:62 #: src/view/com/auth/SplashScreen.tsx:70 #: src/view/com/auth/SplashScreen.web.tsx:123 #: src/view/com/auth/SplashScreen.web.tsx:131 @@ -6512,8 +6249,7 @@ msgstr "Figyelmeztetés és kiszűrés a hírfolyamokból" #: 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/NavSignupCard.tsx:57 -#: src/view/shell/NavSignupCard.tsx:62 +#: src/view/shell/NavSignupCard.tsx:57 src/view/shell/NavSignupCard.tsx:62 msgid "Sign in" msgstr "Bejelentkezés" @@ -6533,20 +6269,14 @@ msgstr "Jelentkezz be vagy regisztrálj a csatlakozáshoz!" msgid "Sign into Bluesky or create a new account" msgstr "Jelentkezz be vagy hozz létre egy Bluesky-fiókot!" -#: src/screens/Settings/Settings.tsx:217 -#: src/screens/Settings/Settings.tsx:219 +#: src/screens/Settings/Settings.tsx:217 src/screens/Settings/Settings.tsx:219 #: src/screens/Settings/Settings.tsx:251 msgid "Sign out" msgstr "Kijelentkezés" -#: src/view/screens/Settings/index.tsx:421 -#: src/view/screens/Settings/index.tsx:431 -#~ msgid "Sign out of all accounts" -#~ msgstr "Kijelentkezés az összes fiókból" - #: src/screens/Settings/Settings.tsx:248 msgid "Sign out?" -msgstr "" +msgstr "Kijelentkezés" #: src/view/shell/bottom-bar/BottomBar.tsx:301 #: src/view/shell/bottom-bar/BottomBar.tsx:302 @@ -6554,32 +6284,20 @@ msgstr "" #: 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/NavSignupCard.tsx:47 -#: src/view/shell/NavSignupCard.tsx:52 +#: src/view/shell/NavSignupCard.tsx:47 src/view/shell/NavSignupCard.tsx:52 msgid "Sign up" msgstr "Regisztráció" -#~ msgid "Sign up or sign in to join the conversation" -#~ msgstr "Jelentkezz be vagy regisztrálj a csatlakozáshoz!" - #: src/components/moderation/ScreenHider.tsx:91 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Bejelentkezés szükséges" -#: src/view/screens/Settings/index.tsx:362 -#~ msgid "Signed in as" -#~ msgstr "Bejelentkezve, mint" - #: src/lib/hooks/useAccountSwitcher.ts:41 #: src/screens/Login/ChooseAccountForm.tsx:53 msgid "Signed in as @{0}" msgstr "Bejelentkezve, mint @{0}" -#: src/view/com/notifications/FeedItem.tsx:218 -#~ msgid "signed up with your starter pack" -#~ msgstr "regisztrált a kezdőcsomagoddal" - #: src/screens/StarterPack/StarterPackLandingScreen.tsx:299 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:306 msgid "Signup without a starter pack" @@ -6602,8 +6320,7 @@ msgstr "Folyamat kihagyása" msgid "Smaller" msgstr "Kisebb" -#: src/screens/Onboarding/index.tsx:37 -#: src/screens/Onboarding/state.ts:87 +#: src/screens/Onboarding/index.tsx:37 src/screens/Onboarding/state.ts:87 msgid "Software Dev" msgstr "Szoftverfejlesztő" @@ -6635,22 +6352,17 @@ msgstr "Valami balul sült el. Próbáld újra!" msgid "Something went wrong!" msgstr "Valami balul sült el!" -#: src/App.native.tsx:112 -#: src/App.web.tsx:95 +#: src/App.native.tsx:112 src/App.web.tsx:95 msgid "Sorry! Your session expired. Please log in again." msgstr "Sajnáljuk, de lejárt a munkameneted. Jelentkezz be újra!" #: src/screens/Settings/ThreadPreferences.tsx:48 msgid "Sort replies" -msgstr "" - -#: src/view/screens/PreferencesThreads.tsx:64 -#~ msgid "Sort Replies" -#~ msgstr "Válaszok rendezése" +msgstr "Válaszok rendezése" #: src/screens/Settings/ThreadPreferences.tsx:55 msgid "Sort replies by" -msgstr "" +msgstr "Rendezés módja:" #: src/screens/Settings/ThreadPreferences.tsx:52 msgid "Sort replies to the same post by:" @@ -6669,8 +6381,7 @@ msgstr "Spam" msgid "Spam; excessive mentions or replies" msgstr "Spam; túl sok említés vagy válasz" -#: src/screens/Onboarding/index.tsx:27 -#: src/screens/Onboarding/state.ts:100 +#: src/screens/Onboarding/index.tsx:27 src/screens/Onboarding/state.ts:100 msgid "Sports" msgstr "Sport" @@ -6682,8 +6393,7 @@ msgstr "Új csevegés indítása" msgid "Start chat with {displayName}" msgstr "Csevegés indítása vele: {displayName}" -#: src/Navigation.tsx:393 -#: src/Navigation.tsx:398 +#: src/Navigation.tsx:393 src/Navigation.tsx:398 #: src/screens/StarterPack/Wizard/index.tsx:191 msgid "Starter Pack" msgstr "Kezdőcsomag" @@ -6705,8 +6415,12 @@ msgid "Starter Packs" msgstr "Kezdőcsomagok" #: src/components/StarterPack/ProfileStarterPacks.tsx:244 -msgid "Starter packs let you easily share your favorite feeds and people with your friends." -msgstr "A kezdőcsomagokkal könnyen megoszthatod a kedvenc hírfolyamaidat és személyeidet." +msgid "" +"Starter packs let you easily share your favorite feeds and people with your " +"friends." +msgstr "" +"A kezdőcsomagokkal könnyen megoszthatod a kedvenc hírfolyamaidat és " +"személyeidet." #: src/screens/Settings/AboutSettings.tsx:46 #: src/screens/Settings/AboutSettings.tsx:49 @@ -6721,8 +6435,7 @@ msgstr "{1}/{0}. lépés" msgid "Storage cleared, you need to restart the app now." msgstr "Adatok törölve. Indítsd újra az alkalmazást!" -#: src/Navigation.tsx:244 -#: src/screens/Settings/Settings.tsx:316 +#: src/Navigation.tsx:244 src/screens/Settings/Settings.tsx:316 msgid "Storybook" msgstr "Mesekönyv" @@ -6739,7 +6452,9 @@ msgstr "Feliratkozás" #: src/screens/Profile/Sections/Labels.tsx:201 msgid "Subscribe to @{0} to use these labels:" -msgstr "Az alábbi feljegyzési kategóriák használatához iratkozz fel a(z) @{0} nevű szolgáltatóra:" +msgstr "" +"Az alábbi feljegyzési kategóriák használatához iratkozz fel a(z) @{0} nevű " +"szolgáltatóra:" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:238 msgid "Subscribe to Labeler" @@ -6770,31 +6485,21 @@ msgstr "Számodra javasolt" msgid "Suggestive" msgstr "Felnőtt tartalom" -#: src/Navigation.tsx:264 -#: src/view/screens/Support.tsx:31 +#: src/Navigation.tsx:264 src/view/screens/Support.tsx:31 #: src/view/screens/Support.tsx:34 msgid "Support" msgstr "Támogatás" -#: src/screens/Settings/Settings.tsx:94 -#: src/screens/Settings/Settings.tsx:108 +#: src/screens/Settings/Settings.tsx:94 src/screens/Settings/Settings.tsx:108 #: src/screens/Settings/Settings.tsx:403 msgid "Switch account" -msgstr "" +msgstr "Fiókváltás" #: src/components/dialogs/SwitchAccount.tsx:46 #: src/components/dialogs/SwitchAccount.tsx:49 msgid "Switch Account" msgstr "Fiókváltás" -#: src/view/screens/Settings/index.tsx:131 -#~ msgid "Switch to {0}" -#~ msgstr "Váltás rá: {0}" - -#: src/view/screens/Settings/index.tsx:132 -#~ msgid "Switches the account you are logged in to" -#~ msgstr "A jelenleg bejelentkezett fiók átváltása egy másikra" - #: src/screens/Settings/AppearanceSettings.tsx:84 #: src/screens/Settings/AppearanceSettings.tsx:132 msgid "System" @@ -6845,8 +6550,7 @@ msgstr "" "Tanítsd meg az algoritmusnak,\n" "hogy mit szeretnél látni!" -#: src/screens/Onboarding/index.tsx:36 -#: src/screens/Onboarding/state.ts:101 +#: src/screens/Onboarding/index.tsx:36 src/screens/Onboarding/state.ts:101 msgid "Tech" msgstr "Technológia" @@ -6866,11 +6570,9 @@ msgstr "További részletek" msgid "Terms" msgstr "Feltételek" -#: src/Navigation.tsx:274 -#: src/screens/Settings/AboutSettings.tsx:30 +#: src/Navigation.tsx:274 src/screens/Settings/AboutSettings.tsx:30 #: src/screens/Settings/AboutSettings.tsx:33 -#: src/view/screens/TermsOfService.tsx:31 -#: src/view/shell/Drawer.tsx:617 +#: src/view/screens/TermsOfService.tsx:31 src/view/shell/Drawer.tsx:617 #: src/view/shell/Drawer.tsx:619 msgid "Terms of Service" msgstr "Felhasználási feltételek" @@ -6901,8 +6603,12 @@ msgid "Thank you. Your report has been sent." msgstr "Köszönjük! A jelentést megkaptuk." #: src/components/intents/VerifyEmailIntentDialog.tsx:82 -msgid "Thanks, you have successfully verified your email address. You can close this dialog." -msgstr "Köszönjük! Visszaigazoltad az email-címed – most már bezárhatod ezt az ablakot." +msgid "" +"Thanks, you have successfully verified your email address. You can close " +"this dialog." +msgstr "" +"Köszönjük! Visszaigazoltad az email-címed – most már bezárhatod ezt az " +"ablakot." #: src/screens/Settings/components/ChangeHandleDialog.tsx:468 msgid "That contains the following:" @@ -6928,7 +6634,8 @@ msgstr "Ez van, srácok!" #: 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 "A fiók ismét képes lesz kapcsolatba lépni veled, ha feloldod a letiltását." +msgstr "" +"A fiók ismét képes lesz kapcsolatba lépni veled, ha feloldod a letiltását." #: src/components/moderation/ModerationDetailsDialog.tsx:118 #: src/lib/moderation/useModerationCauseDescription.ts:126 @@ -6954,11 +6661,16 @@ msgstr "A Felfedezés hírfolyam" #: src/state/shell/progress-guide.tsx:167 #: src/state/shell/progress-guide.tsx:172 msgid "The Discover feed now knows what you like" -msgstr "A Felfedezés hírfolyam olyan tartalmakat mutat, amelyek tetszhetnek Neked" +msgstr "" +"A Felfedezés hírfolyam olyan tartalmakat mutat, amelyek tetszhetnek Neked" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:320 -msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." -msgstr "Az alkalmazás jobb. Töltsd le a Blueskyt és onnan folytatjuk, ahol abbahagytad!" +msgid "" +"The experience is better in the app. Download Bluesky now and we'll pick " +"back up where you left off." +msgstr "" +"Az alkalmazás jobb. Töltsd le a Blueskyt és onnan folytatjuk, ahol " +"abbahagytad!" #: src/view/com/posts/FeedShutdownMsg.tsx:67 msgid "The feed has been replaced with Discover." @@ -6990,24 +6702,37 @@ msgid "The selected video is larger than 50MB." msgstr "A kijelölt videó nagyobb, mint 50 MB." #: src/lib/strings/errors.ts:18 -msgid "The server appears to be experiencing issues. Please try again in a few moments." +msgid "" +"The server appears to be experiencing issues. Please try again in a few " +"moments." msgstr "" +"Hibát tapasztaltunk a kiszolgálóval. Próbáld újra egy pár percen belül!" #: src/screens/StarterPack/StarterPackScreen.tsx:725 -msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." +msgid "" +"The starter pack that you are trying to view is invalid. You may delete this " +"starter pack instead." msgstr "A kezdőcsomag érvénytelen. Ha szeretnéd, törölheted a listáról." #: src/view/screens/Support.tsx:37 -msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us." -msgstr "A támogatási űrlap elköltözött. Kérjük, <0/> vagy látogasd meg a(z) {HELP_DESK_URL} honlapot a kapcsolatbalépéshez!" +msgid "" +"The support form has been moved. If you need help, please <0/> or visit " +"{HELP_DESK_URL} to get in touch with us." +msgstr "" +"A támogatási űrlap elköltözött. Kérjük, <0/> vagy látogasd meg a(z) " +"{HELP_DESK_URL} honlapot a kapcsolatbalépéshez!" #: src/view/screens/TermsOfService.tsx:35 msgid "The Terms of Service have been moved to" msgstr "A felhasználási feltételek elköltöztek:" #: src/components/intents/VerifyEmailIntentDialog.tsx:94 -msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." -msgstr "A megadott ellenőrzőkód érvénytelen. Nézd meg, hogy helyes kódot adtál-e meg vagy kérj újat!" +msgid "" +"The verification code you have provided is invalid. Please make sure that " +"you have used the correct verification link or request a new one." +msgstr "" +"A megadott ellenőrzőkód érvénytelen. Nézd meg, hogy helyes kódot adtál-e meg " +"vagy kérj újat!" #: src/screens/Settings/AppearanceSettings.tsx:136 msgid "Theme" @@ -7017,30 +6742,23 @@ msgstr "Téma" msgid "There is no time limit for account deactivation, come back any time." msgstr "A fiók deaktiválásához nem tartozik időkorlát. Bármikor visszajöhetsz." -#~ msgid "There was an an issue contacting the server, please check your internet connection and try again." -#~ msgstr "A kiszolgáló felkeresése meghiúsult. Ellenőrizd az internetkapcsolatot, majd próbáld újra!" - -#~ msgid "There was an an issue removing this feed. Please check your internet connection and try again." -#~ msgstr "A hírfolyam eltávolítása meghiúsult. Ellenőrizd az internetkapcsolatot, majd próbáld újra!" - -#~ msgid "There was an an issue updating your feeds, please check your internet connection and try again." -#~ msgstr "A hírfolyamok frissítése meghiúsult. Ellenőrizd az internetkapcsolatot, majd próbáld újra!" - #: src/components/dialogs/GifSelect.tsx:226 msgid "There was an issue connecting to Tenor." msgstr "Megszakadt a kapcsolat a Tenorral." -#: src/view/screens/ProfileFeed.tsx:240 -#: src/view/screens/ProfileList.tsx:369 -#: src/view/screens/ProfileList.tsx:388 -#: src/view/screens/SavedFeeds.tsx:86 +#: src/view/screens/ProfileFeed.tsx:240 src/view/screens/ProfileList.tsx:369 +#: src/view/screens/ProfileList.tsx:388 src/view/screens/SavedFeeds.tsx:86 msgid "There was an issue contacting the server" msgstr "Megszakadt a kapcsolat a kiszolgálóval" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:112 #: src/view/screens/ProfileFeed.tsx:546 -msgid "There was an issue contacting the server, please check your internet connection and try again." -msgstr "Megszakadt a kapcsolat a kiszolgálóval. Ellenőrizd az internetkapcsolatot, majd próbáld újra!" +msgid "" +"There was an issue contacting the server, please check your internet " +"connection and try again." +msgstr "" +"Megszakadt a kapcsolat a kiszolgálóval. Ellenőrizd az internetkapcsolatot, " +"majd próbáld újra!" #: src/view/com/feeds/FeedSourceCard.tsx:127 #: src/view/com/feeds/FeedSourceCard.tsx:140 @@ -7049,7 +6767,8 @@ msgstr "Megszakadt a kapcsolat a kiszolgálóddal" #: src/view/com/notifications/Feed.tsx:129 msgid "There was an issue fetching notifications. Tap here to try again." -msgstr "Az értesítések frissítése meghiúsult. Koppints ide az újrapróbálkozáshoz!" +msgstr "" +"Az értesítések frissítése meghiúsult. Koppints ide az újrapróbálkozáshoz!" #: src/view/com/posts/Feed.tsx:473 msgid "There was an issue fetching posts. Tap here to try again." @@ -7061,7 +6780,7 @@ msgstr "A lista lekérése meghiúsult. Koppints ide az újrapróbálkozáshoz!" #: src/screens/Settings/AppPasswords.tsx:52 msgid "There was an issue fetching your app passwords" -msgstr "" +msgstr "Hiba történt az alkalmazásjelszavak lekérése közben" #: src/view/com/feeds/ProfileFeedgens.tsx:150 #: src/view/com/lists/ProfileLists.tsx:149 @@ -7070,26 +6789,32 @@ msgstr "A listák lekérése meghiúsult. Koppints ide az újrapróbálkozáshoz #: src/screens/Settings/components/ChangeHandleDialog.tsx:102 msgid "There was an issue fetching your service info" -msgstr "" +msgstr "A kiszolgálód adatainak lekérése meghiúsult" #: src/view/com/posts/FeedErrorMessage.tsx:145 -msgid "There was an issue removing this feed. Please check your internet connection and try again." -msgstr "A hírfolyam eltávolítása meghiúsult. Ellenőrizd az internetkapcsolatot, majd próbáld újra!" +msgid "" +"There was an issue removing this feed. Please check your internet connection " +"and try again." +msgstr "" +"A hírfolyam eltávolítása meghiúsult. Ellenőrizd az internetkapcsolatot, majd " +"próbáld újra!" #: src/components/dms/ReportDialog.tsx:217 #: src/components/ReportDialog/SubmitView.tsx:87 -msgid "There was an issue sending your report. Please check your internet connection." +msgid "" +"There was an issue sending your report. Please check your internet " +"connection." msgstr "A jelentés küldése meghiúsult. Ellenőrizd az internetkapcsolatot!" #: src/view/com/posts/FeedShutdownMsg.tsx:52 #: src/view/com/posts/FeedShutdownMsg.tsx:71 #: src/view/screens/ProfileFeed.tsx:211 -msgid "There was an issue updating your feeds, please check your internet connection and try again." -msgstr "A hírfolyamok frissítése meghiúsult. Ellenőrizd az internetkapcsolatot, majd próbáld újra!" - -#: src/view/screens/AppPasswords.tsx:75 -#~ msgid "There was an issue with fetching your app passwords" -#~ msgstr "Hiba történt az alkalmazásjelszavak lekérése közben" +msgid "" +"There was an issue updating your feeds, please check your internet " +"connection and try again." +msgstr "" +"A hírfolyamok frissítése meghiúsult. Ellenőrizd az internetkapcsolatot, majd " +"próbáld újra!" #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:107 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:128 @@ -7109,25 +6834,30 @@ msgstr "Hiba történt! {0}" #: src/screens/List/ListHiddenScreen.tsx:63 #: src/screens/List/ListHiddenScreen.tsx:77 #: src/screens/List/ListHiddenScreen.tsx:99 -#: src/view/screens/ProfileList.tsx:400 -#: src/view/screens/ProfileList.tsx:413 -#: src/view/screens/ProfileList.tsx:426 -#: src/view/screens/ProfileList.tsx:439 -msgid "There was an issue. Please check your internet connection and try again." +#: src/view/screens/ProfileList.tsx:400 src/view/screens/ProfileList.tsx:413 +#: src/view/screens/ProfileList.tsx:426 src/view/screens/ProfileList.tsx:439 +msgid "" +"There was an issue. Please check your internet connection and try again." msgstr "Hiba történt. Ellenőrizd az internetkapcsolatot, majd próbáld újra!" #: src/components/dialogs/GifSelect.tsx: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!" +msgid "" +"There was an unexpected issue in the application. Please let us know if this " +"happened to you!" msgstr "Váratlan alkalmazáshiba történt. Kérjük jelentsd!" #: src/screens/SignupQueued.tsx:112 -msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." -msgstr "Jelenleg rengeteg új felhasználó csatlakozik a Blueskyhoz. A fiókodat aktiválni fogjuk, amint tudjuk!" +msgid "" +"There's been a rush of new users to Bluesky! We'll activate your account as " +"soon as we can." +msgstr "" +"Jelenleg rengeteg új felhasználó csatlakozik a Blueskyhoz. A fiókodat " +"aktiválni fogjuk, amint tudjuk!" #: src/screens/Settings/FollowingFeedPreferences.tsx:55 msgid "These settings only apply to the Following feed." -msgstr "" +msgstr "Az alábbi beállítások csak a Követett hírfolyamra vonatkoznak." #: src/components/moderation/ScreenHider.tsx:111 msgid "This {screenDescription} has been flagged:" @@ -7138,8 +6868,12 @@ msgid "This account has requested that users sign in to view their profile." msgstr "Ez a fiók azt kérte, hogy a megtekintéséhez jelentkezz be." #: src/components/dms/BlockedByListDialog.tsx:34 -msgid "This account is blocked by one or more of your moderation lists. To unblock, please visit the lists directly and remove this user." -msgstr "Ezt a felhasználót legalább egy aktív moderálólista letiltotta. Ha szeretnéd feloldani a tiltását, akkor el kell távolítanod a listáról." +msgid "" +"This account is blocked by one or more of your moderation lists. To unblock, " +"please visit the lists directly and remove this user." +msgstr "" +"Ezt a felhasználót legalább egy aktív moderálólista letiltotta. Ha szeretnéd " +"feloldani a tiltását, akkor el kell távolítanod a listáról." #: src/components/moderation/LabelsOnMeDialog.tsx:246 msgid "This appeal will be sent to <0>{sourceName}." @@ -7159,62 +6893,93 @@ msgstr "Ezt a tartalmat a moderátorok elrejtették." #: src/lib/moderation/useGlobalLabelStrings.ts:24 msgid "This content has received a general warning from moderators." -msgstr "Ez a tartalom általános figyelmeztetéssel lett ellátva a moderátorok által." +msgstr "" +"Ez a tartalom általános figyelmeztetéssel lett ellátva a moderátorok által." #: src/components/dialogs/EmbedConsent.tsx:63 msgid "This content is hosted by {0}. Do you want to enable external media?" -msgstr "Ezt a tartalmat a(z) {0} üzemelteti. Szeretnéd engedélyezni a külső médiatartalmak megjelenítését?" +msgstr "" +"Ezt a tartalmat a(z) {0} üzemelteti. Szeretnéd engedélyezni a külső " +"médiatartalmak megjelenítését?" #: src/components/moderation/ModerationDetailsDialog.tsx:83 #: src/lib/moderation/useModerationCauseDescription.ts:82 -msgid "This content is not available because one of the users involved has blocked the other." -msgstr "Ez a tartalom jelenleg nem elérhető, mert az egyik kapcsolódó felhasználó letiltotta a másikat." +msgid "" +"This content is not available because one of the users involved has blocked " +"the other." +msgstr "" +"Ez a tartalom jelenleg nem elérhető, mert az egyik kapcsolódó felhasználó " +"letiltotta a másikat." #: src/view/com/posts/FeedErrorMessage.tsx:114 msgid "This content is not viewable without a Bluesky account." msgstr "Ezt a tartalmat bejelentkezés nélkül nem tekintheted meg." #: src/screens/Messages/components/ChatListItem.tsx:266 -msgid "This conversation is with a deleted or a deactivated account. Press for options." -msgstr "Ez a beszélgetés egy már törölt vagy deaktivált fiókkal történt. A lehetőségekhez kattints ide." +msgid "" +"This conversation is with a deleted or a deactivated account. Press for " +"options." +msgstr "" +"Ez a beszélgetés egy már törölt vagy deaktivált fiókkal történt. A " +"lehetőségekhez kattints ide." #: src/screens/Settings/components/ExportCarDialog.tsx:94 -msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." -msgstr "Kísérleti funkció. Az adattár-exportálásról bővebben <0>ebben a blogbejegyzésben olvashatsz." +msgid "" +"This feature is in beta. You can read more about repository exports in " +"<0>this blogpost." +msgstr "" +"Kísérleti funkció. Az adattár-exportálásról bővebben <0>ebben a " +"blogbejegyzésben olvashatsz." #: src/lib/strings/errors.ts:21 -msgid "This feature is not available while using an App Password. Please sign in with your main password." +msgid "" +"This feature is not available while using an App Password. Please sign in " +"with your main password." msgstr "" +"Jelenleg egy alkalmazásjelszóval vagy bejelentkezve. A funkció használatához " +"a valódi jelszavaddal kell bejelentkezned." #: src/view/com/posts/FeedErrorMessage.tsx:120 -msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." -msgstr "Ez a hírfolyam jelenleg rengeteg bejövő forgalmat tapasztal, ezért átmenetileg nem elérhető. Próbáld újra később!" +msgid "" +"This feed is currently receiving high traffic and is temporarily " +"unavailable. Please try again later." +msgstr "" +"Ez a hírfolyam jelenleg rengeteg bejövő forgalmat tapasztal, ezért " +"átmenetileg nem elérhető. Próbáld újra később!" #: src/view/com/posts/CustomFeedEmptyState.tsx:38 -msgid "This feed is empty! You may need to follow more users or tune your language settings." -msgstr "Ez a hírfolyam üres. Lehetséges, hogy nem követsz elég felhasználót vagy rosszul van beállítva a hírfolyam." +msgid "" +"This feed is empty! You may need to follow more users or tune your language " +"settings." +msgstr "" +"Ez a hírfolyam üres. Lehetséges, hogy nem követsz elég felhasználót vagy " +"rosszul van beállítva a hírfolyam." #: src/components/StarterPack/Main/PostsList.tsx:36 -#: src/view/screens/ProfileFeed.tsx:478 -#: src/view/screens/ProfileList.tsx:788 +#: src/view/screens/ProfileFeed.tsx:478 src/view/screens/ProfileList.tsx:788 msgid "This feed is empty." msgstr "Ez a hírfolyam üres." #: src/view/com/posts/FeedShutdownMsg.tsx:99 msgid "This feed is no longer online. We are showing <0>Discover instead." -msgstr "Ez a hírfolyam már nem elérhető. Helyette a <0>Felfedezés hírfolyamot mutatjuk." +msgstr "" +"Ez a hírfolyam már nem elérhető. Helyette a <0>Felfedezés hírfolyamot " +"mutatjuk." #: src/screens/Settings/components/ChangeHandleDialog.tsx:559 msgid "This handle is reserved. Please try a different one." -msgstr "" +msgstr "Ez a felhasználónév le van foglalva. Adj meg egy másikat!" #: src/components/dialogs/BirthDateSettings.tsx:40 msgid "This information is not shared with other users." msgstr "Ezt az információt nem osztjuk meg más felhasználókkal." #: src/view/com/modals/VerifyEmail.tsx:127 -msgid "This is important in case you ever need to change your email or reset your password." -msgstr "Ez fontos, ha a jövőben megváltoztatnád az email-címed vagy a jelszavad." +msgid "" +"This is important in case you ever need to change your email or reset your " +"password." +msgstr "" +"Ez fontos, ha a jövőben megváltoztatnád az email-címed vagy a jelszavad." #: src/components/moderation/ModerationDetailsDialog.tsx:151 msgid "This label was applied by <0>{0}." @@ -7229,61 +6994,89 @@ msgid "This label was applied by you." msgstr "Saját feljegyzés." #: src/screens/Profile/Sections/Labels.tsx:188 -msgid "This labeler hasn't declared what labels it publishes, and may not be active." -msgstr "Ez a feljegyző nem jelentette ki a feljegyzési kategóriáit, ezért lehet, hogy nem aktív." +msgid "" +"This labeler hasn't declared what labels it publishes, and may not be active." +msgstr "" +"Ez a feljegyző nem jelentette ki a feljegyzési kategóriáit, ezért lehet, " +"hogy nem aktív." #: src/view/com/modals/LinkWarning.tsx:72 msgid "This link is taking you to the following website:" msgstr "Ez a hivatkozás az alábbi honlapra mutat:" #: src/screens/List/ListHiddenScreen.tsx:136 -msgid "This list - created by <0>{0} - contains possible violations of Bluesky's community guidelines in its name or description." -msgstr "Ennek a(z) <0>{0} által létrehozott listának a címe vagy leírása lehetséges, hogy megsérti a Bluesky közösségi irányelveit." +msgid "" +"This list - created by <0>{0} - contains possible violations of " +"Bluesky's community guidelines in its name or description." +msgstr "" +"Ennek a(z) <0>{0} által létrehozott listának a címe vagy leírása " +"lehetséges, hogy megsérti a Bluesky közösségi irányelveit." #: src/view/screens/ProfileList.tsx:966 msgid "This list is empty!" msgstr "Ez a lista üres." #: src/screens/Profile/ErrorState.tsx:40 -msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." -msgstr "Ez a moderálási szolgáltatás jelenleg nem elérhető. A részleteket alább olvashatod. Ha a probléma fennáll, lépj velünk kapcsolatba!" - -#: src/view/com/modals/AddAppPasswords.tsx:110 -#~ msgid "This name is already in use" -#~ msgstr "Ez a név már foglalt" +msgid "" +"This moderation service is unavailable. See below for more details. If this " +"issue persists, contact us." +msgstr "" +"Ez a moderálási szolgáltatás jelenleg nem elérhető. A részleteket alább " +"olvashatod. Ha a probléma fennáll, lépj velünk kapcsolatba!" #: src/view/com/post-thread/PostThreadItem.tsx:836 -msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." +msgid "" +"This post claims to have been created on <0>{0}, but was first seen by " +"Bluesky on <1>{1}." msgstr "" +"A bejegyzés adatai szerint az eredeti létrehozási dátuma <0>{0} volt, de " +"először ekkor jelent meg a Blueskyon: <1>{1}" #: src/view/com/post-thread/PostThreadItem.tsx:147 msgid "This post has been deleted." msgstr "Ezt a bejegyzést törölték." -#: src/view/com/util/forms/PostDropdownBtn.tsx:700 +#: src/view/com/util/forms/PostDropdownBtn.tsx:733 #: src/view/com/util/post-ctrls/PostCtrls.tsx:352 -msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in." -msgstr "Ez a bejegyzés csak a bejelentkezett felhasználók számára látható; a kijelentkezett felhasználók számára nem." +msgid "" +"This post is only visible to logged-in users. It won't be visible to people " +"who aren't logged in." +msgstr "" +"Ez a bejegyzés csak a bejelentkezett felhasználók számára látható; a " +"kijelentkezett felhasználók számára nem." -#: src/view/com/util/forms/PostDropdownBtn.tsx:681 +#: src/view/com/util/forms/PostDropdownBtn.tsx:714 msgid "This post will be hidden from feeds and threads. This cannot be undone." -msgstr "Ez a bejegyzés el lesz rejtve a hírfolyamokból és a válaszláncokból. Ez a művelet nem vonható vissza." +msgstr "" +"Ez a bejegyzés el lesz rejtve a hírfolyamokból és a válaszláncokból. Ez a " +"művelet nem vonható vissza." #: src/view/com/composer/Composer.tsx:405 msgid "This post's author has disabled quote posts." msgstr "A szerző letiltotta az idézést." #: src/view/com/profile/ProfileMenu.tsx:350 -msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't logged in." -msgstr "Ez a profil csak a bejelentkezett felhasználók számára látható; a kijelentkezett felhasználók számára nem." +msgid "" +"This profile is only visible to logged-in users. It won't be visible to " +"people who aren't logged in." +msgstr "" +"Ez a profil csak a bejelentkezett felhasználók számára látható; a " +"kijelentkezett felhasználók számára nem." -#: src/view/com/util/forms/PostDropdownBtn.tsx:743 -msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." -msgstr "Ez a válasz egy rejtett részlegbe lesz sorolva a válaszláncok legalján és se Te, sem pedig mások nem fognak értesítéseket kapni a jövőbeli válaszokról." +#: src/view/com/util/forms/PostDropdownBtn.tsx:776 +msgid "" +"This reply will be sorted into a hidden section at the bottom of your thread " +"and will mute notifications for subsequent replies - both for yourself and " +"others." +msgstr "" +"Ez a válasz egy rejtett részlegbe lesz sorolva a válaszláncok legalján és se " +"Te, sem pedig mások nem fognak értesítéseket kapni a jövőbeli válaszokról." #: src/screens/Signup/StepInfo/Policies.tsx:37 msgid "This service has not provided terms of service or a privacy policy." -msgstr "Ez a szolgáltatás nem osztotta meg a felhasználási feltételeit vagy az adatvédelmi irányelveit." +msgstr "" +"Ez a szolgáltatás nem osztotta meg a felhasználási feltételeit vagy az " +"adatvédelmi irányelveit." #: src/screens/Settings/components/ChangeHandleDialog.tsx:437 msgid "This should create a domain record at:" @@ -7300,11 +7093,15 @@ msgstr "Ez a felhasználó letiltott Téged" #: src/components/moderation/ModerationDetailsDialog.tsx:78 #: src/lib/moderation/useModerationCauseDescription.ts:73 msgid "This user has blocked you. You cannot view their content." -msgstr "Ez a felhasználó letiltott Téged, ezért nem tekintheted meg a tartalmait." +msgstr "" +"Ez a felhasználó letiltott Téged, ezért nem tekintheted meg a tartalmait." #: src/lib/moderation/useGlobalLabelStrings.ts:30 -msgid "This user has requested that their content only be shown to signed-in users." -msgstr "Ez a felhasználó azt kérte, hogy a tartalmait csak bejelentkezett felhasználók számára mutassuk meg." +msgid "" +"This user has requested that their content only be shown to signed-in users." +msgstr "" +"Ez a felhasználó azt kérte, hogy a tartalmait csak bejelentkezett " +"felhasználók számára mutassuk meg." #: src/components/moderation/ModerationDetailsDialog.tsx:58 msgid "This user is included in the <0>{0} list which you have blocked." @@ -7312,27 +7109,37 @@ msgstr "Ez a felhasználó szerepel a(z) <0>{0} c. listán, amit letiltottá #: src/components/moderation/ModerationDetailsDialog.tsx:90 msgid "This user is included in the <0>{0} list which you have muted." -msgstr "Ez a felhasználó szerepel a(z) <0>{0} c. listán, amit elnémítottál." +msgstr "" +"Ez a felhasználó szerepel a(z) <0>{0} c. listán, amit elnémítottál." #: src/components/NewskieDialog.tsx:65 msgid "This user is new here. Press for more info about when they joined." -msgstr "Ez a felhasználó nemrég regisztrált. További információért koppints ide." +msgstr "" +"Ez a felhasználó nemrég regisztrált. További információért koppints ide." #: src/view/com/profile/ProfileFollows.tsx:96 msgid "This user isn't following anyone." msgstr "Ez a felhasználó még senkit sem követ." #: src/components/dialogs/MutedWords.tsx:435 -msgid "This will delete \"{0}\" from your muted words. You can always add it back later." -msgstr "Ezzel a(z) „{0}” kifejezés el lesz távolítva az elnémított szavak listájáról. Később bármikor újra felveheted." +msgid "" +"This will delete \"{0}\" from your muted words. You can always add it back " +"later." +msgstr "" +"Ezzel a(z) „{0}” kifejezés el lesz távolítva az elnémított szavak " +"listájáról. Később bármikor újra felveheted." #: src/screens/Settings/Settings.tsx:452 msgid "This will remove @{0} from the quick access list." msgstr "Ezzel @{0} el lesz távolítva a fióklistáról." -#: src/view/com/util/forms/PostDropdownBtn.tsx:733 -msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." -msgstr "Ezzel el fogod távolítani a bejegyzést az idézésből mindenki számára, ami egy helyőrzővel lesz helyettesítve." +#: src/view/com/util/forms/PostDropdownBtn.tsx:766 +msgid "" +"This will remove your post from this quote post for all users, and replace " +"it with a placeholder." +msgstr "" +"Ezzel el fogod távolítani a bejegyzést az idézésből mindenki számára, ami " +"egy helyőrzővel lesz helyettesítve." #: src/screens/Settings/ContentAndMediaSettings.tsx:49 #: src/screens/Settings/ContentAndMediaSettings.tsx:52 @@ -7345,23 +7152,29 @@ msgstr "Válaszláncok" #: src/screens/Settings/ThreadPreferences.tsx:129 msgid "Threaded mode" -msgstr "" - -#: src/view/screens/PreferencesThreads.tsx:114 -#~ msgid "Threaded Mode" -#~ msgstr "Beágyazott mód" +msgstr "Beágyazott mód" #: src/Navigation.tsx:307 msgid "Threads Preferences" msgstr "Válaszlánc-beállítások" #: src/screens/Settings/components/DisableEmail2FADialog.tsx:99 -msgid "To disable the email 2FA method, please verify your access to the email address." -msgstr "A kétlépcsős azonosítás kikapcsolásához vissza kell igazolnod az email-címedet." +msgid "" +"To disable the email 2FA method, please verify your access to the email " +"address." +msgstr "" +"A kétlépcsős azonosítás kikapcsolásához vissza kell igazolnod az email-" +"címedet." #: src/components/dms/ReportConversationPrompt.tsx:20 -msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue." -msgstr "Ha egy beszélgetést szeretnél jelenteni, kérjük egy konkrét üzenetet jelents a csevegési képernyőről. Ez segít a moderátorainknak megérteni a probléma szókörnyezetét." +msgid "" +"To report a conversation, please report one of its messages via the " +"conversation screen. This lets our moderators understand the context of your " +"issue." +msgstr "" +"Ha egy beszélgetést szeretnél jelenteni, kérjük egy konkrét üzenetet jelents " +"a csevegési képernyőről. Ez segít a moderátorainknak megérteni a probléma " +"szókörnyezetét." #: src/view/com/composer/videos/SelectVideoBtn.tsx:133 msgid "To upload videos to Bluesky, you must first verify your email." @@ -7383,8 +7196,7 @@ msgstr "Legördülő menü kibontása/összecsukása" msgid "Toggle to enable or disable adult content" msgstr "Felnőtt tartalmak ki-/bekapcsolása" -#: src/screens/Hashtag.tsx:87 -#: src/view/screens/Search/Search.tsx:511 +#: src/screens/Hashtag.tsx:87 src/view/screens/Search/Search.tsx:511 msgid "Top" msgstr "Felkapott" @@ -7392,8 +7204,8 @@ msgstr "Felkapott" #: src/components/dms/MessageMenu.tsx:105 #: src/view/com/post-thread/PostThreadItem.tsx:761 #: src/view/com/post-thread/PostThreadItem.tsx:764 -#: src/view/com/util/forms/PostDropdownBtn.tsx:422 -#: src/view/com/util/forms/PostDropdownBtn.tsx:424 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/forms/PostDropdownBtn.tsx:463 msgid "Translate" msgstr "Lefordítás" @@ -7406,13 +7218,9 @@ msgstr "Újra" msgid "TV" msgstr "Televízió" -#: src/view/screens/Settings/index.tsx:712 -#~ msgid "Two-factor authentication" -#~ msgstr "Kétlépcsős azonosítás" - #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:49 msgid "Two-factor authentication (2FA)" -msgstr "" +msgstr "Kétlépcsős azonosítás (2FA)" #: src/screens/Messages/components/MessageInput.tsx:148 msgid "Type your message here" @@ -7433,15 +7241,17 @@ msgstr "Lista némításának feloldása" #: src/lib/strings/errors.ts:11 msgid "Unable to connect. Please check your internet connection and try again." msgstr "" +"A kiszolgáló nem található. Ellenőrizd az internetkapcsolatot, majd próbáld " +"újra!" -#: src/screens/Login/ForgotPasswordForm.tsx:68 -#: src/screens/Login/index.tsx:76 +#: src/screens/Login/ForgotPasswordForm.tsx:68 src/screens/Login/index.tsx:76 #: src/screens/Login/LoginForm.tsx:152 -#: src/screens/Login/SetNewPasswordForm.tsx:71 -#: src/screens/Signup/index.tsx:71 +#: src/screens/Login/SetNewPasswordForm.tsx:71 src/screens/Signup/index.tsx:71 #: src/view/com/modals/ChangePassword.tsx:71 msgid "Unable to contact your service. Please check your Internet connection." -msgstr "A szolgáltatással való kapcsolatfelvétel meghiúsult. Ellenőrizd az internetkapcsolatot!" +msgstr "" +"A szolgáltatással való kapcsolatfelvétel meghiúsult. Ellenőrizd az " +"internetkapcsolatot!" #: src/screens/StarterPack/StarterPackScreen.tsx:649 msgid "Unable to delete" @@ -7463,8 +7273,7 @@ msgctxt "action" msgid "Unblock" msgstr "Tiltás feloldása" -#: src/components/dms/ConvoMenu.tsx:188 -#: src/components/dms/ConvoMenu.tsx:192 +#: src/components/dms/ConvoMenu.tsx:188 src/components/dms/ConvoMenu.tsx:192 msgid "Unblock account" msgstr "Fiók tiltásának feloldása" @@ -7502,8 +7311,7 @@ msgstr "Fiók követésének megszüntetése" msgid "Unlike this feed" msgstr "Mégse tetszik a hírfolyam" -#: src/components/TagMenu/index.tsx:248 -#: src/view/screens/ProfileList.tsx:692 +#: src/components/TagMenu/index.tsx:248 src/view/screens/ProfileList.tsx:692 msgid "Unmute" msgstr "Némítás feloldása" @@ -7524,14 +7332,15 @@ msgstr "Fiók némításának feloldása" #: src/components/TagMenu/index.tsx:204 msgid "Unmute all {displayTag} posts" -msgstr "Az összes {displayTag} címkével rendelkező bejegyzés némításának feloldása" +msgstr "" +"Az összes {displayTag} címkével rendelkező bejegyzés némításának feloldása" #: src/components/dms/ConvoMenu.tsx:176 msgid "Unmute conversation" msgstr "Beszélgetés némításának feloldása" -#: src/view/com/util/forms/PostDropdownBtn.tsx:507 -#: src/view/com/util/forms/PostDropdownBtn.tsx:512 +#: src/view/com/util/forms/PostDropdownBtn.tsx:546 +#: src/view/com/util/forms/PostDropdownBtn.tsx:550 msgid "Unmute thread" msgstr "Válaszlánc némításának feloldása" @@ -7539,8 +7348,7 @@ msgstr "Válaszlánc némításának feloldása" msgid "Unmute video" msgstr "Videó némításának feloldása" -#: src/view/screens/ProfileFeed.tsx:296 -#: src/view/screens/ProfileList.tsx:676 +#: src/view/screens/ProfileFeed.tsx:296 src/view/screens/ProfileList.tsx:676 msgid "Unpin" msgstr "Kitűzés feloldása" @@ -7548,8 +7356,8 @@ msgstr "Kitűzés feloldása" msgid "Unpin from home" msgstr "Kitűzés feloldása a kezdőlapról" -#: src/view/com/util/forms/PostDropdownBtn.tsx:397 -#: src/view/com/util/forms/PostDropdownBtn.tsx:404 +#: src/view/com/util/forms/PostDropdownBtn.tsx:436 +#: src/view/com/util/forms/PostDropdownBtn.tsx:443 msgid "Unpin from profile" msgstr "Kitűzés feloldása a profilodról" @@ -7594,17 +7402,13 @@ msgstr "<0>{displayName} listatagságának frissítése" #: src/screens/Settings/components/ChangeHandleDialog.tsx:495 #: src/screens/Settings/components/ChangeHandleDialog.tsx:516 msgid "Update to {domain}" -msgstr "" - -#: src/view/com/modals/ChangeHandle.tsx:495 -#~ msgid "Update to {handle}" -#~ msgstr "Frissítés erre: {handle}" +msgstr "Frissítés erre: {domain}" -#: src/view/com/util/forms/PostDropdownBtn.tsx:311 +#: src/view/com/util/forms/PostDropdownBtn.tsx:376 msgid "Updating quote attachment failed" msgstr "Az idézet leválasztása/visszakapcsolása meghiúsult" -#: src/view/com/util/forms/PostDropdownBtn.tsx:341 +#: src/view/com/util/forms/PostDropdownBtn.tsx:406 msgid "Updating reply visibility failed" msgstr "A válasz láthatóságának frissítése meghiúsult" @@ -7620,22 +7424,17 @@ msgstr "Fénykép feltöltése" msgid "Upload a text file to:" msgstr "Tölts fel ide egy szöveges fájlt:" -#: src/view/com/util/UserAvatar.tsx:371 -#: src/view/com/util/UserAvatar.tsx:374 -#: src/view/com/util/UserBanner.tsx:123 -#: src/view/com/util/UserBanner.tsx:126 +#: src/view/com/util/UserAvatar.tsx:371 src/view/com/util/UserAvatar.tsx:374 +#: src/view/com/util/UserBanner.tsx:123 src/view/com/util/UserBanner.tsx:126 msgid "Upload from Camera" msgstr "Feltöltés a kamerából" -#: src/view/com/util/UserAvatar.tsx:388 -#: src/view/com/util/UserBanner.tsx:140 +#: src/view/com/util/UserAvatar.tsx:388 src/view/com/util/UserBanner.tsx:140 msgid "Upload from Files" msgstr "Feltöltés a fájlkezelőből" -#: src/view/com/util/UserAvatar.tsx:382 -#: src/view/com/util/UserAvatar.tsx:386 -#: src/view/com/util/UserBanner.tsx:134 -#: src/view/com/util/UserBanner.tsx:138 +#: src/view/com/util/UserAvatar.tsx:382 src/view/com/util/UserAvatar.tsx:386 +#: src/view/com/util/UserBanner.tsx:134 src/view/com/util/UserBanner.tsx:138 msgid "Upload from Library" msgstr "Feltöltés a galériából" @@ -7643,8 +7442,7 @@ msgstr "Feltöltés a galériából" msgid "Uploading images..." msgstr "Képek feltöltése folyamatban…" -#: src/lib/api/index.ts:350 -#: src/lib/api/index.ts:374 +#: src/lib/api/index.ts:350 src/lib/api/index.ts:374 msgid "Uploading link thumbnail..." msgstr "Hivatkozás indexképének feltöltése folyamatban…" @@ -7652,21 +7450,14 @@ msgstr "Hivatkozás indexképének feltöltése folyamatban…" msgid "Uploading video..." msgstr "Videó feltöltése folyamatban…" -#: src/view/com/modals/ChangeHandle.tsx:395 -#~ msgid "Use a file on your server" -#~ msgstr "Fájl használata a saját kiszolgálóról" - -#: src/view/screens/AppPasswords.tsx:205 -#~ msgid "Use app passwords to login to other Bluesky clients without giving full access to your account or password." -#~ msgstr "Egy alkalmazásjelszó használatával bármely egyéb Bluesky-kliensbe bejelentkezhetsz, anélkül hogy teljes hozzáférést biztosítanál a fiókodhoz vagy a valódi jelszavadhoz." - #: src/screens/Settings/AppPasswords.tsx:59 -msgid "Use app passwords to sign in to other Bluesky clients without giving full access to your account or password." +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 "A bsky.social adattárszolgáltató használata" +"Egy alkalmazásjelszó használatával bármely egyéb Bluesky-kliensbe " +"bejelentkezhetsz, anélkül hogy teljes hozzáférést biztosítanál a fiókodhoz " +"vagy a valódi jelszavadhoz." #: src/screens/Settings/components/ChangeHandleDialog.tsx:528 msgid "Use default provider" @@ -7680,7 +7471,7 @@ msgstr "Alkalmazáson belüli böngésző használata" #: src/screens/Settings/ContentAndMediaSettings.tsx:75 #: src/screens/Settings/ContentAndMediaSettings.tsx:81 msgid "Use in-app browser to open links" -msgstr "" +msgstr "Hivatkozások megnyitása az alkalmazáson belüli böngészővel" #: src/view/com/modals/InAppBrowserConsent.tsx:63 #: src/view/com/modals/InAppBrowserConsent.tsx:65 @@ -7691,10 +7482,6 @@ msgstr "Alapértelmezett böngésző használata" msgid "Use recommended" msgstr "Javasolt beállítások használata" -#: src/view/com/modals/ChangeHandle.tsx:387 -#~ msgid "Use the DNS panel" -#~ msgstr "DNS-panel használata" - #: src/screens/Settings/components/AddAppPasswordDialog.tsx:190 msgid "Use this to sign into the other app along with your handle." msgstr "A másik alkalmazásba a felhasználóneveddel és ezzel jelentkezhetsz be." @@ -7765,8 +7552,7 @@ msgstr "Felhasználók" msgid "users followed by <0>@{0}" msgstr "felhasználót követ <0>@{0}" -#: src/screens/Messages/Settings.tsx:86 -#: src/screens/Messages/Settings.tsx:89 +#: src/screens/Messages/Settings.tsx:86 src/screens/Messages/Settings.tsx:89 msgid "Users I follow" msgstr "Csak a követett személyektől" @@ -7791,23 +7577,11 @@ msgstr "Email-cím-visszaigazolás szükséges" msgid "Verify DNS Record" msgstr "DNS-rekord ellenőrzése" -#: src/view/screens/Settings/index.tsx:937 -#~ msgid "Verify email" -#~ msgstr "Email-cím visszaigazolása" - #: src/components/dialogs/VerifyEmailDialog.tsx:134 #: src/components/intents/VerifyEmailIntentDialog.tsx:67 msgid "Verify email dialog" msgstr "Email-cím-visszaigazoló párbeszédablak" -#: src/view/screens/Settings/index.tsx:962 -#~ msgid "Verify my email" -#~ msgstr "Email-cím visszaigazolása" - -#: src/view/screens/Settings/index.tsx:971 -#~ msgid "Verify My Email" -#~ msgstr "Email-cím visszaigazolása" - #: src/view/com/modals/ChangeEmail.tsx:200 #: src/view/com/modals/ChangeEmail.tsx:202 msgid "Verify New Email" @@ -7825,7 +7599,7 @@ msgstr "Szöveges fájl ellenőrzése" #: src/screens/Settings/AccountSettings.tsx:68 #: src/screens/Settings/AccountSettings.tsx:84 msgid "Verify your email" -msgstr "" +msgstr "Email-cím visszaigazolása" #: src/components/dialogs/VerifyEmailDialog.tsx:85 #: src/view/com/modals/VerifyEmail.tsx:111 @@ -7835,11 +7609,7 @@ msgstr "Email-cím visszaigazolása" #: src/screens/Settings/AboutSettings.tsx:60 #: src/screens/Settings/AboutSettings.tsx:70 msgid "Version {appVersion}" -msgstr "" - -#: src/view/screens/Settings/index.tsx:890 -#~ msgid "Version {appVersion} {bundleInfo}" -#~ msgstr "Verziószám: {appVersion} {bundleInfo}" +msgstr "Verziószám: {appVersion}" #: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:84 #: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 @@ -7850,8 +7620,7 @@ msgstr "Videó" msgid "Video failed to process" msgstr "A videó feldolgozása meghiúsult" -#: src/screens/Onboarding/index.tsx:39 -#: src/screens/Onboarding/state.ts:90 +#: src/screens/Onboarding/index.tsx:39 src/screens/Onboarding/state.ts:90 msgid "Video Games" msgstr "Videojátékok" @@ -7891,7 +7660,8 @@ msgstr "{displayName} profiljának megtekintése" #: src/components/TagMenu/index.tsx:149 msgid "View all posts by @{authorHandle} with tag {displayTag}" -msgstr "@{authorHandle} {displayTag} címkével ellátott bejegyzéseinek megtekintése" +msgstr "" +"@{authorHandle} {displayTag} címkével ellátott bejegyzéseinek megtekintése" #: src/components/TagMenu/index.tsx:103 msgid "View all posts with tag {displayTag}" @@ -7930,8 +7700,7 @@ msgstr "További információ a feljegyzésekről" #: src/components/ProfileHoverCard/index.web.tsx:466 #: src/view/com/posts/AviFollowButton.tsx:55 #: src/view/com/posts/FeedErrorMessage.tsx:175 -#: src/view/com/util/PostMeta.tsx:79 -#: src/view/com/util/PostMeta.tsx:94 +#: src/view/com/util/PostMeta.tsx:79 src/view/com/util/PostMeta.tsx:94 msgid "View profile" msgstr "Profil megtekintése" @@ -8005,10 +7774,14 @@ msgstr "Reméljük, jól érzed magad! Ne feledd; a Bluesky:" #: src/view/com/posts/DiscoverFallbackHeader.tsx:30 msgid "We ran out of posts from your follows. Here's the latest from <0/>." -msgstr "Kifogytunk a követett felhasználók bejegyzéseiből. A további tartalom a(z) <0/> hírfolyamból származik." +msgstr "" +"Kifogytunk a követett felhasználók bejegyzéseiből. A további tartalom a(z) " +"<0/> hírfolyamból származik." #: src/view/com/composer/state/video.ts:430 -msgid "We were unable to determine if you are allowed to upload videos. Please try again." +msgid "" +"We were unable to determine if you are allowed to upload videos. Please try " +"again." msgstr "A videófeltöltési jogosultságod ellenőrzése meghiúsult. Próbáld újra!" #: src/components/dialogs/BirthDateSettings.tsx:51 @@ -8020,8 +7793,12 @@ msgid "We were unable to load your configured labelers at this time." msgstr "A feljegyzőid betöltése meghiúsult." #: src/screens/Onboarding/StepInterests/index.tsx:129 -msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." -msgstr "Megszakadt a kapcsolat. A folytatáshoz próbáld újra! Ha a probléma fennáll, kihagyhatod ezt a folyamatot." +msgid "" +"We weren't able to connect. Please try again to continue setting up your " +"account. If it continues to fail, you can skip this flow." +msgstr "" +"Megszakadt a kapcsolat. A folytatáshoz próbáld újra! Ha a probléma fennáll, " +"kihagyhatod ezt a folyamatot." #: src/screens/SignupQueued.tsx:143 msgid "We will let you know when your account is ready." @@ -8035,38 +7812,47 @@ msgstr "Ezeket az adatokat az élményed testreszabására fogjuk felhasználni. msgid "We're having network issues, try again" msgstr "Hálózati hiba történt. Próbáld újra!" -#: src/components/dialogs/nuxs/NeueTypography.tsx:54 -#~ msgid "We're introducing a new theme font, along with adjustable font sizing." -#~ msgstr "Elérhetővé vált egy új témabetűtípus és a betűméret testreszabhatósága." - #: src/screens/Signup/index.tsx:94 msgid "We're so excited to have you join us!" msgstr "Örvendünk, hogy megismerhetünk!" #: src/view/screens/ProfileList.tsx:113 -msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." -msgstr "Sajnáljuk, de a lista lekérése meghiúsult. Ha a probléma fennáll, vedd fel a kapcsolatot a lista szerzőjével: @{handleOrDid}" +msgid "" +"We're sorry, but we were unable to resolve this list. If this persists, " +"please contact the list creator, @{handleOrDid}." +msgstr "" +"Sajnáljuk, de a lista lekérése meghiúsult. Ha a probléma fennáll, vedd fel a " +"kapcsolatot a lista szerzőjével: @{handleOrDid}" #: src/components/dialogs/MutedWords.tsx:378 -msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." -msgstr "Sajnáljuk, de az elnémított szavak listájának betöltése meghiúsult. Próbáld újra!" +msgid "" +"We're sorry, but we weren't able to load your muted words at this time. " +"Please try again." +msgstr "" +"Sajnáljuk, de az elnémított szavak listájának betöltése meghiúsult. Próbáld " +"újra!" #: src/view/screens/Search/Search.tsx:212 -msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." +msgid "" +"We're sorry, but your search could not be completed. Please try again in a " +"few minutes." msgstr "Sajnáljuk, de a keresés meghiúsult. Próbáld újra egy pár percen belül!" #: src/view/com/composer/Composer.tsx:402 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Sajnáljuk, de törölték a bejegyzést, amire válaszolnál." -#: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:50 +#: src/components/Lists.tsx:220 src/view/screens/NotFound.tsx:50 msgid "We're sorry! We can't find the page you were looking for." msgstr "Sajnáljuk, de a keresett oldal nem található." #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:341 -msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." -msgstr "Sajnáljuk, de egyszerre csak 20 feljegyzőre iratkozhatsz fel és elérted ezt a korlátot." +msgid "" +"We're sorry! You can only subscribe to twenty labelers, and you've reached " +"your limit of twenty." +msgstr "" +"Sajnáljuk, de egyszerre csak 20 feljegyzőre iratkozhatsz fel és elérted ezt " +"a korlátot." #: src/screens/Deactivated.tsx:131 msgid "Welcome back!" @@ -8096,7 +7882,9 @@ msgstr "Milyen nyelvek fordulnak elő ebben a bejegyzésben?" #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:78 msgid "Which languages would you like to see in your algorithmic feeds?" -msgstr "Mely nyelveken szeretnél bejegyzéseket látni az algoritmusalapú hírfolyamokban?" +msgstr "" +"Mely nyelveken szeretnél bejegyzéseket látni az algoritmusalapú " +"hírfolyamokban?" #: src/components/WhoCanReply.tsx:179 msgid "Who can interact with this post?" @@ -8106,8 +7894,7 @@ msgstr "Kapcsolatbalépési információ" msgid "Who can reply" msgstr "Ki válaszolhat?" -#: src/screens/Home/NoFeedsPinned.tsx:79 -#: src/screens/Messages/ChatList.tsx:183 +#: src/screens/Home/NoFeedsPinned.tsx:79 src/screens/Messages/ChatList.tsx:183 msgid "Whoops!" msgstr "Hoppá!" @@ -8153,14 +7940,13 @@ msgstr "Bejegyzés írása" msgid "Write your reply" msgstr "Válasz írása" -#: src/screens/Onboarding/index.tsx:25 -#: src/screens/Onboarding/state.ts:103 +#: src/screens/Onboarding/index.tsx:25 src/screens/Onboarding/state.ts:103 msgid "Writers" msgstr "Írók" #: src/screens/Settings/components/ChangeHandleDialog.tsx:337 msgid "Wrong DID returned from server. Received: {0}" -msgstr "" +msgstr "A kiszolgáló helytelen DID-t adott vissza. Válasz: {0}" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:78 msgid "Yes" @@ -8175,11 +7961,11 @@ msgstr "Igen – deaktiválás" msgid "Yes, delete this starter pack" msgstr "Igen – kezdőcsomag törlése" -#: src/view/com/util/forms/PostDropdownBtn.tsx:736 +#: src/view/com/util/forms/PostDropdownBtn.tsx:769 msgid "Yes, detach" msgstr "Igen – leválasztás" -#: src/view/com/util/forms/PostDropdownBtn.tsx:746 +#: src/view/com/util/forms/PostDropdownBtn.tsx:779 msgid "Yes, hide" msgstr "Igen – elrejtés" @@ -8211,31 +7997,37 @@ msgstr "Nincs jogosultságod a videófeltöltésre." msgid "You are not following anyone." msgstr "Még senkit sem követsz." -#: src/components/dialogs/nuxs/NeueTypography.tsx:61 -#~ msgid "You can adjust these in your Appearance Settings later." -#~ msgstr "A megjelenési beállításokat később is módosíthatod." - #: src/view/com/posts/FollowingEmptyState.tsx:63 #: src/view/com/posts/FollowingEndOfFeed.tsx:64 msgid "You can also discover new Custom Feeds to follow." msgstr "Új egyéni hírfolyamokat is felfedezhetsz." #: src/view/com/modals/DeleteAccount.tsx:202 -msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." -msgstr "Ha szeretnéd, átmenetileg deaktiválhatod a fiókod, amit aztán bármikor újraaktiválhatsz." +msgid "" +"You can also temporarily deactivate your account instead, and reactivate it " +"at any time." +msgstr "" +"Ha szeretnéd, átmenetileg deaktiválhatod a fiókod, amit aztán bármikor " +"újraaktiválhatsz." #: src/screens/Messages/Settings.tsx:105 -msgid "You can continue ongoing conversations regardless of which setting you choose." -msgstr "A már létező csevegéseket a fenti beállításoktól függetlenül folytathatod." +msgid "" +"You can continue ongoing conversations regardless of which setting you " +"choose." +msgstr "" +"A már létező csevegéseket a fenti beállításoktól függetlenül folytathatod." -#: src/screens/Login/index.tsx:155 -#: src/screens/Login/PasswordUpdatedForm.tsx:27 +#: src/screens/Login/index.tsx:155 src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "Mostantól bejelentkezhetsz az új jelszóval." #: src/screens/Deactivated.tsx:139 -msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." -msgstr "A bejelentkezés folytatásához újraaktiválhatod a fiókodat. Ezek után a profilod és a bejegyzéseid ismét láthatóak lesznek más felhasználók számára." +msgid "" +"You can reactivate your account to continue logging in. Your profile and " +"posts will be visible to other users." +msgstr "" +"A bejelentkezés folytatásához újraaktiválhatod a fiókodat. Ezek után a " +"profilod és a bejegyzéseid ismét láthatóak lesznek más felhasználók számára." #: src/view/com/profile/ProfileFollowers.tsx:95 msgid "You do not have any followers." @@ -8246,8 +8038,12 @@ msgid "You don't follow any users who follow @{name}." msgstr "Egy olyan felhasználót sem követsz, aki követné őt: @{name}." #: src/view/com/modals/InviteCodes.tsx:67 -msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." -msgstr "Még egy meghívókóddal sem rendelkezel. Majd küldünk néhányat, ha már hosszabb ideje leszel a Blueskyon." +msgid "" +"You don't have any invite codes yet! We'll send you some when you've been on " +"Bluesky for a little longer." +msgstr "" +"Még egy meghívókóddal sem rendelkezel. Majd küldünk néhányat, ha már " +"hosszabb ideje leszel a Blueskyon." #: src/view/screens/SavedFeeds.tsx:144 msgid "You don't have any pinned feeds." @@ -8269,7 +8065,8 @@ msgstr "Letiltottad ezt a felhasználót" #: src/lib/moderation/useModerationCauseDescription.ts:55 #: src/lib/moderation/useModerationCauseDescription.ts:63 msgid "You have blocked this user. You cannot view their content." -msgstr "Letiltottad ezt a felhasználót, ezért nem tekintheted meg a tartalmait." +msgstr "" +"Letiltottad ezt a felhasználót, ezért nem tekintheted meg a tartalmait." #: src/screens/Login/SetNewPasswordForm.tsx:48 #: src/screens/Login/SetNewPasswordForm.tsx:85 @@ -8303,29 +8100,35 @@ msgstr "Még senkivel sem kezdtél el beszélgetni. Hajrá!" msgid "You have no feeds." msgstr "A nyilvános hírfolyamgyűjteményed üres." -#: src/view/com/lists/MyLists.tsx:90 -#: src/view/com/lists/ProfileLists.tsx:134 +#: src/view/com/lists/MyLists.tsx:90 src/view/com/lists/ProfileLists.tsx:134 msgid "You have no lists." msgstr "Még nincsenek listáid." #: src/view/screens/ModerationBlockedAccounts.tsx:133 -msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account." -msgstr "Még egy fiókot sem tiltottál le. Ha szeretnél egy fiókot letiltani, akkor nyisd meg a profilját és a menüből válaszd ki a „Fiók letiltása” lehetőséget." - -#: src/view/screens/AppPasswords.tsx:96 -#~ msgid "You have not created any app passwords yet. You can create one by pressing the button below." -#~ msgstr "Jelenleg nem rendelkezel egy alkalmazásjelszóval sem. Az alábbi gombbal létrehozhatsz egyet." +msgid "" +"You have not blocked any accounts yet. To block an account, go to their " +"profile and select \"Block account\" from the menu on their account." +msgstr "" +"Még egy fiókot sem tiltottál le. Ha szeretnél egy fiókot letiltani, akkor " +"nyisd meg a profilját és a menüből válaszd ki a „Fiók letiltása” lehetőséget." #: src/view/screens/ModerationMutedAccounts.tsx:132 -msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." -msgstr "Még egy fiókot sem némítottál el. Ha szeretnél egy fiókot elnémítani, akkor nyisd meg a profilját és a menüből válaszd ki a „Fiók elnémítása” lehetőséget." +msgid "" +"You have not muted any accounts yet. To mute an account, go to their profile " +"and select \"Mute account\" from the menu on their account." +msgstr "" +"Még egy fiókot sem némítottál el. Ha szeretnél egy fiókot elnémítani, akkor " +"nyisd meg a profilját és a menüből válaszd ki a „Fiók elnémítása” " +"lehetőséget." #: src/components/Lists.tsx:52 msgid "You have reached the end" msgstr "Elérted a hírfolyam végét" #: src/lib/media/video/upload.shared.ts:56 -msgid "You have temporarily reached the limit for video uploads. Please try again later." +msgid "" +"You have temporarily reached the limit for video uploads. Please try again " +"later." msgstr "Átmenetileg elérted a videófeltöltési korlátot. Próbáld újra később!" #: src/components/StarterPack/ProfileStarterPacks.tsx:241 @@ -8343,11 +8146,15 @@ msgstr "Elrejtetted ezt a választ." #: src/components/moderation/LabelsOnMeDialog.tsx:78 msgid "You may appeal non-self labels if you feel they were placed in error." -msgstr "A nem saját magad által alkalmazott feljegyzéseket lehetőséged van fellebbezni, ha úgy gondolod, hogy tévedésből kerültek fel." +msgstr "" +"A nem saját magad által alkalmazott feljegyzéseket lehetőséged van " +"fellebbezni, ha úgy gondolod, hogy tévedésből kerültek fel." #: src/components/moderation/LabelsOnMeDialog.tsx:83 msgid "You may appeal these labels if you feel they were placed in error." -msgstr "Lehetőséged van a fellebbezésre, ha úgy gondolod, hogy a feljegyzéseket tévedésből alkalmazták." +msgstr "" +"Lehetőséged van a fellebbezésre, ha úgy gondolod, hogy a feljegyzéseket " +"tévedésből alkalmazták." #: src/screens/StarterPack/Wizard/State.tsx:79 msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles" @@ -8366,16 +8173,20 @@ msgid "You must be 13 years of age or older to sign up." msgstr "A regisztrációhoz legalább 13 évesnek kell lenned." #: src/components/StarterPack/ProfileStarterPacks.tsx:324 -msgid "You must be following at least seven other people to generate a starter pack." -msgstr "Egy kezdőcsomag létrehozásához legalább hét különböző személyt követned kell." +msgid "" +"You must be following at least seven other people to generate a starter pack." +msgstr "" +"Egy kezdőcsomag létrehozásához legalább hét különböző személyt követned kell." #: src/components/StarterPack/QrCodeDialog.tsx:60 msgid "You must grant access to your photo library to save a QR code" -msgstr "A QR-kód mentéséhez először hozzáférést kell biztosítanod a fényképeidhez" +msgstr "" +"A QR-kód mentéséhez először hozzáférést kell biztosítanod a fényképeidhez" #: src/components/StarterPack/ShareDialog.tsx:69 msgid "You must grant access to your photo library to save the image." -msgstr "A kép mentéséhez először hozzáférést kell biztosítanod a fényképeidhez." +msgstr "" +"A kép mentéséhez először hozzáférést kell biztosítanod a fényképeidhez." #: src/components/ReportDialog/SubmitView.tsx:210 msgid "You must select at least one labeler for a report" @@ -8387,19 +8198,23 @@ msgstr "Korábban deaktiváltad a(z) @{0} fiókot." #: src/screens/Settings/Settings.tsx:249 msgid "You will be signed out of all your accounts." -msgstr "" +msgstr "Ezzel az összes fiókból ki fogsz jelentkezni." -#: src/view/com/util/forms/PostDropdownBtn.tsx:222 +#: src/view/com/util/forms/PostDropdownBtn.tsx:287 msgid "You will no longer receive notifications for this thread" msgstr "Mostantól nem fogsz értesítéseket kapni erről a válaszláncról" -#: src/view/com/util/forms/PostDropdownBtn.tsx:218 +#: src/view/com/util/forms/PostDropdownBtn.tsx:283 msgid "You will now receive notifications for this thread" msgstr "Mostantól fogsz értesítéseket kapni erről a válaszláncról" #: src/screens/Login/SetNewPasswordForm.tsx:98 -msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." -msgstr "Kapni fogsz egy „helyreállítási kódot” tartalmazó emailt. Ezt a kódot itt kell megadnod a jelszó megváltoztatásához." +msgid "" +"You will receive an email with a \"reset code.\" Enter that code here, then " +"enter your new password." +msgstr "" +"Kapni fogsz egy „helyreállítási kódot” tartalmazó emailt. Ezt a kódot itt " +"kell megadnod a jelszó megváltoztatásához." #: src/screens/Messages/components/ChatListItem.tsx:124 msgid "You: {0}" @@ -8414,11 +8229,16 @@ msgid "You: {short}" msgstr "Te: {short}" #: src/screens/Signup/index.tsx:107 -msgid "You'll follow the suggested users and feeds once you finish creating your account!" -msgstr "Az ajánlott felhasználókat és hírfolyamokat a regisztráció befejeztétől fogva követni fogod." +msgid "" +"You'll follow the suggested users and feeds once you finish creating your " +"account!" +msgstr "" +"Az ajánlott felhasználókat és hírfolyamokat a regisztráció befejeztétől " +"fogva követni fogod." #: src/screens/Signup/index.tsx:112 -msgid "You'll follow the suggested users once you finish creating your account!" +msgid "" +"You'll follow the suggested users once you finish creating your account!" msgstr "A fiókod elkészültével követni fogod a javasolt felhasználókat!" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:232 @@ -8431,22 +8251,26 @@ msgstr "Ezeket a személyeket rögtön követni fogod" #: src/components/dialogs/VerifyEmailDialog.tsx:178 msgid "You'll receive an email at <0>{0} to verify it's you." -msgstr "Kapni fogsz egy emailt a(z) <0>{0} címre, hogy ellenőrizhessük a kiléted." +msgstr "" +"Kapni fogsz egy emailt a(z) <0>{0} címre, hogy ellenőrizhessük a kiléted." #: src/screens/StarterPack/StarterPackLandingScreen.tsx:270 msgid "You'll stay updated with these feeds" msgstr "Ezek a hírfolyamok naprakészen tartanak." -#: src/screens/SignupQueued.tsx:93 -#: src/screens/SignupQueued.tsx:94 +#: src/screens/SignupQueued.tsx:93 src/screens/SignupQueued.tsx:94 #: src/screens/SignupQueued.tsx:109 msgid "You're in line" msgstr "Sorban állsz" #: src/screens/Deactivated.tsx:89 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:54 -msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account." -msgstr "Jelenleg egy alkalmazásjelszóval vagy bejelentkezve. A fiókod deaktiválásához a valódi jelszavaddal kell bejelentkezned." +msgid "" +"You're logged in with an App Password. Please log in with your main password " +"to continue deactivating your account." +msgstr "" +"Jelenleg egy alkalmazásjelszóval vagy bejelentkezve. A fiókod " +"deaktiválásához a valódi jelszavaddal kell bejelentkezned." #: src/screens/Onboarding/StepFinished.tsx:231 msgid "You're ready to go!" @@ -8478,20 +8302,32 @@ msgid "Your account has been deleted" msgstr "Törölted a fiókodat" #: src/view/com/composer/state/video.ts:442 -msgid "Your account is not yet old enough to upload videos. Please try again later." -msgstr "A fiókod még nem elég idős a videók feltöltéséhez. Próbáld újra később!" +msgid "" +"Your account is not yet old enough to upload videos. Please try again later." +msgstr "" +"A fiókod még nem elég idős a videók feltöltéséhez. Próbáld újra később!" #: src/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 "A fiókod adattára, ami az összes nyilvános adatodat tartalmazza, letölthető egy „CAR” fájlként. Ez a fájl nem tartalmazza a beágyazott médiatartalmakat (pl.: képeket), sem pedig a személyes adataidat, amit külön kell lekérned." +msgid "" +"Your account repository, containing all public data records, can be " +"downloaded as a \"CAR\" file. This file does not include media embeds, such " +"as images, or your private data, which must be fetched separately." +msgstr "" +"A fiókod adattára, ami az összes nyilvános adatodat tartalmazza, letölthető " +"egy „CAR” fájlként. Ez a fájl nem tartalmazza a beágyazott médiatartalmakat " +"(pl.: képeket), sem pedig a személyes adataidat, amit külön kell lekérned." #: src/screens/Signup/StepInfo/index.tsx:211 msgid "Your birth date" msgstr "Születési dátum" #: src/view/com/util/post-embeds/VideoEmbed.web.tsx:171 -msgid "Your browser does not support the video format. Please try a different browser." -msgstr "A jelenlegi böngésződ nem támogatja ezt a videóformátumot. Próbáld meg egy másik böngészőben!" +msgid "" +"Your browser does not support the video format. Please try a different " +"browser." +msgstr "" +"A jelenlegi böngésződ nem támogatja ezt a videóformátumot. Próbáld meg egy " +"másik böngészőben!" #: src/screens/Messages/components/ChatDisabled.tsx:25 msgid "Your chats have been disabled" @@ -8499,30 +8335,41 @@ msgstr "Megfosztottak a csevegési jogosultságodtól" #: src/view/com/modals/InAppBrowserConsent.tsx:44 msgid "Your choice will be saved, but can be changed later in settings." -msgstr "Ezt most elmentjük, de a beállításokban később bármikor megváltoztathatod." +msgstr "" +"Ezt most elmentjük, de a beállításokban később bármikor megváltoztathatod." -#: src/screens/Login/ForgotPasswordForm.tsx:51 -#: src/screens/Signup/state.ts:203 +#: src/screens/Login/ForgotPasswordForm.tsx:51 src/screens/Signup/state.ts:203 #: src/screens/Signup/StepInfo/index.tsx:108 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "Az email-címed érvénytelen." #: src/view/com/modals/ChangeEmail.tsx:120 -msgid "Your email has been updated but not verified. As a next step, please verify your new email." -msgstr "Frissítetted az email-címed, viszont még nem igazoltad vissza. A következő lépésben tedd ezt meg!" +msgid "" +"Your email has been updated but not verified. As a next step, please verify " +"your new email." +msgstr "" +"Frissítetted az email-címed, viszont még nem igazoltad vissza. A következő " +"lépésben tedd ezt meg!" #: src/view/com/modals/VerifyEmail.tsx:122 -msgid "Your email has not yet been verified. This is an important security step which we recommend." -msgstr "Az email-címed még nincs visszaigazolva. Ez egy fontos biztonsági lépés, amelynek javasoljuk az elvégzését." +msgid "" +"Your email has not yet been verified. This is an important security step " +"which we recommend." +msgstr "" +"Az email-címed még nincs visszaigazolva. Ez egy fontos biztonsági lépés, " +"amelynek javasoljuk az elvégzését." #: src/state/shell/progress-guide.tsx:156 msgid "Your first like!" msgstr "Az első kedvelésed!" #: src/view/com/posts/FollowingEmptyState.tsx:43 -msgid "Your following feed is empty! Follow more users to see what's happening." -msgstr "A Követett hírfolyamod üres. Kövess több felhasználót, hogy lásd, mi történik!" +msgid "" +"Your following feed is empty! Follow more users to see what's happening." +msgstr "" +"A Követett hírfolyamod üres. Kövess több felhasználót, hogy lásd, mi " +"történik!" #: src/screens/Signup/StepHandle.tsx:125 msgid "Your full handle will be" @@ -8546,19 +8393,20 @@ msgstr "Közzétetted a bejegyzést" #: src/view/com/composer/Composer.tsx:459 msgid "Your posts have been published" -msgstr "" +msgstr "Közzétetted a bejegyzéseket" #: src/screens/Onboarding/StepFinished.tsx:246 msgid "Your posts, likes, and blocks are public. Mutes are private." -msgstr "A bejegyzéseid, kedveléseid és letiltásaid nyilvánosak. Az elnémítások nem." - -#: src/view/screens/Settings/index.tsx:119 -#~ msgid "Your profile" -#~ msgstr "Saját profil" +msgstr "" +"A bejegyzéseid, kedveléseid és letiltásaid nyilvánosak. Az elnémítások nem." #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 -msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." -msgstr "A profilod, bejegyzéseid, hírfolyamaid és listáid mostantól el vannak rejtve a többi Bluesky-felhasználó elől. A fiókod újraaktiválásához jelentkezz be!" +msgid "" +"Your profile, posts, feeds, and lists will no longer be visible to other " +"Bluesky users. You can reactivate your account at any time by logging in." +msgstr "" +"A profilod, bejegyzéseid, hírfolyamaid és listáid mostantól el vannak rejtve " +"a többi Bluesky-felhasználó elől. A fiókod újraaktiválásához jelentkezz be!" #: src/view/com/composer/Composer.tsx:461 msgid "Your reply has been published" @@ -8571,3 +8419,500 @@ msgstr "Ez a jelentés a Bluesky moderálási szolgáltatásának lesz elküldve #: src/screens/Signup/index.tsx:142 msgid "Your user handle" msgstr "Saját felhasználónév" + +#~ msgid "" +#~ "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" +#~ msgstr "{formattedCount} további" + +#~ msgid "" +#~ "<0>Not Applicable. This warning is only available for posts with " +#~ "media attached." +#~ msgstr "" +#~ "<0>Nem alkalmazható. Ez a figyelmeztetés csak a csatolt " +#~ "médiatartalommal rendelkező bejegyzésekhez használható fel." + +#~ msgid "Accessibility settings" +#~ msgstr "Kisegítő lehetőségek" + +#~ msgid "" +#~ "App Password names can only contain letters, numbers, spaces, dashes, and " +#~ "underscores." +#~ msgstr "" +#~ "Egy alkalmazásjelszó neve csak az angol ábécé betűit, számokat, " +#~ "szóközöket, kötőjeleket és alsókötőjeleket tartalmazhat." + +#~ msgid "App Password names must be at least 4 characters long." +#~ msgstr "Egy alkalmazásjelszónak legalább 4-karakter hosszúnak kell lennie." + +#~ msgid "App password settings" +#~ msgstr "Alkalmazásjelszó-beállítások" + +#~ msgid "Appearance settings" +#~ msgstr "Megjelenítési beállítások" + +#~ msgid "Appearance Settings" +#~ msgstr "Megjelenítési beállítások" + +#~ msgid "Are you sure you want to delete the app password \"{name}\"?" +#~ msgstr "Biztosan törölni akarod a(z) „{name}” nevű alkalmazásjelszót?" + +#~ msgid "Basics" +#~ msgstr "Alapbeállítások" + +#~ msgid "Birthday:" +#~ msgstr "Születésnap" + +#~ msgid "" +#~ "Can only contain letters, numbers, spaces, dashes, and underscores. Must " +#~ "be at least 4 characters long, but no more than 32 characters long." +#~ msgstr "" +#~ "A jelszó neve csak az angol ábécé betűit, számokat, szóközöket, " +#~ "kötőjeleket és alsókötőjeleket tartalmazhat. Legalább 4, de legfeljebb 32 " +#~ "karakter hosszú lehet." + +#~ msgid "Cancel change handle" +#~ msgstr "Felhasználónévváltás megszakítása" + +#~ msgctxt "action" +#~ msgid "Change" +#~ msgstr "Megváltoztatás" + +#~ msgid "Change handle" +#~ msgstr "Felhasználónév megváltoztatása" + +#~ msgid "Change password" +#~ msgstr "Jelszó megváltoztatása" + +#~ msgid "Clears all storage data" +#~ msgstr "Az összes adat törlése" + +#~ msgid "Closes post composer and discards post draft" +#~ msgstr "Bejegyzésíró bezárása és a piszkozat elvetése" + +#~ msgid "Copies app password" +#~ msgstr "Alkalmazásjelszó másolása" + +#~ msgid "Copy {0}" +#~ msgstr "{0} másolása" + +#~ msgid "Create a new Bluesky account" +#~ msgstr "Új Bluesky-fiók létrehozása" + +#~ msgid "Create App Password" +#~ msgstr "Alkalmazásjelszó létrehozása" + +#~ msgid "Custom domain" +#~ msgstr "Egyéni tartomány" + +#~ msgid "Customize media from external sites." +#~ msgstr "A külső forrásból származó médiatartalmak testreszabása." + +#~ msgid "Deactivate my account" +#~ msgstr "Fiók deaktiválása" + +#~ msgid "Delete My Account…" +#~ msgstr "Fiók törlése…" + +#~ msgid "Deletes the chat declaration record" +#~ msgstr "Csevegéskijelentési jegyzőkönyv ürítése" + +#~ msgid "Did you want to say anything?" +#~ msgstr "Szeretnél mondani valamit?" + +#~ msgid "Disable autoplay for videos and GIFs" +#~ msgstr "Videók és GIF-ek automatikus lejátszásának letiltása" + +#~ msgid "Does not contain adult content." +#~ msgstr "Nem ábrázol felnőtt tartalmakat." + +#~ msgid "Does not contain graphic or disturbing content." +#~ msgstr "Nem tartalmaz a nyugalom megzavarására alkalmas tartalmakat." + +#~ msgid "Domain Value" +#~ msgstr "Tartományérték" + +#~ msgid "Email:" +#~ msgstr "Email-cím:" + +#~ msgid "Enter a name for this App Password" +#~ msgstr "Alkalmazásjelszó nevének megadása" + +#~ msgid "Exits handle change process" +#~ msgstr "Felhasználónévváltás megszakítása" + +#~ msgid "" +#~ "Experimental: When this preference is enabled, you'll only receive reply " +#~ "and quote notifications from users you follow. We'll continue to add more " +#~ "controls here over time." +#~ msgstr "" +#~ "Kísérleti: Ha ez a funkció engedélyezve van, akkor csak az általad " +#~ "követett felhasználók válaszairól és idézéseiről fogsz értesítést kapni. " +#~ "Ezeket a beállításokat idővel bővíteni fogjuk." + +#~ msgid "External media settings" +#~ msgstr "Külső médiatartalmak" + +#~ msgid "Failed to create app password." +#~ msgstr "Az alkalmazásjelszó létrehozása meghiúsult." + +#~ msgid "" +#~ "Failed to save post interaction settings. Your post was created but users " +#~ "may be able to interact with it." +#~ msgstr "" +#~ "A kapcsolatbalépési beállítások mentése meghiúsult. A bejegyzés " +#~ "létrejött, de lehetséges, hogy nem kívánt felhasználók is kapcsolatba " +#~ "léphetnek vele." + +#~ msgid "File Contents" +#~ msgstr "A fájl tartalmának" + +#~ msgid "Fine-tune the content you see on your Following feed." +#~ msgstr "A Követett hírfolyam tartalmának személyre szabása." + +#~ msgid "Fine-tune the discussion threads." +#~ msgstr "Válaszláncok személyre szabása." + +#~ msgid "followed you" +#~ msgstr "mostantól követ Téged" + +#~ msgid "followed you back" +#~ msgstr "kölcsönözte a követésedet" + +#~ msgid "" +#~ "For security reasons, you won't be able to view this again. If you lose " +#~ "this password, you'll need to generate a new one." +#~ msgstr "" +#~ "Biztonsági okokból ezt többé nem tekintheted meg. Ha elveszted ezt a " +#~ "jelszót, akkor újat kell létrehoznod." + +#~ msgid "Here is your app password." +#~ msgstr "Elkészült az alkalmazásjelszó." + +#~ msgid "If none are selected, suitable for all ages." +#~ msgstr "" +#~ "Ha egyet sem jelölsz ki, akkor a tartalom minden korosztály számára " +#~ "megtekinthető marad." + +#~ msgid "Input name for app password" +#~ msgstr "Alkalmazásjelszó nevének megadása" + +#~ msgid "Input your preferred hosting provider" +#~ msgstr "Kívánt tárhelyszolgáltató megadása" + +#~ msgid "Introducing new font settings" +#~ msgstr "Új betűtípus-beállítások váltak elérhetővé" + +#~ msgid "Language settings" +#~ msgstr "Nyelvi beállítások" + +#~ msgid "liked your custom feed" +#~ msgstr "kedvelte az egyéni hírfolyamodat" + +#~ msgid "liked your post" +#~ msgstr "kedvelte a bejegyzésedet" + +#~ msgid "Moderation settings" +#~ msgstr "Moderálási beállítások" + +#~ msgid "My saved feeds" +#~ msgstr "Elmentett hírfolyamok" + +#~ msgid "My Saved Feeds" +#~ msgstr "Elmentett hírfolyamok" + +#~ msgid "Navigate to starter pack" +#~ msgstr "Ugrás a kezdőcsomaghoz" + +#~ msgid "New font settings ✨" +#~ msgstr "Új betűtípus-beállítások váltak elérhetővé ✨" + +#~ msgid "No" +#~ msgstr "Nem" + +#~ msgid "" +#~ "No self-labels can be applied to this post because it contains no media." +#~ msgstr "" +#~ "Erre a bejegyzésre nem alkalmazhatsz feljegyzéseket, mert nem csatoltál " +#~ "hozzá médiatartalmat." + +#~ msgid "Open links with in-app browser" +#~ msgstr "Hivatkozások megnyitása az alkalmazáson belüli böngészőben" + +#~ msgid "Opens accessibility settings" +#~ msgstr "Kisegítő lehetőségek megnyitása" + +#~ msgid "Opens appearance settings" +#~ msgstr "Megjelenítési beállítások megnyitása" + +#~ msgid "Opens chat settings" +#~ msgstr "Csevegési beállítások megnyitása" + +#~ msgid "Opens configurable language settings" +#~ msgstr "Nyelvi beállítások megnyitása" + +#~ msgid "Opens external embeds settings" +#~ msgstr "Külső forrásból beágyazott tartalmak beállításainak megnyitása" + +#~ msgid "Opens modal for account deactivation confirmation" +#~ msgstr "A fiók deaktiválását megerősítő modális ablak megnyitása" + +#~ msgid "Opens modal for account deletion confirmation. Requires email code" +#~ msgstr "" +#~ "A fiók törlését megerősítő modális ablak megnyitása. A folytatáshoz " +#~ "emailben kapott kód szükséges" + +#~ msgid "Opens modal for changing your Bluesky password" +#~ msgstr "" +#~ "A fiók jelszavának megváltoztatását lehetővé tevő modális ablak megnyitása" + +#~ msgid "Opens modal for choosing a new Bluesky handle" +#~ msgstr "" +#~ "A fiók felhasználónevének megváltoztatását lehetővé tevő modális ablak " +#~ "megnyitása" + +#~ msgid "Opens modal for downloading your Bluesky account data (repository)" +#~ msgstr "" +#~ "A fiók adatainak (adattárának) letöltését lehetővé tevő modális ablak " +#~ "megnyitása" + +#~ msgid "Opens modal for email verification" +#~ msgstr "Az emailes visszaigazolást lehetővé tevő modális ablak megnyitása" + +#~ msgid "Opens modal for using custom domain" +#~ msgstr "" +#~ "Az egyéni tartomány megadását lehetővé tevő modális ablak megnyitása" + +#~ msgid "Opens moderation settings" +#~ msgstr "Moderálási beállítások megnyitása" + +#~ msgid "Opens screen with all saved feeds" +#~ msgstr "Elmentett hírfolyamok megjelenítése" + +#~ msgid "Opens the app password settings" +#~ msgstr "Alkalmazásjelszó-beállítások megnyitása" + +#~ msgid "Opens the Following feed preferences" +#~ msgstr "Követett hírfolyam beállításainak megnyitása" + +#~ msgid "Opens the storybook page" +#~ msgstr "Mesekönyv-oldal megnyitása" + +#~ msgid "Opens the system log page" +#~ msgstr "Rendszernaplós oldal megnyitása" + +#~ msgid "Opens the threads preferences" +#~ msgstr "Válaszlánc-beállítások megnyitása" + +#~ msgid "Other accounts" +#~ msgstr "További fiókok" + +#~ msgid "" +#~ "Please enter a name for your app password. All spaces is not allowed." +#~ msgstr "" +#~ "Add meg az alkalmazásjelszó nevét! A név nem tartalmazhat csak szóközöket." + +#~ msgid "" +#~ "Please enter a unique name for this App Password or use our randomly " +#~ "generated one." +#~ msgstr "" +#~ "Nevezd el egyedien az alkalmazásjelszót vagy használd a véletlenszerűen " +#~ "létrehozottat!" + +#~ msgid "Posting..." +#~ msgstr "Bejegyzés közzététele folyamatban…" + +#~ msgid "Prioritize Your Follows" +#~ msgstr "Saját követések kiemelése" + +#~ msgid "Protect your account by verifying your email." +#~ msgstr "Védd meg a fiókod az email-címed visszaigazolásával!" + +#~ msgid "Publish post" +#~ msgstr "Bejegyzés közzététele" + +#~ msgid "Publish reply" +#~ msgstr "Válasz közzététele" + +#~ msgid "Removes the attachment" +#~ msgstr "Melléklet eltávolítása" + +#~ msgid "reposted your post" +#~ msgstr "megosztotta a bejegyzésedet" + +#~ msgid "Require email code to log into your account" +#~ msgstr "Emailben kapott kód megkövetelése a bejelentkezéshez" + +#~ msgid "Reset preferences state" +#~ msgstr "Beállítások alaphelyzetbe állítása" + +#~ msgid "Resets the onboarding state" +#~ msgstr "Regisztrációs varázsló állapotának alaphelyzetbe állítása" + +#~ msgid "Resets the preferences state" +#~ msgstr "Beállítások alaphelyzetbe állítása" + +#~ msgid "Save handle change" +#~ msgstr "Felhasználónév-változtatás mentése" + +#~ msgid "Saves handle change to {handle}" +#~ msgstr "{handle} felhasználónév-változtatásának mentése" + +#~ msgid "Search for all posts by @{authorHandle} with tag {displayTag}" +#~ msgstr "" +#~ "Keresés: @{authorHandle} bejegyzései, amelyek {displayTag} címkével " +#~ "rendelkeznek" + +#~ msgid "Search for all posts with tag {displayTag}" +#~ msgstr "Keresés: Bejegyzések, amelyek {displayTag} címkével rendelkeznek" + +#~ msgid "" +#~ "Set this setting to \"No\" to hide all quote posts from your feed. " +#~ "Reposts will still be visible." +#~ msgstr "" +#~ "A funkció letiltásával minden idézet el lesz rejtve a hírfolyamból. A " +#~ "megosztások továbbra is láthatóak maradnak." + +#~ msgid "Set this setting to \"No\" to hide all replies from your feed." +#~ msgstr "A funkció letiltásával minden válasz el lesz rejtve a hírfolyamból." + +#~ msgid "Set this setting to \"No\" to hide all reposts from your feed." +#~ msgstr "" +#~ "A funkció letiltásával minden megosztás el lesz rejtve a hírfolyamból." + +#~ msgid "" +#~ "Set this setting to \"Yes\" to show replies in a threaded view. This is " +#~ "an experimental feature." +#~ msgstr "" +#~ "A funkció engedélyezésével a válaszláncok egymásba ágyazva lesznek " +#~ "megjelenítve. Ez egy kísérleti funkció." + +#~ msgid "" +#~ "Set this setting to \"Yes\" to show samples of your saved feeds in your " +#~ "Following feed. This is an experimental feature." +#~ msgstr "" +#~ "A funkció engedélyezésével a Követett hírfolyam nyomokban a többi " +#~ "hírfolyam bejegyzéseit is meg fogja jeleníteni. Ez egy kísérleti funkció." + +#~ msgid "Sets Bluesky username" +#~ msgstr "Bluesky-felhasználónév beállítása" + +#~ msgid "Show Posts from My Feeds" +#~ msgstr "A többi hírfolyam bejegyzéseinek mutatása" + +#~ msgid "Show Quote Posts" +#~ msgstr "Idézetek mutatása" + +#~ msgid "Show Replies" +#~ msgstr "Válaszok mutatása" + +#~ msgid "Show replies by people you follow before all other replies." +#~ msgstr "" +#~ "A funkció engedélyezésével az Általad követett személyek válaszai lesznek " +#~ "legfelül megjelenítve egy bejegyzés alatt." + +#~ msgid "Show Reposts" +#~ msgstr "Megosztások mutatása" + +#~ msgid "Sign out of all accounts" +#~ msgstr "Kijelentkezés az összes fiókból" + +#~ msgid "Sign up or sign in to join the conversation" +#~ msgstr "Jelentkezz be vagy regisztrálj a csatlakozáshoz!" + +#~ msgid "Signed in as" +#~ msgstr "Bejelentkezve, mint" + +#~ msgid "signed up with your starter pack" +#~ msgstr "regisztrált a kezdőcsomagoddal" + +#~ msgid "Sort Replies" +#~ msgstr "Válaszok rendezése" + +#~ msgid "Switch to {0}" +#~ msgstr "Váltás rá: {0}" + +#~ msgid "Switches the account you are logged in to" +#~ msgstr "A jelenleg bejelentkezett fiók átváltása egy másikra" + +#~ msgid "" +#~ "There was an an issue contacting the server, please check your internet " +#~ "connection and try again." +#~ msgstr "" +#~ "A kiszolgáló felkeresése meghiúsult. Ellenőrizd az internetkapcsolatot, " +#~ "majd próbáld újra!" + +#~ msgid "" +#~ "There was an an issue removing this feed. Please check your internet " +#~ "connection and try again." +#~ msgstr "" +#~ "A hírfolyam eltávolítása meghiúsult. Ellenőrizd az internetkapcsolatot, " +#~ "majd próbáld újra!" + +#~ msgid "" +#~ "There was an an issue updating your feeds, please check your internet " +#~ "connection and try again." +#~ msgstr "" +#~ "A hírfolyamok frissítése meghiúsult. Ellenőrizd az internetkapcsolatot, " +#~ "majd próbáld újra!" + +#~ msgid "There was an issue with fetching your app passwords" +#~ msgstr "Hiba történt az alkalmazásjelszavak lekérése közben" + +#~ msgid "This name is already in use" +#~ msgstr "Ez a név már foglalt" + +#~ msgid "Threaded Mode" +#~ msgstr "Beágyazott mód" + +#~ msgid "Two-factor authentication" +#~ msgstr "Kétlépcsős azonosítás" + +#~ msgid "Update to {handle}" +#~ msgstr "Frissítés erre: {handle}" + +#~ msgid "Use a file on your server" +#~ msgstr "Fájl használata a saját kiszolgálóról" + +#~ msgid "" +#~ "Use app passwords to login to other Bluesky clients without giving full " +#~ "access to your account or password." +#~ msgstr "" +#~ "Egy alkalmazásjelszó használatával bármely egyéb Bluesky-kliensbe " +#~ "bejelentkezhetsz, anélkül hogy teljes hozzáférést biztosítanál a " +#~ "fiókodhoz vagy a valódi jelszavadhoz." + +#~ msgid "Use bsky.social as hosting provider" +#~ msgstr "A bsky.social adattárszolgáltató használata" + +#~ msgid "Use the DNS panel" +#~ msgstr "DNS-panel használata" + +#~ msgid "Verify email" +#~ msgstr "Email-cím visszaigazolása" + +#~ msgid "Verify my email" +#~ msgstr "Email-cím visszaigazolása" + +#~ msgid "Verify My Email" +#~ msgstr "Email-cím visszaigazolása" + +#~ msgid "Version {appVersion} {bundleInfo}" +#~ msgstr "Verziószám: {appVersion} {bundleInfo}" + +#~ msgid "" +#~ "We're introducing a new theme font, along with adjustable font sizing." +#~ msgstr "" +#~ "Elérhetővé vált egy új témabetűtípus és a betűméret testreszabhatósága." + +#~ msgid "You can adjust these in your Appearance Settings later." +#~ msgstr "A megjelenési beállításokat később is módosíthatod." + +#~ msgid "" +#~ "You have not created any app passwords yet. You can create one by " +#~ "pressing the button below." +#~ msgstr "" +#~ "Jelenleg nem rendelkezel egy alkalmazásjelszóval sem. Az alábbi gombbal " +#~ "létrehozhatsz egyet." + +#~ msgid "Your profile" +#~ msgstr "Saját profil" diff --git a/src/locale/locales/pl/messages.po b/src/locale/locales/pl/messages.po new file mode 100644 index 0000000000..433d6c66c9 --- /dev/null +++ b/src/locale/locales/pl/messages.po @@ -0,0 +1,8026 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2024-11-04 21:21+0100\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: pl\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: Nov 11, 2024\n" +"Last-Translator: axiand\n" +"Language-Team: axiand\n" +"Plural-Forms: \n" + +#: src/screens/Messages/components/ChatListItem.tsx:130 +msgid "(contains embedded content)" +msgstr "(zawiera załącznik)" + +#: src/screens/Settings/AccountSettings.tsx:58 +#: src/view/com/modals/VerifyEmail.tsx:150 +msgid "(no email)" +msgstr "(brak adresu email)" + +#: src/lib/hooks/useTimeAgo.ts:156 +msgid "{0, plural, one {# day} other {# days}}" +msgstr "{0, plural, one {# dzień} few {# dni} other {# dni}}" + +#: src/lib/hooks/useTimeAgo.ts:146 +msgid "{0, plural, one {# hour} other {# hours}}" +msgstr "{0, plural, one {# godzinę} few {# godziny} other {# godzin}}" + +#: src/components/moderation/LabelsOnMe.tsx:54 +msgid "{0, plural, one {# label has been placed on this account} other {# labels have been placed on this account}}" +msgstr "Na tym koncie {0, plural, one {została umieszczona} few {umieszczono} other {umieszczono}} {0, plural, other {#}} {0, plural, one {etykieta} few {etykiety} other {etykiet}}" + +#: src/components/moderation/LabelsOnMe.tsx:60 +msgid "{0, plural, one {# label has been placed on this content} other {# labels have been placed on this content}}" +msgstr "Na tej treści {0, plural, one {została umieszczona} few {umieszczono} other {umieszczono}} {0, plural, other {#}} {0, plural, one {etykieta} few {etykiety} other {etykiet}}" + +#: src/lib/hooks/useTimeAgo.ts:136 +msgid "{0, plural, one {# minute} other {# minutes}}" +msgstr "{0, plural, one {# minuta} few {# minuty} other {# minut}}" + +#: src/lib/hooks/useTimeAgo.ts:167 +msgid "{0, plural, one {# month} other {# months}}" +msgstr "{0, plural, one {# miesiąc} few {# miesiące} other {# miesięcy}}" + +#: src/view/com/util/post-ctrls/RepostButton.tsx:73 +msgid "{0, plural, one {# repost} other {# reposts}}" +msgstr "{0, plural, one {# podanie dalej} few {# podania dalej} other {# podań dalej}}" + +#: src/lib/hooks/useTimeAgo.ts:126 +msgid "{0, plural, one {# second} other {# seconds}}" +msgstr "{0, plural, one {# sekundę} few {# sekundy} other {# sekund}}" + +#: src/components/ProfileHoverCard/index.web.tsx:398 +#: src/screens/Profile/Header/Metrics.tsx:23 +msgid "{0, plural, one {follower} other {followers}}" +msgstr "{0, plural, one {obserwujący} other {obserwujących}}" + +#: src/components/ProfileHoverCard/index.web.tsx:402 +#: src/screens/Profile/Header/Metrics.tsx:27 +msgid "{0, plural, one {following} other {following}}" +msgstr "{0, plural, one {obserwowany} other {obserwowanych}}" + +#: src/view/com/util/post-ctrls/PostCtrls.tsx:305 +msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" +msgstr "{0, plural, one {Polub (# polubienie)} few {Polub (# polubienia)} other {Polub (# polubień)}}" + +#: src/view/com/post-thread/PostThreadItem.tsx:442 +msgid "{0, plural, one {like} other {likes}}" +msgstr "{0, plural, one {polubienie} few {polubienia} other {polubień}}" + +#: src/components/FeedCard.tsx:213 +#: src/view/com/feeds/FeedSourceCard.tsx:303 +msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" +msgstr "{0, plural, one {Polubione przez # osobę} few {Polubione przez # osoby} other {Polubione przez # osób}}" + +#: src/screens/Profile/Header/Metrics.tsx:59 +msgid "{0, plural, one {post} other {posts}}" +msgstr "{0, plural, one {wpis} few {wpisy} other {wpisów}}" + +#: src/view/com/post-thread/PostThreadItem.tsx:426 +msgid "{0, plural, one {quote} other {quotes}}" +msgstr "{0, plural, one {cytat} few {cytaty} other {cytatów}}" + +#: src/view/com/util/post-ctrls/PostCtrls.tsx:261 +msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" +msgstr "{0, plural, one {Odpowiedz (# odpowiedź)} other {Odpowiedz (# odpowiedzi)}}" + +#: src/view/com/post-thread/PostThreadItem.tsx:408 +msgid "{0, plural, one {repost} other {reposts}}" +msgstr "{0, plural, one {podanie dalej} few {podania dalej} other {podań dalej}}" + +#: src/view/com/util/post-ctrls/PostCtrls.tsx:301 +msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" +msgstr "{0, plural, one {Usuń polubienie (# polubienie)} few {Usuń polubienie (# polubienia)} other {Usuń polubienie (# polubień)}}" + +#: src/screens/Settings/Settings.tsx:414 +msgid "{0}" +msgstr "{0}" + +#. Pattern: {wordValue} in tags +#: src/components/dialogs/MutedWords.tsx:475 +msgid "{0} <0>in <1>tags" +msgstr "{0} <0>w <1>tagach" + +#. Pattern: {wordValue} in text, tags +#: src/components/dialogs/MutedWords.tsx:465 +msgid "{0} <0>in <1>text & tags" +msgstr "{0} <0>w <1>tekscie i tagach" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:219 +msgid "{0} joined this week" +msgstr "{0} osób dołączyło w tym tygodniu" + +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:195 +msgid "{0} of {1}" +msgstr "{0} z {1}" + +#: src/screens/StarterPack/StarterPackScreen.tsx:479 +msgid "{0} people have used this starter pack!" +msgstr "{0} osób użyło ten pakiet startowy!" + +#: src/view/shell/bottom-bar/BottomBar.tsx:203 +msgid "{0} unread items" +msgstr "{0} nieprzeczytanych" + +#: src/view/com/util/UserAvatar.tsx:435 +msgid "{0}'s avatar" +msgstr "Zdjęcie profilowe {0}" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:68 +msgid "{0}'s favorite feeds and people - join me!" +msgstr "Ulubione kanały i osoby {0} - dołącz do mnie!" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:47 +msgid "{0}'s starter pack" +msgstr "Pakiet startowy {0}" + +#. How many days have passed, displayed in a narrow form +#: src/lib/hooks/useTimeAgo.ts:158 +msgid "{0}d" +msgstr "{0} d." + +#. How many hours have passed, displayed in a narrow form +#: src/lib/hooks/useTimeAgo.ts:148 +msgid "{0}h" +msgstr "{0} godz." + +#. How many minutes have passed, displayed in a narrow form +#: src/lib/hooks/useTimeAgo.ts:138 +msgid "{0}m" +msgstr "{0} min." + +#. How many months have passed, displayed in a narrow form +#: src/lib/hooks/useTimeAgo.ts:169 +msgid "{0}mo" +msgstr "{0} mies." + +#. How many seconds have passed, displayed in a narrow form +#: src/lib/hooks/useTimeAgo.ts:128 +msgid "{0}s" +msgstr "{0} sek." + +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:252 +msgid "{badge} unread items" +msgstr "{badge} nieprzeczytanych" + +#: src/components/LabelingServiceCard/index.tsx:96 +msgid "{count, plural, one {Liked by # user} other {Liked by # users}}" +msgstr "{count, plural, one {Polubione przez # osobę} few {Polubione przez # osoby} other {Polubione przez # osób}}" + +#: src/view/shell/desktop/LeftNav.tsx:223 +msgid "{count} unread items" +msgstr "{count} nieprzeczytanych" + +#: src/lib/generate-starterpack.ts:108 +#: src/screens/StarterPack/Wizard/index.tsx:183 +msgid "{displayName}'s Starter Pack" +msgstr "Pakiet startowy {displayName}" + +#: src/screens/SignupQueued.tsx:207 +msgid "{estimatedTimeHrs, plural, one {hour} other {hours}}" +msgstr "{estimatedTimeHrs, plural, one {godzina} few {godziny} other {godzin}}" + +#: src/screens/SignupQueued.tsx:213 +msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" +msgstr "{estimatedTimeMins, plural, one {minuta} few {minuty} other {minut}}" + +#: src/view/com/notifications/FeedItem.tsx:300 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" +msgstr "{firstAuthorLink} i <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} inny/a} other {{formattedAuthorsCount} innych}} zaczęli Cię obserwować" + +#: src/view/com/notifications/FeedItem.tsx:326 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" +msgstr "{firstAuthorLink} i <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} inny/a} other {{formattedAuthorsCount} innych}} polubili Twój kanał" + +#: src/view/com/notifications/FeedItem.tsx:222 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" +msgstr "{firstAuthorLink} i <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} inny/a} other {{formattedAuthorsCount} innych}} polubili Twój wpis" + +#: src/view/com/notifications/FeedItem.tsx:246 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" +msgstr "{firstAuthorLink} i <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} inny/a} other {{formattedAuthorsCount} innych}} podali dalej Twój wpis" + +#: src/view/com/notifications/FeedItem.tsx:350 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" +msgstr "{firstAuthorLink} i <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} inny/a} other {{formattedAuthorsCount} innych}} zarejestrowali się z Twoim pakietem startowym" + +#: src/view/com/notifications/FeedItem.tsx:312 +msgid "{firstAuthorLink} followed you" +msgstr "{firstAuthorLink} teraz Cię obserwuje" + +#: src/view/com/notifications/FeedItem.tsx:289 +msgid "{firstAuthorLink} followed you back" +msgstr "{firstAuthorLink} obserwuje Cię w zamian" + +#: src/view/com/notifications/FeedItem.tsx:338 +msgid "{firstAuthorLink} liked your custom feed" +msgstr "{firstAuthorLink} polubił(-a) Twój kanał" + +#: src/view/com/notifications/FeedItem.tsx:234 +msgid "{firstAuthorLink} liked your post" +msgstr "{firstAuthorLink} polubił(-a) Twój wpis" + +#: src/view/com/notifications/FeedItem.tsx:258 +msgid "{firstAuthorLink} reposted your post" +msgstr "{firstAuthorLink} podał(-a) dalej Twój wpis" + +#: src/view/com/notifications/FeedItem.tsx:362 +msgid "{firstAuthorLink} signed up with your starter pack" +msgstr "{firstAuthorLink} zarejestrował(-a) się z Twoim pakietem startowym" + +#: src/view/com/notifications/FeedItem.tsx:293 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" +msgstr "{firstAuthorName} i {additionalAuthorsCount, plural, one {{formattedAuthorsCount} inny/a} other {{formattedAuthorsCount} innych}} zaczęli Cię obserwować" + +#: src/view/com/notifications/FeedItem.tsx:319 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" +msgstr "{firstAuthorName} i {additionalAuthorsCount, plural, one {{formattedAuthorsCount} inny/a} other {{formattedAuthorsCount} innych}} polubili Twój kanał" + +#: src/view/com/notifications/FeedItem.tsx:215 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" +msgstr "{firstAuthorName} i {additionalAuthorsCount, plural, one {{formattedAuthorsCount} inny/a} other {{formattedAuthorsCount} innych}} polubili Twój wpis" + +#: src/view/com/notifications/FeedItem.tsx:239 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" +msgstr "{firstAuthorName} i {additionalAuthorsCount, plural, one {{formattedAuthorsCount} inny/a} other {{formattedAuthorsCount} innych}} podali dalej Twój wpis" + +#: src/view/com/notifications/FeedItem.tsx:343 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" +msgstr "{firstAuthorName} i {additionalAuthorsCount, plural, one {{formattedAuthorsCount} inny/a} other {{formattedAuthorsCount} innych}} zarejestrowali się z Twoim pakietem startowym" + +#: src/view/com/notifications/FeedItem.tsx:298 +msgid "{firstAuthorName} followed you" +msgstr "{firstAuthorName} obserwuje Cię" + +#: src/view/com/notifications/FeedItem.tsx:288 +msgid "{firstAuthorName} followed you back" +msgstr "{firstAuthorName} obserwuje Cię w zamian" + +#: src/view/com/notifications/FeedItem.tsx:324 +msgid "{firstAuthorName} liked your custom feed" +msgstr "{firstAuthorName} polubił(-a) Twój kanał" + +#: src/view/com/notifications/FeedItem.tsx:220 +msgid "{firstAuthorName} liked your post" +msgstr "{firstAuthorName} polubił(-a) Twój wpis" + +#: src/view/com/notifications/FeedItem.tsx:244 +msgid "{firstAuthorName} reposted your post" +msgstr "{firstAuthorName} podał(-a) dalej Twój wpis" + +#: src/view/com/notifications/FeedItem.tsx:348 +msgid "{firstAuthorName} signed up with your starter pack" +msgstr "{firstAuthorName} zarejestrował(-a) się z Twoim pakietem startowym" + +#: src/components/ProfileHoverCard/index.web.tsx:508 +#: src/screens/Profile/Header/Metrics.tsx:50 +msgid "{following} following" +msgstr "{following} obserwowanych" + +#: src/components/dms/dialogs/SearchablePeopleList.tsx:385 +msgid "{handle} can't be messaged" +msgstr "Nie możesz wysłać wiadomości do {handle}" + +#: 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 "{likeCount, plural, one {Polubione przez # osobę} few {Polubione przez # osoby} other {Polubione przez # osób}}" + +#: src/view/shell/Drawer.tsx:448 +msgid "{numUnreadNotifications} unread" +msgstr "{numUnreadNotifications} nieprzeczytanych" + +#: src/view/shell/bottom-bar/BottomBar.tsx:230 +msgid "{numUnreadNotifications} unread items" +msgstr "{numUnreadNotifications} nieprzeczytanych" + +#: src/components/NewskieDialog.tsx:116 +msgid "{profileName} joined Bluesky {0} ago" +msgstr "{profileName} dołączył(-a) do Bluesky {0} temu" + +#: src/components/NewskieDialog.tsx:111 +msgid "{profileName} joined Bluesky using a starter pack {0} ago" +msgstr "{profileName} dołączył(-a) do Bluesky przy użyciu pakietu startowego {0} temu" + +#: src/screens/StarterPack/Wizard/index.tsx:475 +msgctxt "profiles" +msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" +msgstr "<0>{0}, <1>{1}, i {2, plural, one {# inny/a} other {# innych}} są w Twoim pakiecie startowym" + +#: src/screens/StarterPack/Wizard/index.tsx:528 +msgctxt "feeds" +msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" +msgstr "<0>{0}, <1>{1}, i {2, plural, one {# inny/a} other {# innych}} są w Twoim pakiecie startowym" + +#: src/view/shell/Drawer.tsx:97 +msgid "<0>{0} {1, plural, one {follower} other {followers}}" +msgstr "<0>{0} {1, plural, one {obserwujący} other {obserwujących}}" + +#: src/view/shell/Drawer.tsx:108 +msgid "<0>{0} {1, plural, one {following} other {following}}" +msgstr "<0>{0} {1, plural, one {obserwowany} other {obserwowanych}}" + +#: src/screens/StarterPack/Wizard/index.tsx:516 +msgid "<0>{0} and<1> <2>{1} are included in your starter pack" +msgstr "<0>{0} i<1> <2>{1} są w twoim pakiecie startowym" + +#: src/screens/StarterPack/Wizard/index.tsx:509 +msgid "<0>{0} is included in your starter pack" +msgstr "<0>{0} jest w twoim pakiecie startowym" + +#: src/components/WhoCanReply.tsx:274 +msgid "<0>{0} members" +msgstr "<0>{0} członków" + +#: src/components/dms/DateDivider.tsx:69 +msgid "<0>{date} at {time}" +msgstr "<0>{date} o {time}" + +#: src/screens/Settings/NotificationSettings.tsx:72 +msgid "<0>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 "<0>Eksperymentalne: Kiedy ta opcja jest włączona, dostaniesz powiadomienia na temat odpowiedzi i podań dalej wyłącznie od osób, które obserwujesz. Z biegiem czasu dodamy tutaj więcej opcji." + +#: src/screens/StarterPack/Wizard/index.tsx:466 +msgid "<0>You and<1> <2>{0} are included in your starter pack" +msgstr "<0>Ty i<1> <2>{0} jesteście w Twoim pakiecie startowym" + +#: src/screens/Profile/Header/Handle.tsx:53 +msgid "⚠Invalid Handle" +msgstr "⚠ Nieprawidłowa nazwa" + +#: src/components/dialogs/MutedWords.tsx:193 +msgid "24 hours" +msgstr "24 godziny" + +#: src/screens/Login/LoginForm.tsx:250 +msgid "2FA Confirmation" +msgstr "Potwierdzenie uwierzytelnienia dwuskładnikowego" + +#: src/components/dialogs/MutedWords.tsx:232 +msgid "30 days" +msgstr "30 dni" + +#: src/components/dialogs/MutedWords.tsx:217 +msgid "7 days" +msgstr "7 dni" + +#: src/Navigation.tsx:361 +#: src/screens/Settings/AboutSettings.tsx:25 +#: src/screens/Settings/Settings.tsx:207 +#: src/screens/Settings/Settings.tsx:210 +msgid "About" +msgstr "Opis" + +#: src/view/com/util/ViewHeader.tsx:89 +#: src/view/screens/Search/Search.tsx:883 +msgid "Access navigation links and settings" +msgstr "Linki nawigacji i ustawienia" + +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:56 +msgid "Access profile and other navigation links" +msgstr "Profil i inne linki nawigacji" + +#: src/screens/Settings/AccessibilitySettings.tsx:43 +#: src/screens/Settings/Settings.tsx:183 +#: src/screens/Settings/Settings.tsx:186 +msgid "Accessibility" +msgstr "Ułatwienia dostępu" + +#: src/Navigation.tsx:321 +msgid "Accessibility Settings" +msgstr "Ustawienia ułatwień dostępu" + +#: src/Navigation.tsx:337 +#: src/screens/Login/LoginForm.tsx:176 +#: src/screens/Settings/AccountSettings.tsx:42 +#: src/screens/Settings/Settings.tsx:145 +#: src/screens/Settings/Settings.tsx:148 +msgid "Account" +msgstr "Konto" + +#: src/view/com/profile/ProfileMenu.tsx:132 +msgid "Account blocked" +msgstr "Konto zablokowane" + +#: src/view/com/profile/ProfileMenu.tsx:145 +msgid "Account followed" +msgstr "Konto obserwowane" + +#: src/view/com/profile/ProfileMenu.tsx:108 +msgid "Account muted" +msgstr "Konto wyciszone" + +#: src/components/moderation/ModerationDetailsDialog.tsx:102 +#: src/lib/moderation/useModerationCauseDescription.ts:96 +msgid "Account Muted" +msgstr "Konto wyciszone" + +#: src/components/moderation/ModerationDetailsDialog.tsx:88 +msgid "Account Muted by List" +msgstr "Konto wyciszone przez listę" + +#: src/screens/Settings/Settings.tsx:420 +msgid "Account options" +msgstr "Ustawienia konta" + +#: src/screens/Settings/Settings.tsx:456 +msgid "Account removed from quick access" +msgstr "Konto usunięte z szybkiego dostępu" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:137 +#: src/view/com/profile/ProfileMenu.tsx:122 +msgid "Account unblocked" +msgstr "Konto odblokowane" + +#: src/view/com/profile/ProfileMenu.tsx:157 +msgid "Account unfollowed" +msgstr "Przestano obserwować konto" + +#: src/view/com/profile/ProfileMenu.tsx:98 +msgid "Account unmuted" +msgstr "Anulowano wyciszenie konta" + +#: src/components/dialogs/MutedWords.tsx:328 +#: src/view/com/modals/ListAddRemoveUsers.tsx:269 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 +#: src/view/screens/ProfileList.tsx:940 +msgid "Add" +msgstr "Dodaj" + +#: src/screens/StarterPack/Wizard/index.tsx:577 +msgid "Add {0} more to continue" +msgstr "Dodaj jeszcze {0, plural, one {# osobę} few {# osoby} other {# osób}}" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:59 +msgid "Add {displayName} to starter pack" +msgstr "Dodaj {displayName} do pakietu startowego" + +#: src/view/com/composer/labels/LabelsBtn.tsx:108 +#: src/view/com/composer/labels/LabelsBtn.tsx:113 +msgid "Add a content warning" +msgstr "Dodaj ostrzeżenie o zawartości" + +#: src/view/screens/ProfileList.tsx:930 +msgid "Add a user to this list" +msgstr "Dodaj osobę do listy" + +#: src/components/dialogs/SwitchAccount.tsx:55 +#: src/screens/Deactivated.tsx:198 +msgid "Add account" +msgstr "Dodaj konto" + +#: 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 "Dodaj tekst alternatywny" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:107 +msgid "Add alt text (optional)" +msgstr "Dodaj tekst alternatywny (dowolne)" + +#: src/screens/Settings/Settings.tsx:364 +#: src/screens/Settings/Settings.tsx:367 +msgid "Add another account" +msgstr "Dodaj kolejne konto" + +#: src/view/com/composer/Composer.tsx:715 +msgid "Add another post" +msgstr "Dodaj kolejny wpis" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:102 +msgid "Add app password" +msgstr "Dodaj hasło aplikacji" + +#: src/screens/Settings/AppPasswords.tsx:67 +#: src/screens/Settings/AppPasswords.tsx:75 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:111 +msgid "Add App Password" +msgstr "Dodaj hasło aplikacji" + +#: src/components/dialogs/MutedWords.tsx:321 +msgid "Add mute word for configured settings" +msgstr "Dodaj wyciszone słowo dla tej konfiguracji" + +#: src/components/dialogs/MutedWords.tsx:112 +msgid "Add muted words and tags" +msgstr "Dodaj wyciszone słowa i tagi" + +#: src/view/com/composer/Composer.tsx:1230 +msgid "Add new post" +msgstr "Dodaj nowy wpis" + +#: src/screens/Home/NoFeedsPinned.tsx:99 +msgid "Add recommended feeds" +msgstr "Dodaj rekomendowane kanały" + +#: src/screens/StarterPack/Wizard/index.tsx:497 +msgid "Add some feeds to your starter pack!" +msgstr "Dodaj kanały do pakietu startowego!" + +#: src/screens/Feeds/NoFollowingFeed.tsx:41 +msgid "Add the default feed of only people you follow" +msgstr "Dodaj domyślny kanał osób, które obserwujesz" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:387 +msgid "Add the following DNS record to your domain:" +msgstr "Dodaj ten rekord DNS do twojej domeny:" + +#: src/components/FeedCard.tsx:296 +msgid "Add this feed to your feeds" +msgstr "Dodaj do moich kanałów" + +#: src/view/com/profile/ProfileMenu.tsx:243 +#: src/view/com/profile/ProfileMenu.tsx:246 +msgid "Add to Lists" +msgstr "Dodaj do moich list" + +#: src/view/com/feeds/FeedSourceCard.tsx:269 +msgid "Add to my feeds" +msgstr "Dodaj do moich kanałów" + +#: src/view/com/modals/ListAddRemoveUsers.tsx:192 +#: src/view/com/modals/UserAddRemoveLists.tsx:162 +msgid "Added to list" +msgstr "Dodano do listy" + +#: src/view/com/feeds/FeedSourceCard.tsx:125 +msgid "Added to my feeds" +msgstr "Dodano do kanałów" + +#: src/view/com/composer/labels/LabelsBtn.tsx:161 +msgid "Adult" +msgstr "Dla dorosłych" + +#: src/components/moderation/ContentHider.tsx:83 +#: src/lib/moderation/useGlobalLabelStrings.ts:34 +#: src/lib/moderation/useModerationCauseDescription.ts:144 +#: src/view/com/composer/labels/LabelsBtn.tsx:129 +msgid "Adult Content" +msgstr "Treść dla dorosłych" + +#: src/screens/Moderation/index.tsx:360 +msgid "Adult content can only be enabled via the Web at <0>bsky.app." +msgstr "Treść dla dorosłych może być włączona tylko w wersji Web - <0>bsky.app." + +#: src/components/moderation/LabelPreference.tsx:242 +msgid "Adult content is disabled." +msgstr "Treść dla dorosłych jest ukryta." + +#: src/view/com/composer/labels/LabelsBtn.tsx:140 +#: src/view/com/composer/labels/LabelsBtn.tsx:198 +msgid "Adult Content labels" +msgstr "Etykiety treści dla dorosłych" + +#: src/screens/Moderation/index.tsx:404 +msgid "Advanced" +msgstr "Zaawansowane" + +#: src/state/shell/progress-guide.tsx:171 +msgid "Algorithm training complete!" +msgstr "Szkolenie algorytmu ukończone!" + +#: src/screens/StarterPack/StarterPackScreen.tsx:381 +msgid "All accounts have been followed!" +msgstr "Wszystkie konta zaobserwowane!" + +#: src/view/screens/Feeds.tsx:735 +msgid "All the feeds you've saved, right in one place." +msgstr "Zapisane przez Ciebie kanały, w zasięgu ręki." + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:146 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:153 +msgid "Allow access to your direct messages" +msgstr "Udziel dostęp do twoich prywatnych rozmów" + +#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:67 +msgid "Allow new messages from" +msgstr "Pozwól na nowe wiadomości od" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:360 +msgid "Allow replies from:" +msgstr "Pozwól na odpowiedzi od:" + +#: src/screens/Settings/AppPasswords.tsx:192 +msgid "Allows access to direct messages" +msgstr "Ma dostęp do prywatnych rozmów" + +#: src/screens/Login/ForgotPasswordForm.tsx:171 +#: src/view/com/modals/ChangePassword.tsx:171 +msgid "Already have a code?" +msgstr "Masz już kod?" + +#: src/screens/Login/ChooseAccountForm.tsx:43 +msgid "Already signed in as @{0}" +msgstr "Już zalogowano jako @{0}" + +#: 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 "ALT" + +#: src/screens/Settings/AccessibilitySettings.tsx:49 +#: 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 "Tekst alternatywny" + +#: src/view/com/util/post-embeds/GifEmbed.tsx:191 +msgid "Alt Text" +msgstr "Tekst alternatywny" + +#: 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 "Tekst alternatywny opisuje treść dla osób niewidomych i słabowidzących oraz daje kontekst dla wszystkich." + +#: 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 "Tekst alternatywny będzie przycięty; limit wynosi {0} znaków." + +#: 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 "Wiadomość zawierająca kod do autoryzacji została wysłana do {0}. Wpisz ten kod poniżej." + +#: 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 "Wiadomość zawierająca kod do autoryzacji została wysłana do twojego poprzedniego adresu, {0}. Wpisz ten kod poniżej." + +#: src/components/dialogs/VerifyEmailDialog.tsx:91 +msgid "An email has been sent! Please enter the confirmation code included in the email below." +msgstr "Wiadomość email została wysłana! Proszę wpisać kod zawarty w wiadomości poniżej." + +#: src/components/dialogs/GifSelect.tsx:265 +msgid "An error has occurred" +msgstr "Wystąpił błąd." + +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:419 +msgid "An error occurred" +msgstr "Wystąpił błąd." + +#: src/view/com/composer/state/video.ts:411 +msgid "An error occurred while compressing the video." +msgstr "Wystąpił błąd podczas kompresji pliku wideo." + +#: src/components/StarterPack/ProfileStarterPacks.tsx:333 +msgid "An error occurred while generating your starter pack. Want to try again?" +msgstr "Wystąpił błąd podczas tworzenia pakietu startowego. Czy chcesz spróbować ponownie?" + +#: src/view/com/util/post-embeds/VideoEmbed.tsx:135 +msgid "An error occurred while loading the video. Please try again later." +msgstr "Wystąpił błąd podczas ładowania tego wideo. Proszę spróbować ponownie później." + +#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:174 +msgid "An error occurred while loading the video. Please try again." +msgstr "Wystąpił błąd podczas ładowania tego wideo. Proszę spróbować ponownie później." + +#: src/components/StarterPack/QrCodeDialog.tsx:71 +#: src/components/StarterPack/ShareDialog.tsx:80 +msgid "An error occurred while saving the QR code!" +msgstr "Wystąpił błąd podczas zapisywania kodu QR." + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:87 +msgid "An error occurred while selecting the video" +msgstr "Wystąpił błąd podczas wybierania pliku wideo." + +#: src/screens/StarterPack/StarterPackScreen.tsx:347 +#: src/screens/StarterPack/StarterPackScreen.tsx:369 +msgid "An error occurred while trying to follow all" +msgstr "Wystąpił błąd podczas próby zaobserwowania osób." + +#: src/view/com/composer/state/video.ts:448 +msgid "An error occurred while uploading the video." +msgstr "Wystąpił błąd podczas przesyłania pliku wideo." + +#: src/lib/moderation/useReportOptions.ts:28 +msgid "An issue not included in these options" +msgstr "Inny problem" + +#: src/components/dms/dialogs/NewChatDialog.tsx:41 +msgid "An issue occurred starting the chat" +msgstr "Wystąpił błąd podczas zaczynania rozmowy." + +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:47 +msgid "An issue occurred while trying to open the chat" +msgstr "Wystąpił błąd podczas otwierania rozmowy." + +#: src/components/hooks/useFollowMethods.ts:35 +#: src/components/hooks/useFollowMethods.ts:50 +#: src/components/ProfileCard.tsx:326 +#: src/components/ProfileCard.tsx:346 +#: src/view/com/profile/FollowButton.tsx:36 +#: src/view/com/profile/FollowButton.tsx:46 +msgid "An issue occurred, please try again." +msgstr "Wystąpił błąd. Proszę spróbować później." + +#: src/screens/Onboarding/StepInterests/index.tsx:185 +msgid "an unknown error occurred" +msgstr "Wystąpił nieznany błąd" + +#: src/components/moderation/ModerationDetailsDialog.tsx:158 +#: src/components/moderation/ModerationDetailsDialog.tsx:154 +msgid "an unknown labeler" +msgstr "nieznana usługa moderacji" + +#: src/components/WhoCanReply.tsx:295 +msgid "and" +msgstr "i" + +#: src/screens/Onboarding/index.tsx:29 +#: src/screens/Onboarding/state.ts:81 +msgid "Animals" +msgstr "Zwierzęta" + +#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +msgid "Animated GIF" +msgstr "Animowany GIF" + +#: src/lib/moderation/useReportOptions.ts:33 +msgid "Anti-Social Behavior" +msgstr "Zachowanie antyspołeczne" + +#: src/view/screens/Search/Search.tsx:347 +#: src/view/screens/Search/Search.tsx:348 +msgid "Any language" +msgstr "Dowolny język" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49 +msgid "Anybody can interact" +msgstr "Każdy może interagować" + +#: src/screens/Settings/LanguageSettings.tsx:72 +msgid "App Language" +msgstr "Język aplikacji" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:122 +msgid "App Password" +msgstr "Hasło aplikacji" + +#: src/screens/Settings/AppPasswords.tsx:139 +msgid "App password deleted" +msgstr "Usunięto hasło aplikacji" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:84 +msgid "App password name must be unique" +msgstr "Nazwa hasła aplikacji musi być wyjątkowa" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:62 +msgid "App password names can only contain letters, numbers, spaces, dashes, and underscores" +msgstr "Nazwa hasła aplikacji może zawierać tylko litery, cyfry, spacje, myślniki i podkreślenia." + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:80 +msgid "App password names must be at least 4 characters long" +msgstr "Nazwa hasła aplikacji musi zawierać co najmniej 4 znaki." + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:56 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:59 +msgid "App passwords" +msgstr "Hasła aplikacji" + +#: src/Navigation.tsx:289 +#: src/screens/Settings/AppPasswords.tsx:47 +msgid "App Passwords" +msgstr "Hasła aplikacji" + +#: src/components/moderation/LabelsOnMeDialog.tsx:148 +#: src/components/moderation/LabelsOnMeDialog.tsx:151 +msgid "Appeal" +msgstr "Wyślij apelację" + +#: src/components/moderation/LabelsOnMeDialog.tsx:243 +msgid "Appeal \"{0}\" label" +msgstr "Wyślij apelację na temat \"{0}\"" + +#: src/components/moderation/LabelsOnMeDialog.tsx:233 +#: src/screens/Messages/components/ChatDisabled.tsx:91 +msgid "Appeal submitted" +msgstr "Apelacja wysłana" + +#: 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 "Wyślij apelację od tej decyzji" + +#: src/Navigation.tsx:329 +#: src/screens/Settings/AppearanceSettings.tsx:76 +#: src/screens/Settings/Settings.tsx:175 +#: src/screens/Settings/Settings.tsx:178 +msgid "Appearance" +msgstr "Wygląd" + +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47 +#: src/screens/Home/NoFeedsPinned.tsx:93 +msgid "Apply default recommended feeds" +msgstr "Użyj polecane kanały" + +#: src/view/com/post-thread/PostThreadItem.tsx:825 +msgid "Archived from {0}" +msgstr "Archiwum z dnia {0}" + +#: src/view/com/post-thread/PostThreadItem.tsx:794 +#: src/view/com/post-thread/PostThreadItem.tsx:833 +msgid "Archived post" +msgstr "Wpis archiwalny" + +#: src/screens/Settings/AppPasswords.tsx:201 +msgid "Are you sure you want to delete the app password \"{0}\"?" +msgstr "Czy na pewno chcesz usunąć hasło aplikacji \"{0}\"?" + +#: src/components/dms/MessageMenu.tsx:149 +msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." +msgstr "Czy na pewno chcesz usunąć tą wiadomość? Będzie usunięta dla Ciebie, ale nie dla drugiej osoby." + +#: src/screens/StarterPack/StarterPackScreen.tsx:633 +msgid "Are you sure you want to delete this starter pack?" +msgstr "Czy na pewno chcesz usunąć ten pakiet startowy?" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:82 +msgid "Are you sure you want to discard your changes?" +msgstr "Czy na pewno chcesz porzucić zmiany?" + +#: src/components/dms/LeaveConvoPrompt.tsx:48 +msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." +msgstr "Czy na pewno chcesz opuścić tą rozmowę? Twoje wiadomości będą usunięte dla Ciebie, ale nie dla drugiej osoby." + +#: src/view/com/feeds/FeedSourceCard.tsx:316 +msgid "Are you sure you want to remove {0} from your feeds?" +msgstr "Czy na pewno chcesz usunąć {0} z twoich kanałów?" + +#: src/components/FeedCard.tsx:313 +msgid "Are you sure you want to remove this from your feeds?" +msgstr "Czy na pewno chcesz to usunąć z twoich kanałów?" + +#: src/view/com/composer/Composer.tsx:666 +msgid "Are you sure you'd like to discard this draft?" +msgstr "Czy na pewno chcesz porzucić ten wpis?" + +#: src/view/com/composer/Composer.tsx:830 +msgid "Are you sure you'd like to discard this post?" +msgstr "Czy na pewno chcesz porzucić ten wpis?" + +#: src/components/dialogs/MutedWords.tsx:433 +msgid "Are you sure?" +msgstr "Na pewno?" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:61 +msgid "Are you writing in <0>{0}?" +msgstr "Czy piszesz w <0>{0}?" + +#: src/screens/Onboarding/index.tsx:23 +#: src/screens/Onboarding/state.ts:82 +msgid "Art" +msgstr "Sztuka" + +#: src/view/com/composer/labels/LabelsBtn.tsx:173 +msgid "Artistic or non-erotic nudity." +msgstr "Artystyczna lub nieerotyczna nagość." + +#: src/screens/Signup/StepHandle.tsx:173 +msgid "At least 3 characters" +msgstr "Przynajmniej 3 znaki" + +#: src/screens/Settings/AccessibilitySettings.tsx:98 +msgid "Autoplay options have moved to the <0>Content and Media settings." +msgstr "Opcje automatycznego odtwarzania zostały przeniesione do <0>ustawień treści." + +#: src/screens/Settings/ContentAndMediaSettings.tsx:89 +#: src/screens/Settings/ContentAndMediaSettings.tsx:95 +msgid "Autoplay videos and GIFs" +msgstr "Automatyczne odtwarzanie wideo i GIF" + +#: src/components/dms/MessagesListHeader.tsx:75 +#: src/components/moderation/LabelsOnMeDialog.tsx:290 +#: src/components/moderation/LabelsOnMeDialog.tsx:291 +#: src/screens/Login/ChooseAccountForm.tsx:90 +#: src/screens/Login/ChooseAccountForm.tsx:95 +#: src/screens/Login/ForgotPasswordForm.tsx:123 +#: src/screens/Login/ForgotPasswordForm.tsx:129 +#: src/screens/Login/LoginForm.tsx:282 +#: src/screens/Login/LoginForm.tsx:288 +#: src/screens/Login/SetNewPasswordForm.tsx:154 +#: src/screens/Login/SetNewPasswordForm.tsx:160 +#: src/screens/Messages/components/ChatDisabled.tsx:133 +#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Profile/Header/Shell.tsx:116 +#: src/screens/Signup/BackNextButtons.tsx:42 +#: src/screens/StarterPack/Wizard/index.tsx:307 +#: src/view/com/util/ViewHeader.tsx:87 +msgid "Back" +msgstr "Powrót" + +#: src/view/screens/Lists.tsx:104 +#: src/view/screens/ModerationModlists.tsx:100 +msgid "Before creating a list, you must first verify your email." +msgstr "Przed utworzeniem listy musisz najpierw zweryfikować adres email." + +#: src/view/com/composer/Composer.tsx:593 +msgid "Before creating a post, you must first verify your email." +msgstr "Przed utworzeniem wpisu musisz najpierw zweryfikować adres email." + +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +msgid "Before creating a starter pack, you must first verify your email." +msgstr "Przed utworzeniem pakietu startowego musisz najpierw zweryfikować adres email." + +#: src/components/dms/dialogs/NewChatDialog.tsx:79 +#: src/components/dms/MessageProfileButton.tsx:89 +#: src/screens/Messages/Conversation.tsx:219 +msgid "Before you may message another user, you must first verify your email." +msgstr "Przed wysyłaniem wiadomości musisz najpierw zweryfikować adres email." + +#: src/components/dialogs/BirthDateSettings.tsx:106 +#: src/screens/Settings/AccountSettings.tsx:102 +msgid "Birthday" +msgstr "Data urodzenia" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:283 +#: src/view/com/profile/ProfileMenu.tsx:341 +msgid "Block" +msgstr "Blokuj" + +#: src/components/dms/ConvoMenu.tsx:188 +#: src/components/dms/ConvoMenu.tsx:192 +msgid "Block account" +msgstr "Blokuj konto" + +#: src/view/com/profile/ProfileMenu.tsx:280 +#: src/view/com/profile/ProfileMenu.tsx:287 +msgid "Block Account" +msgstr "Blokuj konto" + +#: src/view/com/profile/ProfileMenu.tsx:324 +msgid "Block Account?" +msgstr "Zablokować tę konto?" + +#: src/view/screens/ProfileList.tsx:643 +msgid "Block accounts" +msgstr "Blokuj konta" + +#: src/view/screens/ProfileList.tsx:747 +msgid "Block list" +msgstr "Blokuj listę" + +#: src/view/screens/ProfileList.tsx:742 +msgid "Block these accounts?" +msgstr "Zablokować te konta?" + +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:83 +msgid "Blocked" +msgstr "Zablokowane" + +#: src/screens/Moderation/index.tsx:274 +msgid "Blocked accounts" +msgstr "Zablokowane konta" + +#: src/Navigation.tsx:153 +#: src/view/screens/ModerationBlockedAccounts.tsx:108 +msgid "Blocked Accounts" +msgstr "Zablokowane konta" + +#: src/view/com/profile/ProfileMenu.tsx:336 +msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." +msgstr "Zablokowane konta nie mogą odpowiadać na Twoje wpisy, wspominać Cię, lub w żaden inny sposób wchodzić w interakcję z Tobą." + +#: src/view/screens/ModerationBlockedAccounts.tsx:116 +msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." +msgstr "Zablokowane konta nie mogą odpowiadać na Twoje wpisy, wspominać Cię, lub w żaden inny sposób wchodzić w interakcję z Tobą. Nie zobaczysz ich treści, a oni nie będą mogli zobaczyć Twojej." + +#: src/view/com/post-thread/PostThread.tsx:412 +msgid "Blocked post." +msgstr "Zablokowany wpis." + +#: src/screens/Profile/Sections/Labels.tsx:173 +msgid "Blocking does not prevent this labeler from placing labels on your account." +msgstr "Blokowanie nie powstrzymywa usług moderacji od umieszczania etykiet na Twoim koncie." + +#: src/view/screens/ProfileList.tsx:744 +msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." +msgstr "Blokowanie jest publiczne. Zablokowane konta nie mogą odpowiadać na Twoje wpisy, wspominać Cię, lub w żaden inny sposób wchodzić w interakcję z Tobą." + +#: 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 "Blokowanie nie powstrzymywa umieszczania etykiet na Twoim koncie. To konto nie będzie móc wchodzić w interakcję z Tobą w żaden inny sposób." + +#: src/view/com/auth/SplashScreen.web.tsx:173 +msgid "Blog" +msgstr "Blog" + +#: src/view/com/auth/server-input/index.tsx:86 +#: src/view/com/auth/server-input/index.tsx:88 +msgid "Bluesky" +msgstr "Bluesky" + +#: src/view/com/post-thread/PostThreadItem.tsx:850 +msgid "Bluesky cannot confirm the authenticity of the claimed date." +msgstr "Nie możemy potwierdzić autentyczności daty utworzenia tego wpisu." + +#: src/view/com/auth/server-input/index.tsx:151 +msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server." +msgstr "Bluesky to otwarta sieć gdzie możesz wybrać swojego dostawcę. Deweloperzy mogą hostować własne serwery." + +#: src/components/ProgressGuide/List.tsx:55 +msgid "Bluesky is better with friends!" +msgstr "Bluesky jest lepsze z przyjaciółmi!" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:300 +msgid "Bluesky will choose a set of recommended accounts from people in your network." +msgstr "Bluesky wybierze kilka rekomendowanych osób z Twojej sieci." + +#: 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 "Bluesky nie pokaże Twojego profilu niezalogowanym użytkownikom. Inne aplikacje mogą nie uwzględnić tej prośby. To nie czyni Twojego konta prywatnym." + +#: src/lib/moderation/useLabelBehaviorDescription.ts:53 +msgid "Blur images" +msgstr "Rozmaż zdjęcia" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:51 +msgid "Blur images and filter from feeds" +msgstr "Rozmaż zdjęcia i wyklucz z kanałów" + +#: src/screens/Onboarding/index.tsx:30 +#: src/screens/Onboarding/state.ts:83 +msgid "Books" +msgstr "Książki" + +#: src/components/FeedInterstitials.tsx:350 +msgid "Browse more accounts on the Explore page" +msgstr "Znajdź więcej osób na stronie Odkryj" + +#: src/components/FeedInterstitials.tsx:483 +msgid "Browse more feeds on the Explore page" +msgstr "Znajdź więcej kanałów na stronie Odkryj" + +#: src/components/FeedInterstitials.tsx:332 +#: src/components/FeedInterstitials.tsx:335 +#: src/components/FeedInterstitials.tsx:465 +#: src/components/FeedInterstitials.tsx:468 +msgid "Browse more suggestions" +msgstr "Zobacz więcej sugestii" + +#: src/components/FeedInterstitials.tsx:358 +#: src/components/FeedInterstitials.tsx:492 +msgid "Browse more suggestions on the Explore page" +msgstr "Zobacz więcej sugestii na stronie Odkryj" + +#: src/screens/Home/NoFeedsPinned.tsx:103 +#: src/screens/Home/NoFeedsPinned.tsx:109 +msgid "Browse other feeds" +msgstr "Zobacz inne kanały" + +#: src/view/com/auth/SplashScreen.web.tsx:168 +msgid "Business" +msgstr "Biznes" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:197 +msgid "by —" +msgstr "autorstwa -" + +#: src/components/LabelingServiceCard/index.tsx:62 +msgid "By {0}" +msgstr "Od {0}" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:201 +msgid "by <0/>" +msgstr "od <0/>" + +#: src/screens/Signup/StepInfo/Policies.tsx:81 +msgid "By creating an account you agree to the <0>Privacy Policy." +msgstr "Tworząc konto akceptujesz <0>Politykę prywatności." + +#: src/screens/Signup/StepInfo/Policies.tsx:48 +msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." +msgstr "Tworząc konto akceptujesz <0>Warunki korzystania z usługi i <1>Politykę prywatności." + +#: src/screens/Signup/StepInfo/Policies.tsx:68 +msgid "By creating an account you agree to the <0>Terms of Service." +msgstr "Tworząc konto akceptujesz <0>Warunki korzystania z usługi." + +#: src/view/com/profile/ProfileSubpageHeader.tsx:199 +msgid "by you" +msgstr "od Ciebie" + +#: src/view/com/composer/photos/OpenCameraBtn.tsx:72 +msgid "Camera" +msgstr "Aparat" + +#: src/components/Menu/index.tsx:236 +#: src/components/Prompt.tsx:129 +#: src/components/Prompt.tsx:131 +#: src/components/TagMenu/index.tsx:267 +#: src/screens/Deactivated.tsx:164 +#: src/screens/Profile/Header/EditProfileDialog.tsx:220 +#: src/screens/Profile/Header/EditProfileDialog.tsx:228 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:72 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:79 +#: src/screens/Settings/Settings.tsx:252 +#: src/view/com/composer/Composer.tsx:893 +#: 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:166 +#: src/view/screens/Search/Search.tsx:911 +msgid "Cancel" +msgstr "Anuluj" + +#: src/view/com/modals/CreateOrEditList.tsx:340 +#: src/view/com/modals/DeleteAccount.tsx:174 +#: src/view/com/modals/DeleteAccount.tsx:297 +msgctxt "action" +msgid "Cancel" +msgstr "Anuluj" + +#: src/view/com/modals/DeleteAccount.tsx:170 +#: src/view/com/modals/DeleteAccount.tsx:293 +msgid "Cancel account deletion" +msgstr "Anuluj usunięcie konta" + +#: src/view/com/modals/CropImage.web.tsx:94 +msgid "Cancel image crop" +msgstr "Anuluj przycinanie zdjęcia" + +#: src/view/com/modals/EditProfile.tsx:239 +msgid "Cancel profile editing" +msgstr "Anuluj edycję profilu" + +#: src/view/com/util/post-ctrls/RepostButton.tsx:161 +msgid "Cancel quote post" +msgstr "Anuluj cytat" + +#: src/screens/Deactivated.tsx:158 +msgid "Cancel reactivation and log out" +msgstr "Anuluj reaktywacje i wyloguj" + +#: src/view/com/modals/ListAddRemoveUsers.tsx:88 +#: src/view/screens/Search/Search.tsx:903 +msgid "Cancel search" +msgstr "Anuluj szukanie" + +#: src/view/com/modals/LinkWarning.tsx:106 +msgid "Cancels opening the linked website" +msgstr "Anuluje otwarcie strony" + +#: src/state/shell/composer/index.tsx:82 +#: 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 +msgid "Cannot interact with a blocked user" +msgstr "Nie możesz wchodzić w interakcję z zablokowaną osobą" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:133 +msgid "Captions (.vtt)" +msgstr "Napisy (.vtt)" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:56 +msgid "Captions & alt text" +msgstr "Napisy i teskt alternatywny" + +#: src/screens/Settings/components/Email2FAToggle.tsx:60 +#: src/view/com/modals/VerifyEmail.tsx:160 +msgid "Change" +msgstr "Zmień" + +#: src/screens/Settings/AccountSettings.tsx:90 +#: src/screens/Settings/AccountSettings.tsx:94 +msgid "Change email" +msgstr "Zmień email" + +#: src/components/dialogs/VerifyEmailDialog.tsx:162 +#: src/components/dialogs/VerifyEmailDialog.tsx:187 +msgid "Change email address" +msgstr "Zmień adres email" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:88 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:93 +msgid "Change Handle" +msgstr "Zmień nazwę" + +#: src/view/com/modals/VerifyEmail.tsx:155 +msgid "Change my email" +msgstr "Zmień mój adres email" + +#: src/view/com/modals/ChangePassword.tsx:142 +msgid "Change Password" +msgstr "Zmień hasło" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:74 +msgid "Change post language to {0}" +msgstr "Zmień język wpisu na {0}" + +#: src/view/com/modals/ChangeEmail.tsx:104 +msgid "Change Your Email" +msgstr "Zmień adres email" + +#: src/components/dialogs/VerifyEmailDialog.tsx:171 +msgid "Change your email address" +msgstr "Zmień adres email" + +#: src/Navigation.tsx:373 +#: src/view/shell/bottom-bar/BottomBar.tsx:200 +#: src/view/shell/desktop/LeftNav.tsx:348 +#: src/view/shell/Drawer.tsx:417 +msgid "Chat" +msgstr "Rozmowy" + +#: src/components/dms/ConvoMenu.tsx:82 +msgid "Chat muted" +msgstr "Rozmowa wyciszona" + +#: src/components/dms/ConvoMenu.tsx:112 +#: src/components/dms/MessageMenu.tsx:81 +#: src/Navigation.tsx:378 +#: src/screens/Messages/ChatList.tsx:88 +msgid "Chat settings" +msgstr "Ustawienia rozmów" + +#: src/screens/Messages/Settings.tsx:61 +msgid "Chat Settings" +msgstr "Ustawienia rozmów" + +#: src/components/dms/ConvoMenu.tsx:84 +msgid "Chat unmuted" +msgstr "Anulowano wyciszenie rozmowy" + +#: src/screens/SignupQueued.tsx:78 +#: src/screens/SignupQueued.tsx:82 +msgid "Check my status" +msgstr "Sprawdź swój status" + +#: src/screens/Login/LoginForm.tsx:275 +msgid "Check your email for a login code and enter it here." +msgstr "Sprawdź swoją skrzynke odbiorczą. Wpisz kod do logowania tutaj." + +#: src/view/com/modals/DeleteAccount.tsx:232 +msgid "Check your inbox for an email with the confirmation code to enter below:" +msgstr "Sprawdź swoją skrzynke odbiorczą. Wpisz kod do autoryzacji poniżej:" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:370 +msgid "Choose domain verification method" +msgstr "Wybierz metodę weryfikacji domeny" + +#: src/screens/StarterPack/Wizard/index.tsx:199 +msgid "Choose Feeds" +msgstr "Wybierz kanały" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:308 +msgid "Choose for me" +msgstr "Wybierz dla mnie" + +#: src/screens/StarterPack/Wizard/index.tsx:195 +msgid "Choose People" +msgstr "Wybierz osoby" + +#: src/view/com/composer/labels/LabelsBtn.tsx:116 +msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences." +msgstr "Wybierz etykiety odpowiednie dla tej treści. Brak etykiet oznacza, że wpis jest odpowiedni dla wszystkich." + +#: src/view/com/auth/server-input/index.tsx:76 +msgid "Choose Service" +msgstr "Wybierz dostawcę" + +#: src/screens/Onboarding/StepFinished.tsx:276 +msgid "Choose the algorithms that power your custom feeds." +msgstr "Wybierz algorytmy, które będą zasilać Twoje kanały." + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:107 +msgid "Choose this color as your avatar" +msgstr "Wybierz kolor zdjęcia profilowego" + +#: src/screens/Signup/StepInfo/index.tsx:201 +msgid "Choose your password" +msgstr "Ustaw hasło" + +#: src/screens/Settings/Settings.tsx:342 +msgid "Clear all storage data" +msgstr "Wyczyść dane pamięci masowej" + +#: src/screens/Settings/Settings.tsx:344 +msgid "Clear all storage data (restart after this)" +msgstr "Wyczyść dane pamięci masowej (zrestartuj po tym)" + +#: src/components/forms/SearchInput.tsx:70 +msgid "Clear search query" +msgstr "Wyczyść zapytanie" + +#: src/view/screens/Support.tsx:41 +msgid "click here" +msgstr "kliknij tutaj" + +#: src/view/com/modals/DeleteAccount.tsx:208 +msgid "Click here for more information on deactivating your account" +msgstr "Kliknij, aby się dowiedzieć więcej o dezaktywacji konta" + +#: src/view/com/modals/DeleteAccount.tsx:217 +msgid "Click here for more information." +msgstr "Kliknij, aby się dowiedzieć więcej." + +#: src/components/TagMenu/index.web.tsx:152 +msgid "Click here to open tag menu for {tag}" +msgstr "Kliknij, aby otworzyć menu tagu dla {tag}" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304 +msgid "Click to disable quote posts of this post." +msgstr "Kliknij, aby wyłączyć cytaty tego wpisu." + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:305 +msgid "Click to enable quote posts of this post." +msgstr "Kliknij, aby włączyć cytaty tego wpisu." + +#: src/components/dms/MessageItem.tsx:240 +msgid "Click to retry failed message" +msgstr "Kliknij, aby spróbować wysyłać wiadomość ponownie" + +#: src/screens/Onboarding/index.tsx:32 +msgid "Climate" +msgstr "Klimat" + +#: src/components/dms/ChatEmptyPill.tsx:39 +msgid "Clip 🐴 clop 🐴" +msgstr "Klip 🐴 klop 🐴" + +#: src/components/dialogs/GifSelect.tsx:281 +#: src/components/dialogs/VerifyEmailDialog.tsx:289 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:263 +#: src/components/NewskieDialog.tsx:146 +#: src/components/NewskieDialog.tsx:153 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 +#: src/view/com/modals/ChangePassword.tsx:268 +#: src/view/com/modals/ChangePassword.tsx:271 +#: src/view/com/util/post-embeds/GifEmbed.tsx:197 +msgid "Close" +msgstr "Zamknij" + +#: src/components/Dialog/index.web.tsx:110 +#: src/components/Dialog/index.web.tsx:261 +msgid "Close active dialog" +msgstr "Zamknij aktywny dialog" + +#: src/screens/Login/PasswordUpdatedForm.tsx:32 +msgid "Close alert" +msgstr "Zamknij alert" + +#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 +msgid "Close bottom drawer" +msgstr "Zamknij dolną szufladę" + +#: src/components/dialogs/GifSelect.tsx:275 +msgid "Close dialog" +msgstr "Zamknij dialog" + +#: src/components/dialogs/GifSelect.tsx:169 +msgid "Close GIF dialog" +msgstr "Zamknij dialog GIF" + +#: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:36 +msgid "Close image" +msgstr "Zamknij zdjęcie" + +#: src/view/com/lightbox/Lightbox.web.tsx:107 +msgid "Close image viewer" +msgstr "Zamknij przeglądarkę obrazu" + +#: src/view/shell/index.web.tsx:68 +msgid "Close navigation footer" +msgstr "Zamknij dolny pasek nawigacji" + +#: src/components/Menu/index.tsx:230 +#: src/components/TagMenu/index.tsx:261 +msgid "Close this dialog" +msgstr "Zamknij ten dialog" + +#: src/view/shell/index.web.tsx:69 +msgid "Closes bottom navigation bar" +msgstr "Zamyka dolny pasek nawigacji" + +#: src/screens/Login/PasswordUpdatedForm.tsx:33 +msgid "Closes password update alert" +msgstr "Zamyka alert hasła" + +#: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:37 +msgid "Closes viewer for header image" +msgstr "Zamyka przeglądarkę obrazu" + +#: src/view/com/notifications/FeedItem.tsx:400 +msgid "Collapse list of users" +msgstr "Ukryj listę osób" + +#: src/view/com/notifications/FeedItem.tsx:593 +msgid "Collapses list of users for a given notification" +msgstr "Ukrywa listę osób dla powiadomienia" + +#: src/screens/Settings/AppearanceSettings.tsx:80 +msgid "Color mode" +msgstr "Motyw" + +#: src/screens/Onboarding/index.tsx:38 +#: src/screens/Onboarding/state.ts:84 +msgid "Comedy" +msgstr "Komedia" + +#: src/screens/Onboarding/index.tsx:24 +#: src/screens/Onboarding/state.ts:85 +msgid "Comics" +msgstr "Komiksy" + +#: src/Navigation.tsx:279 +#: src/view/screens/CommunityGuidelines.tsx:34 +msgid "Community Guidelines" +msgstr "Zasady społeczności" + +#: src/screens/Onboarding/StepFinished.tsx:289 +msgid "Complete onboarding and start using your account" +msgstr "Ukończ proces powitalny i zacznij używać swoje konto" + +#: src/screens/Signup/index.tsx:144 +msgid "Complete the challenge" +msgstr "Ukończ wyzwanie" + +#: src/view/shell/desktop/LeftNav.tsx:314 +msgid "Compose new post" +msgstr "Napisz nowy wpis" + +#: src/view/com/composer/Composer.tsx:796 +msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" +msgstr "Wpisz tekst o długości nie wyżej niż {MAX_GRAPHEME_LENGTH}" + +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:35 +msgid "Compose reply" +msgstr "Wpisz odpowiedź" + +#: src/view/com/composer/Composer.tsx:1623 +msgid "Compressing video..." +msgstr "Kompresowanie wideo..." + +#: src/components/moderation/LabelPreference.tsx:82 +msgid "Configure content filtering setting for category: {name}" +msgstr "Skonfiguruj filtrowanie treści dla kategorii {name}" + +#: src/components/moderation/LabelPreference.tsx:244 +msgid "Configured in <0>moderation settings." +msgstr "Konfigurowane w <0>ustawieniach moderacji." + +#: 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 "Potwierdź" + +#: src/view/com/modals/ChangeEmail.tsx:188 +#: src/view/com/modals/ChangeEmail.tsx:190 +msgid "Confirm Change" +msgstr "Potwierdź zmianę" + +#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:35 +msgid "Confirm content language settings" +msgstr "Potwierdź ustawienia języka treści" + +#: src/view/com/modals/DeleteAccount.tsx:283 +msgid "Confirm delete account" +msgstr "Potwierdź usunięcie konta" + +#: src/screens/Moderation/index.tsx:308 +msgid "Confirm your age:" +msgstr "Potwierdź swój wiek:" + +#: src/screens/Moderation/index.tsx:299 +msgid "Confirm your birthdate" +msgstr "Potwierdź swoją datę urodzenia" + +#: src/components/dialogs/VerifyEmailDialog.tsx:214 +#: src/screens/Login/LoginForm.tsx:256 +#: 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:239 +#: src/view/com/modals/DeleteAccount.tsx:245 +#: src/view/com/modals/VerifyEmail.tsx:173 +msgid "Confirmation code" +msgstr "Kod potwierdzenia" + +#: src/components/dialogs/VerifyEmailDialog.tsx:210 +msgid "Confirmation Code" +msgstr "Kod potwierdzenia" + +#: src/screens/Login/LoginForm.tsx:309 +msgid "Connecting..." +msgstr "Łączę..." + +#: src/screens/Signup/index.tsx:175 +#: src/screens/Signup/index.tsx:178 +msgid "Contact support" +msgstr "Skontaktuj się z pomocą techniczną" + +#: src/screens/Settings/AccessibilitySettings.tsx:102 +#: src/screens/Settings/Settings.tsx:167 +#: src/screens/Settings/Settings.tsx:170 +msgid "Content and media" +msgstr "Treść" + +#: src/Navigation.tsx:353 +#: src/screens/Settings/ContentAndMediaSettings.tsx:36 +msgid "Content and Media" +msgstr "Treść" + +#: src/lib/moderation/useGlobalLabelStrings.ts:18 +msgid "Content Blocked" +msgstr "Treść zablokowana" + +#: src/screens/Moderation/index.tsx:292 +msgid "Content filters" +msgstr "Filtrowanie treści" + +#: src/screens/Settings/LanguageSettings.tsx:241 +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:75 +msgid "Content Languages" +msgstr "Języki treści" + +#: src/components/moderation/ModerationDetailsDialog.tsx:81 +#: src/lib/moderation/useModerationCauseDescription.ts:80 +msgid "Content Not Available" +msgstr "Treść niedostępna" + +#: src/components/moderation/ModerationDetailsDialog.tsx:49 +#: src/components/moderation/ScreenHider.tsx:93 +#: src/lib/moderation/useGlobalLabelStrings.ts:22 +#: src/lib/moderation/useModerationCauseDescription.ts:43 +msgid "Content Warning" +msgstr "Ostrzeżenie o treści" + +#: src/view/com/composer/labels/LabelsBtn.tsx:61 +msgid "Content warnings" +msgstr "Ostrzeżenia o treści" + +#: src/components/Menu/index.web.tsx:83 +msgid "Context menu backdrop, click to close the menu." +msgstr "Tło menu kontekstu. Kliknij aby zamknąć" + +#: src/screens/Onboarding/StepInterests/index.tsx:244 +#: src/screens/Onboarding/StepProfile/index.tsx:278 +msgid "Continue" +msgstr "Kontynuuj" + +#: src/components/AccountList.tsx:121 +msgid "Continue as {0} (currently signed in)" +msgstr "Kontynuuj jako {0} (obecnie zalogowano)" + +#: src/view/com/post-thread/PostThreadLoadMore.tsx:52 +msgid "Continue thread..." +msgstr "Kontynuuj wątek..." + +#: src/screens/Onboarding/StepInterests/index.tsx:241 +#: src/screens/Onboarding/StepProfile/index.tsx:275 +#: src/screens/Signup/BackNextButtons.tsx:61 +msgid "Continue to next step" +msgstr "Kontynuuj do następnego etapu" + +#: src/screens/Messages/components/ChatListItem.tsx:164 +msgid "Conversation deleted" +msgstr "Rozmowa usunięta" + +#: src/screens/Onboarding/index.tsx:41 +msgid "Cooking" +msgstr "Gotowanie" + +#: src/view/com/modals/InviteCodes.tsx:183 +msgid "Copied" +msgstr "Skopiowane" + +#: src/screens/Settings/AboutSettings.tsx:66 +msgid "Copied build version to clipboard" +msgstr "Skopiowano wersję do schowka" + +#: src/components/dms/MessageMenu.tsx:57 +#: src/lib/sharing.ts:25 +#: src/view/com/modals/InviteCodes.tsx:153 +#: src/view/com/util/forms/PostDropdownBtn.tsx:240 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:386 +msgid "Copied to clipboard" +msgstr "Skopiowano do schowka" + +#: src/components/dialogs/Embed.tsx:136 +#: src/screens/Settings/components/CopyButton.tsx:66 +msgid "Copied!" +msgstr "Skopiowano!" + +#: src/components/StarterPack/QrCodeDialog.tsx:175 +msgid "Copy" +msgstr "Kopiuj" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 +msgid "Copy App Password" +msgstr "Kopiuj hasło aplikacji" + +#: src/screens/Settings/AboutSettings.tsx:61 +msgid "Copy build version to clipboard" +msgstr "Kopiuj wersję do schowka" + +#: src/components/dialogs/Embed.tsx:122 +#: src/components/dialogs/Embed.tsx:141 +msgid "Copy code" +msgstr "Kopiuj kod" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:472 +msgid "Copy DID" +msgstr "Kopiuj DID" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:405 +msgid "Copy host" +msgstr "Kopiuj host" + +#: src/components/StarterPack/ShareDialog.tsx:124 +msgid "Copy link" +msgstr "Kopiuj link" + +#: src/components/StarterPack/ShareDialog.tsx:131 +msgid "Copy Link" +msgstr "Kopiuj link" + +#: src/view/screens/ProfileList.tsx:487 +msgid "Copy link to list" +msgstr "Kopiuj link do listy" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:452 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +msgid "Copy link to post" +msgstr "Kopiuj link do wpisu" + +#: src/components/dms/MessageMenu.tsx:110 +#: src/components/dms/MessageMenu.tsx:112 +msgid "Copy message text" +msgstr "Kopiuj tekst wiadomości" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:430 +#: src/view/com/util/forms/PostDropdownBtn.tsx:432 +msgid "Copy post text" +msgstr "Kopiuj tekst wpisu" + +#: src/components/StarterPack/QrCodeDialog.tsx:169 +msgid "Copy QR code" +msgstr "Kopiuj kod QR" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:426 +msgid "Copy TXT record value" +msgstr "Kopiuj rekord TXT" + +#: src/Navigation.tsx:284 +#: src/view/screens/CopyrightPolicy.tsx:31 +msgid "Copyright Policy" +msgstr "Polityka praw autorskich" + +#: src/components/dms/LeaveConvoPrompt.tsx:39 +msgid "Could not leave chat" +msgstr "Błąd podczas opuszczania rozmowy" + +#: src/view/screens/ProfileFeed.tsx:104 +msgid "Could not load feed" +msgstr "Błąd podczas ładowania kanału" + +#: src/view/screens/ProfileList.tsx:1020 +msgid "Could not load list" +msgstr "Błąd podczas ładowania listy" + +#: src/components/dms/ConvoMenu.tsx:88 +msgid "Could not mute chat" +msgstr "Błąd podczas wyciszania rozmowy" + +#: src/view/com/composer/videos/VideoPreview.web.tsx:56 +msgid "Could not process your video" +msgstr "Błąd podczas przetwarzania wideo" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:290 +msgid "Create" +msgstr "Utwórz" + +#: src/components/StarterPack/QrCodeDialog.tsx:153 +msgid "Create a QR code for a starter pack" +msgstr "Utwórz kod QR dla pakietu startowego" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:168 +#: src/components/StarterPack/ProfileStarterPacks.tsx:271 +#: src/Navigation.tsx:403 +msgid "Create a starter pack" +msgstr "Utwórz pakiet startowy" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:252 +msgid "Create a starter pack for me" +msgstr "Utwórz pakiet startowy dla mnie" + +#: src/view/com/auth/SplashScreen.tsx:56 +#: src/view/com/auth/SplashScreen.web.tsx:117 +msgid "Create account" +msgstr "Utwórz konto" + +#: src/screens/Signup/index.tsx:93 +msgid "Create Account" +msgstr "Utwórz konto" + +#: src/components/dialogs/Signin.tsx:86 +#: src/components/dialogs/Signin.tsx:88 +msgid "Create an account" +msgstr "Utwórz konto" + +#: src/screens/Onboarding/StepProfile/index.tsx:292 +msgid "Create an avatar instead" +msgstr "Zamiast tego utwórz zdjęcie profilowe" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:175 +msgid "Create another" +msgstr "Utwórz kolejne" + +#: src/view/com/auth/SplashScreen.tsx:48 +#: src/view/com/auth/SplashScreen.web.tsx:109 +msgid "Create new account" +msgstr "Utwórz nowe konto" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:101 +msgid "Create report for {0}" +msgstr "Zgłoś {0}" + +#: src/screens/Settings/AppPasswords.tsx:166 +msgid "Created {0}" +msgstr "Utworzono {0}" + +#: src/screens/Onboarding/index.tsx:26 +#: src/screens/Onboarding/state.ts:86 +msgid "Culture" +msgstr "Kultura" + +#: src/view/com/auth/server-input/index.tsx:94 +#: src/view/com/auth/server-input/index.tsx:96 +msgid "Custom" +msgstr "Dowolne" + +#: 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 "Kanały stworzone przez społeczność pozwalają odkryć nowe doświadczenia i pomagają Ci znaleźć rzeczy, które najbardziej kochasz." + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:289 +msgid "Customize who can interact with this post." +msgstr "Wybierz kto może interagować z tym wpisem." + +#: src/screens/Settings/AppearanceSettings.tsx:92 +#: src/screens/Settings/AppearanceSettings.tsx:113 +msgid "Dark" +msgstr "Ciemny" + +#: src/view/screens/Debug.tsx:70 +msgid "Dark mode" +msgstr "Tryb ciemny" + +#: src/screens/Settings/AppearanceSettings.tsx:105 +msgid "Dark theme" +msgstr "Ciemny motyw" + +#: src/screens/Signup/StepInfo/index.tsx:222 +msgid "Date of birth" +msgstr "Data urodzenia" + +#: src/screens/Settings/AccountSettings.tsx:139 +#: src/screens/Settings/AccountSettings.tsx:144 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 +msgid "Deactivate account" +msgstr "Dezaktywuj konto" + +#: src/screens/Settings/Settings.tsx:323 +msgid "Debug Moderation" +msgstr "Debuguj moderację" + +#: src/view/screens/Debug.tsx:90 +msgid "Debug panel" +msgstr "Panel debugowania" + +#: src/screens/Settings/AppearanceSettings.tsx:153 +msgid "Default" +msgstr "Domyślny" + +#: src/components/dms/MessageMenu.tsx:151 +#: src/screens/Settings/AppPasswords.tsx:204 +#: src/screens/StarterPack/StarterPackScreen.tsx:585 +#: src/screens/StarterPack/StarterPackScreen.tsx:664 +#: src/screens/StarterPack/StarterPackScreen.tsx:744 +#: src/view/com/util/forms/PostDropdownBtn.tsx:673 +#: src/view/screens/ProfileList.tsx:726 +msgid "Delete" +msgstr "Usuń" + +#: src/screens/Settings/AccountSettings.tsx:149 +#: src/screens/Settings/AccountSettings.tsx:154 +msgid "Delete account" +msgstr "Usuń konto" + +#: src/view/com/modals/DeleteAccount.tsx:105 +msgid "Delete Account <0>\"<1>{0}<2>\"" +msgstr "Usuń konto <0>\"<1>{0}<2>\"" + +#: src/screens/Settings/AppPasswords.tsx:179 +msgid "Delete app password" +msgstr "Usuń hasło aplikacji" + +#: src/screens/Settings/AppPasswords.tsx:199 +msgid "Delete app password?" +msgstr "Usuń hasło aplikacji?" + +#: src/screens/Settings/Settings.tsx:330 +msgid "Delete chat declaration record" +msgstr "Usuń rekord deklaracji rozmowy" + +#: src/components/dms/MessageMenu.tsx:124 +msgid "Delete for me" +msgstr "Usuń dla mnie" + +#: src/view/screens/ProfileList.tsx:530 +msgid "Delete List" +msgstr "Usuń listę" + +#: src/components/dms/MessageMenu.tsx:147 +msgid "Delete message" +msgstr "Usuń wiadomość" + +#: src/components/dms/MessageMenu.tsx:122 +msgid "Delete message for me" +msgstr "Usuń wiadomość dla mnie" + +#: src/view/com/modals/DeleteAccount.tsx:286 +msgid "Delete my account" +msgstr "Usuń moje konto" + +#: src/view/com/composer/Composer.tsx:804 +#: src/view/com/util/forms/PostDropdownBtn.tsx:653 +#: src/view/com/util/forms/PostDropdownBtn.tsx:655 +msgid "Delete post" +msgstr "Usuń wpis" + +#: src/screens/StarterPack/StarterPackScreen.tsx:579 +#: src/screens/StarterPack/StarterPackScreen.tsx:735 +msgid "Delete starter pack" +msgstr "Usuń pakiet startowy" + +#: src/screens/StarterPack/StarterPackScreen.tsx:630 +msgid "Delete starter pack?" +msgstr "Usunąć pakiet startowy?" + +#: src/view/screens/ProfileList.tsx:721 +msgid "Delete this list?" +msgstr "Usunąć listę?" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:668 +msgid "Delete this post?" +msgstr "Usunąć wpis?" + +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:93 +msgid "Deleted" +msgstr "Usunięto" + +#: src/components/dms/MessagesListHeader.tsx:150 +#: src/screens/Messages/components/ChatListItem.tsx:107 +msgid "Deleted Account" +msgstr "Usunięte konto" + +#: src/view/com/post-thread/PostThread.tsx:398 +msgid "Deleted post." +msgstr "Usunięto wpis." + +#: 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 "Opis" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:364 +msgid "Description is too long" +msgstr "Opis jest za długi" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:365 +msgid "Description is too long. The maximum number of characters is {DESCRIPTION_MAX_GRAPHEMES}." +msgstr "Opis jest za długi. Maksymalna długość wynosi {DESCRIPTION_MAX_GRAPHEMES}." + +#: src/view/com/composer/GifAltText.tsx:150 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:114 +msgid "Descriptive alt text" +msgstr "Opisowy tekst alternatywny" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:586 +#: src/view/com/util/forms/PostDropdownBtn.tsx:596 +msgid "Detach quote" +msgstr "Odłącz cytat" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:731 +msgid "Detach quote post?" +msgstr "Odłączyć cytat?" + +#: src/screens/Settings/Settings.tsx:234 +#: src/screens/Settings/Settings.tsx:237 +msgid "Developer options" +msgstr "Ustawienia dla deweloperów" + +#: src/components/WhoCanReply.tsx:175 +msgid "Dialog: adjust who can interact with this post" +msgstr "Dialog: wybierz kto może interagować z tym wpisem" + +#: src/screens/Settings/AppearanceSettings.tsx:109 +msgid "Dim" +msgstr "Przyciemniony" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:89 +msgid "Disable Email 2FA" +msgstr "Wyłącz uwierzytelnianie dwuskładnikowe (2FA) przez email" + +#: src/screens/Settings/AccessibilitySettings.tsx:84 +#: src/screens/Settings/AccessibilitySettings.tsx:89 +msgid "Disable haptic feedback" +msgstr "Wyłącz wibracje" + +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:385 +msgid "Disable subtitles" +msgstr "Wyłącz napisy" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:32 +#: src/lib/moderation/useLabelBehaviorDescription.ts:42 +#: src/lib/moderation/useLabelBehaviorDescription.ts:68 +#: src/screens/Messages/Settings.tsx:133 +#: src/screens/Messages/Settings.tsx:136 +#: src/screens/Moderation/index.tsx:350 +msgid "Disabled" +msgstr "Wyłączone" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:84 +#: src/view/com/composer/Composer.tsx:668 +#: src/view/com/composer/Composer.tsx:837 +msgid "Discard" +msgstr "Odrzuć" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:81 +msgid "Discard changes?" +msgstr "Odrzucić zmiany?" + +#: src/view/com/composer/Composer.tsx:665 +msgid "Discard draft?" +msgstr "Odrzucić zarys?" + +#: src/view/com/composer/Composer.tsx:829 +msgid "Discard post?" +msgstr "Odrzucić wpis?" + +#: 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 "Zniechęć aplikacje do pokazywania mojego profilu niezalogowanym osobom" + +#: src/view/com/posts/FollowingEmptyState.tsx:70 +#: src/view/com/posts/FollowingEndOfFeed.tsx:71 +msgid "Discover new custom feeds" +msgstr "Odkryj nowe kanały" + +#: src/view/screens/Search/Explore.tsx:389 +msgid "Discover new feeds" +msgstr "Odkryj nowe kanały" + +#: src/view/screens/Feeds.tsx:758 +msgid "Discover New Feeds" +msgstr "Odkryj nowe kanały" + +#: src/components/Dialog/index.tsx:318 +msgid "Dismiss" +msgstr "Odrzuć" + +#: src/view/com/composer/Composer.tsx:1547 +msgid "Dismiss error" +msgstr "Odrzuć błąd" + +#: src/components/ProgressGuide/List.tsx:40 +msgid "Dismiss getting started guide" +msgstr "Odrzuć poradnik powitalny" + +#: src/screens/Settings/AccessibilitySettings.tsx:64 +#: src/screens/Settings/AccessibilitySettings.tsx:69 +msgid "Display larger alt text badges" +msgstr "Pokaż większe odznaki tekstu alternatywnego" + +#: 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 "Nazwa wyświetlana" + +#: src/view/com/modals/EditProfile.tsx:175 +msgid "Display Name" +msgstr "Nazwa wyświetlana" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:333 +msgid "Display name is too long" +msgstr "Nazwa wyświetlana jest za długa" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:334 +msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}." +msgstr "Nazwa wyświetlana jest za długa. Maksymalna długość wynosi {DISPLAY_NAME_MAX_GRAPHEMES} znaków." + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:373 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:375 +msgid "DNS Panel" +msgstr "Panel DNS" + +#: src/components/dialogs/MutedWords.tsx:302 +msgid "Do not apply this mute word to users you follow" +msgstr "Wyklucz obserwowane konta z wyciszania" + +#: src/lib/moderation/useGlobalLabelStrings.ts:39 +msgid "Does not include nudity." +msgstr "Nie zawiera nagości." + +#: src/screens/Signup/StepHandle.tsx:159 +msgid "Doesn't begin or end with a hyphen" +msgstr "Nie zaczyna lub kończy się myślnikiem" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:488 +msgid "Domain verified!" +msgstr "Domena zweryfikowana!" + +#: 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:225 +#: src/view/com/composer/labels/LabelsBtn.tsx:232 +#: 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 "Gotowe" + +#: 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 "Gotowe" + +#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:43 +msgid "Done{extraText}" +msgstr "Gotowe{extraText}" + +#: src/components/Dialog/index.tsx:319 +msgid "Double tap to close the dialog" +msgstr "Stuknij dwa razy aby zamknąć" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 +msgid "Download Bluesky" +msgstr "Pobierz Bluesky" + +#: src/screens/Settings/components/ExportCarDialog.tsx:77 +#: src/screens/Settings/components/ExportCarDialog.tsx:82 +msgid "Download CAR file" +msgstr "Pobierz plik CAR" + +#: src/view/com/composer/text-input/TextInput.web.tsx:327 +msgid "Drop to add images" +msgstr "Upuść zdjęcia tutaj aby dodać" + +#: src/components/dialogs/MutedWords.tsx:153 +msgid "Duration:" +msgstr "Czas trwania:" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:210 +msgid "e.g. alice" +msgstr "np. alicja" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:321 +msgid "e.g. Alice Lastname" +msgstr "np. Alicja Nazwisko" + +#: src/view/com/modals/EditProfile.tsx:180 +msgid "e.g. Alice Roberts" +msgstr "np. Alicja Roberts" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:357 +msgid "e.g. alice.com" +msgstr "np. alice.com" + +#: src/view/com/modals/EditProfile.tsx:198 +msgid "e.g. Artist, dog-lover, and avid reader." +msgstr "np. Artystka, wielbicielka psów i zachłanna czytaczka." + +#: src/lib/moderation/useGlobalLabelStrings.ts:43 +msgid "E.g. artistic nudes." +msgstr "Na przykład artystyczne nagie zdjęcia" + +#: src/view/com/modals/CreateOrEditList.tsx:263 +msgid "e.g. Great Posters" +msgstr "np. Fantastyczne Osoby" + +#: src/view/com/modals/CreateOrEditList.tsx:264 +msgid "e.g. Spammers" +msgstr "np. Spamerzy" + +#: src/view/com/modals/CreateOrEditList.tsx:292 +msgid "e.g. The posters who never miss." +msgstr "np. Ci, którzy zawsze mają dobre zdanie." + +#: src/view/com/modals/CreateOrEditList.tsx:293 +msgid "e.g. Users that repeatedly reply with ads." +msgstr "np. Użytkownicy, którzy ciągle odpowiadają reklamami." + +#: src/view/com/modals/InviteCodes.tsx:97 +msgid "Each code works once. You'll receive more invite codes periodically." +msgstr "Każdy kod działa tylko raz. Będziesz regularnie dostawać więcej kodów." + +#: src/screens/Settings/AccountSettings.tsx:105 +#: src/screens/StarterPack/StarterPackScreen.tsx:574 +#: src/screens/StarterPack/Wizard/index.tsx:560 +#: src/screens/StarterPack/Wizard/index.tsx:567 +#: src/view/screens/Feeds.tsx:386 +#: src/view/screens/Feeds.tsx:454 +msgid "Edit" +msgstr "Edytuj" + +#: src/view/com/lists/ListMembers.tsx:146 +msgctxt "action" +msgid "Edit" +msgstr "Edytuj" + +#: src/view/com/util/UserAvatar.tsx:347 +#: src/view/com/util/UserBanner.tsx:95 +msgid "Edit avatar" +msgstr "Edytuj zdjęcie profilowe" + +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:111 +msgid "Edit Feeds" +msgstr "Edytuj kanały" + +#: 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 "Edytuj zdjęcie" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:632 +#: src/view/com/util/forms/PostDropdownBtn.tsx:647 +msgid "Edit interaction settings" +msgstr "Edytuj ustawienia interakcji" + +#: src/view/screens/ProfileList.tsx:518 +msgid "Edit list details" +msgstr "Edytuj opis listy" + +#: src/view/com/modals/CreateOrEditList.tsx:230 +msgid "Edit Moderation List" +msgstr "Edytuj listę moderacji" + +#: src/Navigation.tsx:294 +#: src/view/screens/Feeds.tsx:384 +#: src/view/screens/Feeds.tsx:452 +#: src/view/screens/SavedFeeds.tsx:116 +msgid "Edit My Feeds" +msgstr "Edytuj moje kanały" + +#: src/view/com/modals/EditProfile.tsx:147 +msgid "Edit my profile" +msgstr "Edytuj mój profil" + +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 +msgid "Edit People" +msgstr "Edytuj osoby" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:66 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:204 +msgid "Edit post interaction settings" +msgstr "Edytuj ustawienia interakcji wpisu" + +#: 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 "Edytuj profil" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:189 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182 +msgid "Edit Profile" +msgstr "Edytuj profil" + +#: src/screens/StarterPack/StarterPackScreen.tsx:566 +msgid "Edit starter pack" +msgstr "Edytuj pakiet startowy" + +#: src/view/com/modals/CreateOrEditList.tsx:225 +msgid "Edit User List" +msgstr "Edytuj listę osób" + +#: src/components/WhoCanReply.tsx:87 +msgid "Edit who can reply" +msgstr "Wybierz kto może odpowiadać" + +#: src/view/com/modals/EditProfile.tsx:188 +msgid "Edit your display name" +msgstr "Edytuj wyświetlaną nazwę" + +#: src/view/com/modals/EditProfile.tsx:206 +msgid "Edit your profile description" +msgstr "Edytuj opis profilu" + +#: src/Navigation.tsx:408 +msgid "Edit your starter pack" +msgstr "Edytuj pakiet startowy" + +#: src/screens/Onboarding/index.tsx:31 +#: src/screens/Onboarding/state.ts:88 +msgid "Education" +msgstr "Edukacja" + +#: src/screens/Settings/AccountSettings.tsx:53 +#: src/screens/Signup/StepInfo/index.tsx:170 +#: src/view/com/modals/ChangeEmail.tsx:136 +msgid "Email" +msgstr "Email" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:64 +msgid "Email 2FA disabled" +msgstr "2FA przez email wył." + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:47 +msgid "Email 2FA enabled" +msgstr "2FA przez email wł." + +#: src/screens/Login/ForgotPasswordForm.tsx:93 +msgid "Email address" +msgstr "Adres email" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:104 +msgid "Email Resent" +msgstr "Email wysłany ponownie" + +#: src/view/com/modals/ChangeEmail.tsx:54 +#: src/view/com/modals/ChangeEmail.tsx:83 +msgid "Email updated" +msgstr "Zaktualizowano email" + +#: src/view/com/modals/ChangeEmail.tsx:106 +msgid "Email Updated" +msgstr "Zaktualizowano email" + +#: src/view/com/modals/VerifyEmail.tsx:85 +msgid "Email verified" +msgstr "Zweryfikowano email" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:79 +msgid "Email Verified" +msgstr "Zweryfikowano email" + +#: src/components/dialogs/Embed.tsx:113 +msgid "Embed HTML code" +msgstr "Kod HTML do osadzenia" + +#: src/components/dialogs/Embed.tsx:97 +#: src/view/com/util/forms/PostDropdownBtn.tsx:469 +#: src/view/com/util/forms/PostDropdownBtn.tsx:471 +msgid "Embed post" +msgstr "Osadź wpis" + +#: 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 "Osadź ten wpis na Twojej stronie. Skopiuj ten kod i wklej go do kodu HTML swojej strony internetowej." + +#: src/screens/Settings/components/Email2FAToggle.tsx:56 +#: src/screens/Settings/components/Email2FAToggle.tsx:60 +msgid "Enable" +msgstr "Włącz" + +#: src/components/dialogs/EmbedConsent.tsx:100 +msgid "Enable {0} only" +msgstr "Włącz tylko {0}" + +#: src/screens/Moderation/index.tsx:337 +msgid "Enable adult content" +msgstr "Włącz treść dla dorosłych" + +#: src/screens/Settings/components/Email2FAToggle.tsx:53 +msgid "Enable Email 2FA" +msgstr "Włącz uwierzytelnianie dwuskładnikowe (2FA) przez email" + +#: src/components/dialogs/EmbedConsent.tsx:81 +#: src/components/dialogs/EmbedConsent.tsx:88 +msgid "Enable external media" +msgstr "Włącz treść z zewnętrznych stron" + +#: src/screens/Settings/ExternalMediaPreferences.tsx:43 +msgid "Enable media players for" +msgstr "Włącz przeglądarki treści dla" + +#: src/screens/Settings/NotificationSettings.tsx:61 +#: src/screens/Settings/NotificationSettings.tsx:64 +msgid "Enable priority notifications" +msgstr "Włącz powiadomienia priorytetowe" + +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:386 +msgid "Enable subtitles" +msgstr "Włącz napisy" + +#: src/components/dialogs/EmbedConsent.tsx:93 +msgid "Enable this source only" +msgstr "Włącz tylko dla tego źródła" + +#: src/screens/Messages/Settings.tsx:124 +#: src/screens/Messages/Settings.tsx:127 +#: src/screens/Moderation/index.tsx:348 +msgid "Enabled" +msgstr "Włączone" + +#: src/screens/Profile/Sections/Feed.tsx:114 +msgid "End of feed" +msgstr "Koniec kanału" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:159 +msgid "Ensure you have selected a language for each subtitle file." +msgstr "Upewnij się, że wszystkie pliki napisów mają wybrany język." + +#: src/screens/Login/SetNewPasswordForm.tsx:133 +msgid "Enter a password" +msgstr "Wpisz hasło" + +#: src/components/dialogs/MutedWords.tsx:127 +#: src/components/dialogs/MutedWords.tsx:128 +msgid "Enter a word or tag" +msgstr "Wpisz słowo lub tag" + +#: src/components/dialogs/VerifyEmailDialog.tsx:89 +msgid "Enter Code" +msgstr "Wpisz kod" + +#: src/view/com/modals/VerifyEmail.tsx:113 +msgid "Enter Confirmation Code" +msgstr "Wpisz kod autoryzacji" + +#: src/view/com/modals/ChangePassword.tsx:154 +msgid "Enter the code you received to change your password." +msgstr "Wpisz wysłany kod aby zmienić hasło." + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:351 +msgid "Enter the domain you want to use" +msgstr "Wpisz domenę którą chcesz użyć" + +#: 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 "Wpisz adres email użyty podczas tworzenia konta. Wyślemy Ci kod który możesz użyć, aby ustawić nowe hasło." + +#: src/components/dialogs/BirthDateSettings.tsx:107 +msgid "Enter your birth date" +msgstr "Wpisz swoją datę urodzenia" + +#: src/screens/Login/ForgotPasswordForm.tsx:99 +#: src/screens/Signup/StepInfo/index.tsx:182 +msgid "Enter your email address" +msgstr "Wpisz swój adres email" + +#: src/view/com/modals/ChangeEmail.tsx:42 +msgid "Enter your new email above" +msgstr "Wpisz nowy adres email powyżej" + +#: src/view/com/modals/ChangeEmail.tsx:112 +msgid "Enter your new email address below." +msgstr "Wpisz nowy adres email poniżej." + +#: src/screens/Login/index.tsx:98 +msgid "Enter your username and password" +msgstr "Wpisz nazwę użytkownika i hasło" + +#: src/view/com/composer/Composer.tsx:1632 +msgid "Error" +msgstr "Błąd" + +#: src/screens/Settings/components/ExportCarDialog.tsx:47 +msgid "Error occurred while saving file" +msgstr "Błąd podczas zapisywania pliku" + +#: src/screens/Signup/StepCaptcha/index.tsx:56 +msgid "Error receiving captcha response." +msgstr "Błąd podczas odbierania odpowiedzi systemu captcha." + +#: src/screens/Onboarding/StepInterests/index.tsx:183 +#: src/view/screens/Search/Search.tsx:122 +msgid "Error:" +msgstr "Bład:" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:365 +msgid "Everybody" +msgstr "Każdy" + +#: src/components/WhoCanReply.tsx:67 +msgid "Everybody can reply" +msgstr "Każdy może odpowiadać" + +#: src/components/WhoCanReply.tsx:213 +msgid "Everybody can reply to this post." +msgstr "Każdy może odpowiadać na ten wpis." + +#: src/screens/Messages/Settings.tsx:77 +#: src/screens/Messages/Settings.tsx:80 +msgid "Everyone" +msgstr "Każdy" + +#: src/lib/moderation/useReportOptions.ts:73 +msgid "Excessive mentions or replies" +msgstr "Nadmierne wzmianki lub odpowiedzi" + +#: src/lib/moderation/useReportOptions.ts:86 +msgid "Excessive or unwanted messages" +msgstr "Nadmierne lub niechciane wiadomości" + +#: src/components/dialogs/MutedWords.tsx:311 +msgid "Exclude users you follow" +msgstr "Wyklucz osoby obserwowane" + +#: src/components/dialogs/MutedWords.tsx:514 +msgid "Excludes users you follow" +msgstr "Wyklucz osoby obserwowane" + +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:403 +msgid "Exit fullscreen" +msgstr "Wyjdź z trybu pełnoekranowego" + +#: src/view/com/modals/DeleteAccount.tsx:294 +msgid "Exits account deletion process" +msgstr "Rezygnuje z procesu usuwania konta" + +#: src/view/com/modals/CropImage.web.tsx:95 +msgid "Exits image cropping process" +msgstr "Rezygnuje z procesu przycinania zdjęcia" + +#: src/view/com/lightbox/Lightbox.web.tsx:108 +msgid "Exits image view" +msgstr "Wychodzi z przeglądarki zdjęcia" + +#: src/view/com/modals/ListAddRemoveUsers.tsx:89 +msgid "Exits inputting search query" +msgstr "Rezygnuje z wpisywania pytania" + +#: src/view/com/lightbox/Lightbox.web.tsx:182 +msgid "Expand alt text" +msgstr "Pokaż tekst alternatywny" + +#: src/view/com/notifications/FeedItem.tsx:401 +msgid "Expand list of users" +msgstr "Pokaż listę osób" + +#: 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 "Pokaż lub ukryj pełny wpis na który odpowiadasz" + +#: src/lib/api/index.ts:400 +msgid "Expected uri to resolve to a record" +msgstr "Adres uri powinien prowadzić do rekordu" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:116 +#: src/screens/Settings/ThreadPreferences.tsx:124 +msgid "Experimental" +msgstr "Eksperymentalne" + +#: src/components/dialogs/MutedWords.tsx:500 +msgid "Expired" +msgstr "Wygasło" + +#: src/components/dialogs/MutedWords.tsx:502 +msgid "Expires {0}" +msgstr "Wygasa {0}" + +#: src/lib/moderation/useGlobalLabelStrings.ts:47 +msgid "Explicit or potentially disturbing media." +msgstr "Nieodpowiednia lub niepokojąca treść." + +#: src/lib/moderation/useGlobalLabelStrings.ts:35 +msgid "Explicit sexual images." +msgstr "Nieodpowiednia treść seksualna." + +#: src/screens/Settings/AccountSettings.tsx:130 +#: src/screens/Settings/AccountSettings.tsx:134 +msgid "Export my data" +msgstr "Eksportuj moje dane" + +#: src/screens/Settings/components/ExportCarDialog.tsx:62 +msgid "Export My Data" +msgstr "Eksportuj moje dane" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:65 +#: src/screens/Settings/ContentAndMediaSettings.tsx:68 +msgid "External media" +msgstr "Zewnętrzna treść" + +#: src/components/dialogs/EmbedConsent.tsx:54 +#: src/components/dialogs/EmbedConsent.tsx:58 +msgid "External Media" +msgstr "Zewnętrzna treść" + +#: src/components/dialogs/EmbedConsent.tsx:70 +#: src/screens/Settings/ExternalMediaPreferences.tsx:34 +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 "Zewnętrzna treść może pozwalać stronom na pozyskiwanie informacji o Tobie lub Twoim urządzeniu. Informacje nie są wysyłane lub żądane dopóki nie naciśniesz przycisku \"odtwórz\"." + +#: src/Navigation.tsx:313 +#: src/screens/Settings/ExternalMediaPreferences.tsx:29 +msgid "External Media Preferences" +msgstr "Preferencje treści zewnętrznych" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:553 +msgid "Failed to change handle. Please try again." +msgstr "Błąd podczas zmiany nazwy. Proszę spróbować ponownie." + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:173 +msgid "Failed to create app password. Please try again." +msgstr "Błąd podczas utworzenia hasła aplikacji." + +#: src/screens/StarterPack/Wizard/index.tsx:238 +#: src/screens/StarterPack/Wizard/index.tsx:246 +msgid "Failed to create starter pack" +msgstr "Błąd podczas tworzenia pakietu startowego" + +#: src/view/com/modals/CreateOrEditList.tsx:186 +msgid "Failed to create the list. Check your internet connection and try again." +msgstr "Błąd podczas utworzenia listy. Sprawdź połączenie i spróbuj ponownie." + +#: src/components/dms/MessageMenu.tsx:73 +msgid "Failed to delete message" +msgstr "Błąd podczas usuwania wiadomości" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 +msgid "Failed to delete post, please try again" +msgstr "Błąd podczas usuwania wpisu. Proszę spróbować ponownie." + +#: src/screens/StarterPack/StarterPackScreen.tsx:698 +msgid "Failed to delete starter pack" +msgstr "Błąd podczas usuwania pakietu startowego" + +#: src/view/screens/Search/Explore.tsx:427 +#: src/view/screens/Search/Explore.tsx:455 +msgid "Failed to load feeds preferences" +msgstr "Błąd podczas pobierania preferencji kanałów" + +#: src/components/dialogs/GifSelect.tsx:225 +msgid "Failed to load GIFs" +msgstr "Błąd podczas pobierania GIF-ów" + +#: src/screens/Messages/components/MessageListError.tsx:23 +msgid "Failed to load past messages" +msgstr "Błąd podczas pobierania wiadomości" + +#: src/view/screens/Search/Explore.tsx:420 +#: src/view/screens/Search/Explore.tsx:448 +msgid "Failed to load suggested feeds" +msgstr "Błąd podczas pobierania sugestii kanałów" + +#: src/view/screens/Search/Explore.tsx:378 +msgid "Failed to load suggested follows" +msgstr "Błąd podczas pobierania sugestii obserwowania" + +#: src/state/queries/pinned-post.ts:75 +msgid "Failed to pin post" +msgstr "Błąd podczas przypinania wpisu" + +#: src/view/com/lightbox/Lightbox.tsx:46 +msgid "Failed to save image: {0}" +msgstr "Błąd podczas pobierania zdjęcia: {0}" + +#: src/state/queries/notifications/settings.ts:39 +msgid "Failed to save notification preferences, please try again" +msgstr "Błąd podczas zapisywania preferencji powiadomień, spróbuj ponownie." + +#: src/components/dms/MessageItem.tsx:233 +msgid "Failed to send" +msgstr "Błąd podczas wysyłania" + +#: src/components/moderation/LabelsOnMeDialog.tsx:229 +#: src/screens/Messages/components/ChatDisabled.tsx:87 +msgid "Failed to submit appeal, please try again." +msgstr "Błąd podczas wysyłania apelacji, spróbuj ponownie." + +#: src/view/com/util/forms/PostDropdownBtn.tsx:229 +msgid "Failed to toggle thread mute, please try again" +msgstr "Błąd podczas wyciszania wątku, spróbuj ponownie." + +#: src/components/FeedCard.tsx:276 +msgid "Failed to update feeds" +msgstr "Błąd podczas zapisywania kanałów" + +#: src/screens/Messages/Settings.tsx:36 +msgid "Failed to update settings" +msgstr "Błąd podczas zapisywania ustawień" + +#: 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 "Błąd podczas wysyłania wideo" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:341 +msgid "Failed to verify handle. Please try again." +msgstr "Błąd podczas weryfikacji nazwy. Proszę spróbować ponownie." + +#: src/Navigation.tsx:229 +msgid "Feed" +msgstr "Kanał" + +#: src/components/FeedCard.tsx:134 +#: src/view/com/feeds/FeedSourceCard.tsx:253 +msgid "Feed by {0}" +msgstr "Kanał od {0}" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 +msgid "Feed toggle" +msgstr "Przełącznik kanału" + +#: src/view/shell/desktop/RightNav.tsx:70 +#: src/view/shell/Drawer.tsx:319 +msgid "Feedback" +msgstr "Opinie" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:271 +#: src/view/com/util/forms/PostDropdownBtn.tsx:280 +msgid "Feedback sent!" +msgstr "Opinia wysłana!" + +#: src/Navigation.tsx:388 +#: src/screens/StarterPack/StarterPackScreen.tsx:183 +#: src/view/screens/Feeds.tsx:446 +#: src/view/screens/Feeds.tsx:552 +#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Search/Search.tsx:537 +#: src/view/shell/desktop/LeftNav.tsx:457 +#: src/view/shell/Drawer.tsx:476 +msgid "Feeds" +msgstr "Kanały" + +#: src/view/screens/SavedFeeds.tsx:205 +msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." +msgstr "Kanały to algorytmy od społeczności, budowane przy użyciu szczypty doświadczenia z programowaniem. <0/> aby dowiedzieć się więcej." + +#: src/components/FeedCard.tsx:273 +#: src/view/screens/SavedFeeds.tsx:83 +msgid "Feeds updated!" +msgstr "Kanały zapisane!" + +#: src/screens/Settings/components/ExportCarDialog.tsx:43 +msgid "File saved successfully!" +msgstr "Plik zapisany pomyślnie!" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:66 +msgid "Filter from feeds" +msgstr "Wyklucz z kanałów" + +#: src/screens/Onboarding/StepFinished.tsx:292 +msgid "Finalizing" +msgstr "Finalizowanie" + +#: 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 "Znajdź osoby do obserwowania" + +#: src/view/screens/Search/Search.tsx:612 +msgid "Find posts and users on Bluesky" +msgstr "Znajdź wpisy i osoby na Bluesky" + +#: src/screens/StarterPack/Wizard/index.tsx:200 +msgid "Finish" +msgstr "Ukończ" + +#: src/screens/Onboarding/index.tsx:35 +msgid "Fitness" +msgstr "Fitness" + +#: src/screens/Onboarding/StepFinished.tsx:272 +msgid "Flexible" +msgstr "Dostosowywalne" + +#. User is not following this account, click to follow +#: src/components/ProfileCard.tsx:358 +#: src/components/ProfileHoverCard/index.web.tsx:449 +#: src/components/ProfileHoverCard/index.web.tsx:460 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:234 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:132 +msgid "Follow" +msgstr "Obserwuj" + +#: src/view/com/profile/FollowButton.tsx:70 +msgctxt "action" +msgid "Follow" +msgstr "Obserwuj" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:218 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:114 +msgid "Follow {0}" +msgstr "Obserwuj {0}" + +#: src/view/com/posts/AviFollowButton.tsx:68 +msgid "Follow {name}" +msgstr "Obserwuj {name}" + +#: src/components/ProgressGuide/List.tsx:54 +msgid "Follow 7 accounts" +msgstr "Zaobserwuj 7 osób" + +#: src/view/com/profile/ProfileMenu.tsx:222 +#: src/view/com/profile/ProfileMenu.tsx:233 +msgid "Follow Account" +msgstr "Obserwuj konto" + +#: src/screens/StarterPack/StarterPackScreen.tsx:427 +#: src/screens/StarterPack/StarterPackScreen.tsx:435 +msgid "Follow all" +msgstr "Obserwuj wszystkich" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:232 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:130 +msgid "Follow Back" +msgstr "Obs. w zamian" + +#: src/view/com/profile/FollowButton.tsx:79 +msgctxt "action" +msgid "Follow Back" +msgstr "Obs. w zamian" + +#: src/view/screens/Search/Explore.tsx:334 +msgid "Follow more accounts to get connected to your interests and build your network." +msgstr "Obserwuj więcej osób, aby połączyć się z swoimi pasjami i nawiązywać nowe relacje." + +#: src/components/KnownFollowers.tsx:231 +msgid "Followed by <0>{0}" +msgstr "Obserwowane przez <0>{0}" + +#: src/components/KnownFollowers.tsx:217 +msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" +msgstr "Obserwowane przez <0>{0} i {1, plural, one {# innego/inną} other {# innych}}" + +#: src/components/KnownFollowers.tsx:204 +msgid "Followed by <0>{0} and <1>{1}" +msgstr "Obserwowane przez <0>{0} i <1>{1}" + +#: src/components/KnownFollowers.tsx:186 +msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" +msgstr "Obserwowane przez <0>{0}, <1>{1} i {2, plural, one {# innego/inną} other {# innych}}" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:404 +msgid "Followed users" +msgstr "Obserwowane osoby" + +#: src/view/screens/ProfileFollowers.tsx:30 +#: src/view/screens/ProfileFollowers.tsx:31 +msgid "Followers" +msgstr "Obserwujący" + +#: src/Navigation.tsx:190 +msgid "Followers of @{0} that you know" +msgstr "Obserwujący @{0}, których znasz" + +#: src/screens/Profile/KnownFollowers.tsx:110 +#: src/screens/Profile/KnownFollowers.tsx:120 +msgid "Followers you know" +msgstr "Obserwujący, których znasz" + +#. User is following this account, click to unfollow +#: src/components/ProfileCard.tsx:352 +#: src/components/ProfileHoverCard/index.web.tsx:448 +#: src/components/ProfileHoverCard/index.web.tsx:459 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:230 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:135 +#: src/view/screens/Feeds.tsx:632 +#: src/view/screens/ProfileFollows.tsx:30 +#: src/view/screens/ProfileFollows.tsx:31 +#: src/view/screens/SavedFeeds.tsx:431 +msgid "Following" +msgstr "Obserwowane" + +#: src/components/ProfileCard.tsx:318 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 +msgid "Following {0}" +msgstr "Obserwujący {0}" + +#: src/view/com/posts/AviFollowButton.tsx:50 +msgid "Following {name}" +msgstr "Obserwujesz {name}" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:57 +#: src/screens/Settings/ContentAndMediaSettings.tsx:60 +msgid "Following feed preferences" +msgstr "Ust. kanału osób obserwowanych" + +#: src/Navigation.tsx:300 +#: src/screens/Settings/FollowingFeedPreferences.tsx:50 +msgid "Following Feed Preferences" +msgstr "Ust. kanału osób obserwowanych" + +#: src/screens/Profile/Header/Handle.tsx:33 +msgid "Follows you" +msgstr "Obserwuje Cię" + +#: src/components/Pills.tsx:175 +msgid "Follows You" +msgstr "Obserwuje Cię" + +#: src/screens/Settings/AppearanceSettings.tsx:125 +msgid "Font" +msgstr "Czcionka" + +#: src/screens/Settings/AppearanceSettings.tsx:145 +msgid "Font size" +msgstr "Rozmiar czcionki" + +#: src/screens/Onboarding/index.tsx:40 +#: src/screens/Onboarding/state.ts:89 +msgid "Food" +msgstr "Żywność" + +#: src/view/com/modals/DeleteAccount.tsx:129 +msgid "For security reasons, we'll need to send a confirmation code to your email address." +msgstr "Ze względów bezpieczeństwa, musimy wysłać kod autoryzacji na Twój adres email." + +#: 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 "Ze względów bezpieczeństwa, nie będzie możliwości wyświetlić tego ponownie. Jeśli stracisz to hasło, musisz wygenerować nowe." + +#: src/screens/Settings/AppearanceSettings.tsx:127 +msgid "For the best experience, we recommend using the theme font." +msgstr "Dla najlepszych wrażeń, rekomendujemy użycie czcionki motywu." + +#: src/components/dialogs/MutedWords.tsx:178 +msgid "Forever" +msgstr "Na zawsze" + +#: src/screens/Login/index.tsx:126 +#: src/screens/Login/index.tsx:141 +msgid "Forgot Password" +msgstr "Zapomniałem/am hasło" + +#: src/screens/Login/LoginForm.tsx:230 +msgid "Forgot password?" +msgstr "Zapomniałeś/aś hasło?" + +#: src/screens/Login/LoginForm.tsx:241 +msgid "Forgot?" +msgstr "Zapomniałeś/aś?" + +#: src/lib/moderation/useReportOptions.ts:54 +msgid "Frequently Posts Unwanted Content" +msgstr "Często wysyła niechciane treści" + +#: src/screens/Hashtag.tsx:117 +msgid "From @{sanitizedAuthor}" +msgstr "Od @{sanitizedAuthor}" + +#: src/view/com/posts/FeedItem.tsx:282 +msgctxt "from-feed" +msgid "From <0/>" +msgstr "Od <0/>" + +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:404 +msgid "Fullscreen" +msgstr "Pełny ekran" + +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:50 +msgid "Gallery" +msgstr "Galeria" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:297 +msgid "Generate a starter pack" +msgstr "Wygeneruj pakiet startowy" + +#: src/view/shell/Drawer.tsx:323 +msgid "Get help" +msgstr "Uzyskaj pomoc" + +#: src/view/com/modals/VerifyEmail.tsx:197 +#: src/view/com/modals/VerifyEmail.tsx:199 +msgid "Get Started" +msgstr "Zacznij" + +#: src/components/ProgressGuide/List.tsx:33 +msgid "Getting started" +msgstr "Zaczynamy" + +#: src/components/MediaPreview.tsx:122 +msgid "GIF" +msgstr "GIF" + +#: src/screens/Onboarding/StepProfile/index.tsx:234 +msgid "Give your profile a face" +msgstr "Zaprezentuj swój profil" + +#: src/lib/moderation/useReportOptions.ts:39 +msgid "Glaring violations of law or terms of service" +msgstr "Rażące łamanie prawa lub regulaminu korzystania z serwisu" + +#: src/components/moderation/ScreenHider.tsx:154 +#: src/components/moderation/ScreenHider.tsx:163 +#: src/view/com/auth/LoggedOut.tsx:72 +#: src/view/screens/NotFound.tsx:57 +#: src/view/screens/ProfileFeed.tsx:113 +#: src/view/screens/ProfileList.tsx:1029 +#: src/view/shell/desktop/LeftNav.tsx:134 +msgid "Go back" +msgstr "Wróć" + +#: src/components/Error.tsx:79 +#: src/screens/List/ListHiddenScreen.tsx:210 +#: src/screens/Profile/ErrorState.tsx:62 +#: src/screens/Profile/ErrorState.tsx:66 +#: src/screens/StarterPack/StarterPackScreen.tsx:757 +#: src/view/screens/NotFound.tsx:56 +#: src/view/screens/ProfileFeed.tsx:118 +#: src/view/screens/ProfileList.tsx:1034 +msgid "Go Back" +msgstr "Wróć" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:529 +msgid "Go back to previous page" +msgstr "Wróć do poprzedniej strony" + +#: src/components/dms/ReportDialog.tsx:149 +#: src/components/ReportDialog/SelectReportOptionView.tsx:80 +#: src/components/ReportDialog/SubmitView.tsx:109 +#: src/screens/Onboarding/Layout.tsx:102 +#: src/screens/Onboarding/Layout.tsx:191 +#: src/screens/Signup/BackNextButtons.tsx:36 +msgid "Go back to previous step" +msgstr "Wróć do poprzedniego etapu" + +#: src/screens/StarterPack/Wizard/index.tsx:308 +msgid "Go back to the previous step" +msgstr "Wróć do poprzedniego etapu" + +#: src/view/screens/NotFound.tsx:57 +msgid "Go home" +msgstr "Wróć na początek" + +#: src/view/screens/NotFound.tsx:56 +msgid "Go Home" +msgstr "Wróć na początek" + +#: src/screens/Messages/components/ChatListItem.tsx:264 +msgid "Go to conversation with {0}" +msgstr "Idź do rozmowy z {0}" + +#: src/screens/Login/ForgotPasswordForm.tsx:165 +#: src/view/com/modals/ChangePassword.tsx:168 +msgid "Go to next" +msgstr "Idź do następnego" + +#: src/components/dms/ConvoMenu.tsx:167 +msgid "Go to profile" +msgstr "Idź do profilu" + +#: src/components/dms/ConvoMenu.tsx:164 +msgid "Go to user's profile" +msgstr "Zobacz profil" + +#: src/lib/moderation/useGlobalLabelStrings.ts:46 +#: src/view/com/composer/labels/LabelsBtn.tsx:203 +#: src/view/com/composer/labels/LabelsBtn.tsx:206 +msgid "Graphic Media" +msgstr "Niepokojąca treść" + +#: src/state/shell/progress-guide.tsx:161 +msgid "Half way there!" +msgstr "Już w połowie drogi!" + +#: src/screens/Settings/AccountSettings.tsx:119 +#: src/screens/Settings/AccountSettings.tsx:124 +msgid "Handle" +msgstr "Nazwa" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:557 +msgid "Handle already taken. Please try a different one." +msgstr "Nazwa zajęta. Proszę spróbować coś innego." + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:188 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:325 +msgid "Handle changed!" +msgstr "Nazwa zmieniona!" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:561 +msgid "Handle too long. Please try a shorter one." +msgstr "Nazwa za długa. Proszę spróbować coś krótszego." + +#: src/screens/Settings/AccessibilitySettings.tsx:80 +msgid "Haptics" +msgstr "Haptyka" + +#: src/lib/moderation/useReportOptions.ts:34 +msgid "Harassment, trolling, or intolerance" +msgstr "Dokuczanie, trolling, brak tolerancji" + +#: src/Navigation.tsx:368 +msgid "Hashtag" +msgstr "Hashtag" + +#: src/components/RichText.tsx:226 +msgid "Hashtag: #{tag}" +msgstr "Hashtag: #{tag}" + +#: src/screens/Signup/index.tsx:173 +msgid "Having trouble?" +msgstr "Masz problem?" + +#: src/screens/Settings/Settings.tsx:199 +#: src/screens/Settings/Settings.tsx:203 +#: src/view/shell/desktop/RightNav.tsx:99 +#: src/view/shell/Drawer.tsx:332 +msgid "Help" +msgstr "Pomoc" + +#: 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 "Daj ludziom znać, że nie jesteś botem, ustawiając lub tworząc zdjęcie profilowe." + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:187 +msgid "Here is your app password!" +msgstr "Oto twoje hasło aplikacji!" + +#: src/components/ListCard.tsx:130 +msgid "Hidden list" +msgstr "Ukryta lista" + +#: src/components/moderation/ContentHider.tsx:178 +#: 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/view/com/util/forms/PostDropdownBtn.tsx:684 +msgid "Hide" +msgstr "Ukryj" + +#: src/view/com/notifications/FeedItem.tsx:600 +msgctxt "action" +msgid "Hide" +msgstr "Ukryj" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:543 +#: src/view/com/util/forms/PostDropdownBtn.tsx:549 +msgid "Hide post for me" +msgstr "Ukryj dla mnie" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:560 +#: src/view/com/util/forms/PostDropdownBtn.tsx:570 +msgid "Hide reply for everyone" +msgstr "Ukryj dla wszystkich" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:542 +#: src/view/com/util/forms/PostDropdownBtn.tsx:548 +msgid "Hide reply for me" +msgstr "Ukryj dla mnie" + +#: src/components/moderation/ContentHider.tsx:129 +#: src/components/moderation/PostHider.tsx:79 +msgid "Hide the content" +msgstr "Ukryj tą treść" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:679 +msgid "Hide this post?" +msgstr "Ukryć ten wpis?" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:679 +#: src/view/com/util/forms/PostDropdownBtn.tsx:741 +msgid "Hide this reply?" +msgstr "Ukryć tą odpowiedź?" + +#: src/view/com/notifications/FeedItem.tsx:591 +msgid "Hide user list" +msgstr "Ukryj listę osób" + +#: src/view/com/posts/FeedErrorMessage.tsx:117 +msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." +msgstr "Hm, coś poszło nie tak podczas łączenia z serwerem kanału. Proszę dać znać autorowi kanału o tym problemie." + +#: src/view/com/posts/FeedErrorMessage.tsx:105 +msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." +msgstr "Hm, serwer kanału wygląda na źle skonfigurowany. Proszę dać znać autorowi kanału o tym problemie." + +#: src/view/com/posts/FeedErrorMessage.tsx:111 +msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." +msgstr "Hm, wygląda na to, że serwer tego kanału jest nieaktywny. Proszę dać znać autorowi kanału o tym problemie." + +#: src/view/com/posts/FeedErrorMessage.tsx:108 +msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." +msgstr "Hm, serwer kanału dał złą odpowiedź. Proszę dać znać autorowi kanału o tym problemie." + +#: src/view/com/posts/FeedErrorMessage.tsx:102 +msgid "Hmm, we're having trouble finding this feed. It may have been deleted." +msgstr "Hm, mamy problem ze znalezieniem tego kanału. Być może został usunięty." + +#: src/screens/Moderation/index.tsx:55 +msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." +msgstr "Hm, mamy problem z pobieraniem tych danych. Poniżej zobaczysz więcej informacji. Jeśli to będzie długo trwać, skontaktuj się z nami." + +#: src/screens/Profile/ErrorState.tsx:31 +msgid "Hmmmm, we couldn't load that moderation service." +msgstr "Hm, nie możemy pobrać tej usługi moderacji" + +#: src/view/com/composer/state/video.ts:426 +msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" +msgstr "Czekaj! Stopniowo dajemy dostęp do usługi wideo, a Ty jeszcze czekasz w kolejce. Spróbuj ponownie później!" + +#: src/Navigation.tsx:585 +#: src/Navigation.tsx:605 +#: src/view/shell/bottom-bar/BottomBar.tsx:158 +#: src/view/shell/desktop/LeftNav.tsx:401 +#: src/view/shell/Drawer.tsx:391 +msgid "Home" +msgstr "Główna" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:398 +msgid "Host:" +msgstr "Host:" + +#: src/screens/Login/ForgotPasswordForm.tsx:83 +#: src/screens/Login/LoginForm.tsx:166 +#: src/screens/Signup/StepInfo/index.tsx:133 +msgid "Hosting provider" +msgstr "Dostawca usługi" + +#: src/view/com/modals/InAppBrowserConsent.tsx:41 +msgid "How should we open this link?" +msgstr "Jak mamy otworzyć ten link?" + +#: 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 "Mam kod" + +#: src/components/dialogs/VerifyEmailDialog.tsx:239 +#: src/components/dialogs/VerifyEmailDialog.tsx:246 +msgid "I Have a Code" +msgstr "Mam kod" + +#: src/view/com/modals/VerifyEmail.tsx:224 +msgid "I have a confirmation code" +msgstr "Mam kod autoryzacji" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:261 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:267 +msgid "I have my own domain" +msgstr "Mam własną domenę" + +#: src/components/dms/BlockedByListDialog.tsx:57 +#: src/components/dms/ReportConversationPrompt.tsx:22 +msgid "I understand" +msgstr "Rozumiem" + +#: src/view/com/lightbox/Lightbox.web.tsx:184 +msgid "If alt text is long, toggles alt text expanded state" +msgstr "Jeśli tekst alternatywny jest za długi, przełącza stan rozwinięcia" + +#: 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 "Jeżeli nie jesteś jeszcze osobą dorosłą w ​​rozumieniu prawa obowiązującego w Twoim kraju, Twój rodzic lub opiekun prawny musi przeczytać niniejsze Warunki w Twoim imieniu." + +#: src/view/screens/ProfileList.tsx:723 +msgid "If you delete this list, you won't be able to recover it." +msgstr "Jeśli usuniesz tą listę, nie będziesz móc jej odzyskać." + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:247 +msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity – <0>learn more." +msgstr "Jeśli masz własną domenę, możesz ją użyć jako nazwę użytkownika. To pozwala na samodzielną weryfikacje tożsamości - <0>dowiedz się więcej." + +#: src/view/com/util/forms/PostDropdownBtn.tsx:670 +msgid "If you remove this post, you won't be able to recover it." +msgstr "Jeśli usuniesz ten wpis, nie będziesz móc jego odzyskać." + +#: 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 "Jeśli chcesz zmienić hasło, wyślemy kod aby zweryfikować, że jesteś właścicielem tego konta." + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92 +msgid "If you're trying to change your handle or email, do so before you deactivate." +msgstr "Jeśli chcesz zmienić nazwę lub email, musisz to zrobić przed dezaktywacją." + +#: src/lib/moderation/useReportOptions.ts:38 +msgid "Illegal and Urgent" +msgstr "Nielegalne, Pilne" + +#: src/view/com/util/images/Gallery.tsx:74 +msgid "Image" +msgstr "Obraz" + +#: src/components/StarterPack/ShareDialog.tsx:77 +msgid "Image saved to your camera roll!" +msgstr "Zdjęcie pobrane!" + +#: src/lib/moderation/useReportOptions.ts:49 +msgid "Impersonation or false claims about identity or affiliation" +msgstr "Podszywanie się, fałszywe pretensje na temat tożsamości lub przynależności" + +#: src/lib/moderation/useReportOptions.ts:68 +msgid "Impersonation, misinformation, or false claims" +msgstr "Podszywanie się, fałszywe informacje" + +#: src/lib/moderation/useReportOptions.ts:91 +msgid "Inappropriate messages or explicit links" +msgstr "Nieodpowiednie wiadomości lub niepokojące linki" + +#: src/screens/Login/SetNewPasswordForm.tsx:121 +msgid "Input code sent to your email for password reset" +msgstr "Wpisz kod wysłany na twój email" + +#: src/view/com/modals/DeleteAccount.tsx:247 +msgid "Input confirmation code for account deletion" +msgstr "Wpisz kod autoryzacji usunięcia konta" + +#: src/screens/Login/SetNewPasswordForm.tsx:145 +msgid "Input new password" +msgstr "Wpisz nowe hasło" + +#: src/view/com/modals/DeleteAccount.tsx:266 +msgid "Input password for account deletion" +msgstr "Wpisz hasło, aby usunąć konto" + +#: src/screens/Login/LoginForm.tsx:270 +msgid "Input the code which has been emailed to you" +msgstr "Wpisz kod, który został wysłany na Twój adres email" + +#: src/screens/Login/LoginForm.tsx:200 +msgid "Input the username or email address you used at signup" +msgstr "Wpisz nazwę użytkownika lub adres email użyty przy rejestracji" + +#: src/screens/Login/LoginForm.tsx:225 +msgid "Input your password" +msgstr "Wpisz hasło" + +#: src/screens/Signup/StepHandle.tsx:114 +msgid "Input your user handle" +msgstr "Wpisz nazwę użytkownika" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:50 +msgid "Interaction limited" +msgstr "Interakcje są ograniczone" + +#: src/screens/Login/LoginForm.tsx:142 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:70 +msgid "Invalid 2FA confirmation code." +msgstr "Nieprawidłowy kod 2FA." + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:563 +msgid "Invalid handle. Please try a different one." +msgstr "Nieprawidłowa nazwa. Proszę spróbować coś innego." + +#: src/view/com/post-thread/PostThreadItem.tsx:272 +msgid "Invalid or unsupported post record" +msgstr "Nieprawidłowy rekord wpisu" + +#: src/screens/Login/LoginForm.tsx:88 +#: src/screens/Login/LoginForm.tsx:147 +msgid "Invalid username or password" +msgstr "Nieprawidłowa nazwa lub hasło" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:91 +msgid "Invalid Verification Code" +msgstr "Nieprawidłowy kod weryfikacji" + +#: src/view/com/modals/InviteCodes.tsx:94 +msgid "Invite a Friend" +msgstr "Zaproś Przyjaciół" + +#: src/screens/Signup/StepInfo/index.tsx:151 +msgid "Invite code" +msgstr "Kod zaproszenia" + +#: src/screens/Signup/state.ts:258 +msgid "Invite code not accepted. Check that you input it correctly and try again." +msgstr "Nieprawidłowy kod zaproszenia. Czy kod jest poprawnie wpisany?" + +#: src/view/com/modals/InviteCodes.tsx:171 +msgid "Invite codes: {0} available" +msgstr "Kody zaproszenia: {0} dostępne" + +#: src/view/com/modals/InviteCodes.tsx:170 +msgid "Invite codes: 1 available" +msgstr "Kod zaproszenia: 1 dostępny" + +#: src/components/StarterPack/ShareDialog.tsx:97 +msgid "Invite people to this starter pack!" +msgstr "Zaproś osoby z tym pakietem startowym!" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:35 +msgid "Invite your friends to follow your favorite feeds and people" +msgstr "Zaproś przyjaciół do obserwowania Twoich ulubionych kanałów i osób" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:32 +msgid "Invites, but personal" +msgstr "Zaproszenia, ale takie osobiste" + +#: 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 "Adres email wygląda nieprawidłowo. Czy na pewno jest dobrze wpisany?" + +#: src/screens/Signup/StepInfo/index.tsx:241 +msgid "It's correct" +msgstr "Wygląda prawidłowo" + +#: src/screens/StarterPack/Wizard/index.tsx:461 +msgid "It's just you right now! Add more people to your starter pack by searching above." +msgstr "Na razie tylko Ty! Wyszukaj osoby powyżej i dodaj je do pakietu." + +#: src/view/com/composer/Composer.tsx:1566 +msgid "Job ID: {0}" +msgstr "ID: {0}" + +#: src/view/com/auth/SplashScreen.web.tsx:178 +msgid "Jobs" +msgstr "Praca" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207 +#: src/screens/StarterPack/StarterPackScreen.tsx:455 +#: src/screens/StarterPack/StarterPackScreen.tsx:466 +msgid "Join Bluesky" +msgstr "Dołącz do Bkuesky" + +#: src/components/StarterPack/QrCode.tsx:61 +#: src/view/shell/NavSignupCard.tsx:40 +msgid "Join the conversation" +msgstr "Dołącz do rozmowy" + +#: src/screens/Onboarding/index.tsx:21 +#: src/screens/Onboarding/state.ts:91 +msgid "Journalism" +msgstr "Dziennikarstwo" + +#: src/components/moderation/ContentHider.tsx:209 +msgid "Labeled by {0}." +msgstr "Etykieta od {0}." + +#: src/components/moderation/ContentHider.tsx:207 +msgid "Labeled by the author." +msgstr "Etykieta od autora." + +#: src/view/com/composer/labels/LabelsBtn.tsx:76 +#: src/view/screens/Profile.tsx:226 +msgid "Labels" +msgstr "Etykiety" + +#: src/view/com/composer/labels/LabelsBtn.tsx:74 +msgid "Labels added" +msgstr "Etykiety dodane" + +#: src/screens/Profile/Sections/Labels.tsx:163 +msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." +msgstr "Etykiety to adnotacje na osobach i treściach. Pozwalają ukrywać, ostrzegać i kategoryzować sieć." + +#: src/components/moderation/LabelsOnMeDialog.tsx:71 +msgid "Labels on your account" +msgstr "Etykiety na Twoim koncie" + +#: src/components/moderation/LabelsOnMeDialog.tsx:73 +msgid "Labels on your content" +msgstr "Etykiety na Twojej treści" + +#: src/view/com/composer/select-language/SelectLangBtn.tsx:107 +msgid "Language selection" +msgstr "Wybierz język" + +#: src/Navigation.tsx:163 +msgid "Language Settings" +msgstr "Ustawienia języka" + +#: src/screens/Settings/LanguageSettings.tsx:67 +#: src/screens/Settings/Settings.tsx:191 +#: src/screens/Settings/Settings.tsx:194 +msgid "Languages" +msgstr "Języki" + +#: src/screens/Settings/AppearanceSettings.tsx:157 +msgid "Larger" +msgstr "Większy" + +#: src/screens/Hashtag.tsx:98 +#: src/view/screens/Search/Search.tsx:521 +msgid "Latest" +msgstr "Najnowsze" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:251 +msgid "learn more" +msgstr "dowiedz się więcej" + +#: src/components/moderation/ScreenHider.tsx:140 +msgid "Learn More" +msgstr "Dowiedz się więcej" + +#: src/view/com/auth/SplashScreen.web.tsx:166 +msgid "Learn more about Bluesky" +msgstr "Dowiedz się więcej o Bluesky" + +#: src/view/com/auth/server-input/index.tsx:156 +msgid "Learn more about self hosting your PDS." +msgstr "Dowiedz się więcej o hostingowaniu własnego serwera PDS." + +#: src/components/moderation/ContentHider.tsx:127 +#: src/components/moderation/ContentHider.tsx:193 +msgid "Learn more about the moderation applied to this content." +msgstr "Dowiedz się więcej o moderacji tej treści." + +#: src/components/moderation/PostHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:127 +msgid "Learn more about this warning" +msgstr "Dowiedz się więcej o tym ostrzeżeniu." + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:95 +msgid "Learn more about what is public on Bluesky." +msgstr "Dowiedz się co jest publiczne na Bluesky." + +#: src/components/moderation/ContentHider.tsx:217 +#: src/view/com/auth/server-input/index.tsx:158 +msgid "Learn more." +msgstr "Dowiedz się więcej." + +#: src/components/dms/LeaveConvoPrompt.tsx:50 +msgid "Leave" +msgstr "Opuść" + +#: src/components/dms/MessagesListBlockedFooter.tsx:66 +#: src/components/dms/MessagesListBlockedFooter.tsx:73 +msgid "Leave chat" +msgstr "Opuść rozmowę" + +#: src/components/dms/ConvoMenu.tsx:138 +#: src/components/dms/ConvoMenu.tsx:141 +#: src/components/dms/ConvoMenu.tsx:208 +#: src/components/dms/ConvoMenu.tsx:211 +#: src/components/dms/LeaveConvoPrompt.tsx:46 +msgid "Leave conversation" +msgstr "Opuść rozmowę" + +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:83 +msgid "Leave them all unchecked to see any language." +msgstr "Zostaw wszystkie nieodhaczone, aby zobaczyć wszystkie języki." + +#: src/view/com/modals/LinkWarning.tsx:65 +msgid "Leaving Bluesky" +msgstr "Opuszczasz Bluesky" + +#: src/screens/SignupQueued.tsx:134 +msgid "left to go." +msgstr "pozostałe." + +#: src/components/StarterPack/ProfileStarterPacks.tsx:313 +msgid "Let me choose" +msgstr "Daj mi wybrać" + +#: src/screens/Login/index.tsx:127 +#: src/screens/Login/index.tsx:142 +msgid "Let's get your password reset!" +msgstr "Zresetujmy Twoje hasło!" + +#: src/screens/Onboarding/StepFinished.tsx:292 +msgid "Let's go!" +msgstr "Chodźmy!" + +#: src/screens/Settings/AppearanceSettings.tsx:88 +msgid "Light" +msgstr "Jasny" + +#: src/components/ProgressGuide/List.tsx:48 +msgid "Like 10 posts" +msgstr "Polub 10 wpisów" + +#: src/state/shell/progress-guide.tsx:157 +#: src/state/shell/progress-guide.tsx:162 +msgid "Like 10 posts to train the Discover feed" +msgstr "Polub 10 wpisów, aby podszkolić algorytm" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:275 +#: src/view/screens/ProfileFeed.tsx:576 +msgid "Like this feed" +msgstr "Polub ten kanał" + +#: src/components/LikesDialog.tsx:85 +#: src/Navigation.tsx:234 +#: src/Navigation.tsx:239 +msgid "Liked by" +msgstr "Polubione przez" + +#: src/screens/Post/PostLikedBy.tsx:32 +#: src/screens/Post/PostLikedBy.tsx:33 +#: src/screens/Profile/ProfileLabelerLikedBy.tsx:29 +#: src/view/screens/ProfileFeedLikedBy.tsx:30 +msgid "Liked By" +msgstr "Polubione przez" + +#: src/view/screens/Profile.tsx:231 +msgid "Likes" +msgstr "Polubione" + +#: src/view/com/post-thread/PostThreadItem.tsx:212 +msgid "Likes on this post" +msgstr "Polubienia tego wpisu" + +#: src/Navigation.tsx:196 +msgid "List" +msgstr "Lista" + +#: src/view/com/modals/CreateOrEditList.tsx:241 +msgid "List Avatar" +msgstr "Zdjęcie profilowe listy" + +#: src/view/screens/ProfileList.tsx:422 +msgid "List blocked" +msgstr "Lista zablokowana" + +#: src/components/ListCard.tsx:150 +#: src/view/com/feeds/FeedSourceCard.tsx:255 +msgid "List by {0}" +msgstr "Lista od {0}" + +#: src/view/screens/ProfileList.tsx:459 +msgid "List deleted" +msgstr "Lista usunięta" + +#: src/screens/List/ListHiddenScreen.tsx:126 +msgid "List has been hidden" +msgstr "Lista ukryta" + +#: src/view/screens/ProfileList.tsx:170 +msgid "List Hidden" +msgstr "Lista ukryta" + +#: src/view/screens/ProfileList.tsx:396 +msgid "List muted" +msgstr "Lista wyciszona" + +#: src/view/com/modals/CreateOrEditList.tsx:255 +msgid "List Name" +msgstr "Nazwa listy" + +#: src/view/screens/ProfileList.tsx:435 +msgid "List unblocked" +msgstr "Lista odblokowana" + +#: src/view/screens/ProfileList.tsx:409 +msgid "List unmuted" +msgstr "Przestano wyciszać listę" + +#: src/Navigation.tsx:133 +#: src/view/screens/Profile.tsx:227 +#: src/view/screens/Profile.tsx:234 +#: src/view/shell/desktop/LeftNav.tsx:475 +#: src/view/shell/Drawer.tsx:491 +msgid "Lists" +msgstr "Listy" + +#: src/components/dms/BlockedByListDialog.tsx:39 +msgid "Lists blocking this user:" +msgstr "Listy blokujące tę konto:" + +#: src/view/screens/Search/Explore.tsx:131 +msgid "Load more" +msgstr "Ładuj więcej" + +#: src/view/screens/Search/Explore.tsx:219 +msgid "Load more suggested feeds" +msgstr "Ładuj więcej sugestii kanałów" + +#: src/view/screens/Search/Explore.tsx:217 +msgid "Load more suggested follows" +msgstr "Ładuj więcej sugestii osób" + +#: src/view/screens/Notifications.tsx:215 +msgid "Load new notifications" +msgstr "Ładuj nowe powiadomienia" + +#: src/screens/Profile/Sections/Feed.tsx:96 +#: src/view/com/feeds/FeedPage.tsx:132 +#: src/view/screens/ProfileFeed.tsx:499 +#: src/view/screens/ProfileList.tsx:808 +msgid "Load new posts" +msgstr "Ładuj nowe wpisy" + +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:111 +msgid "Loading..." +msgstr "Ładuję..." + +#: src/Navigation.tsx:259 +msgid "Log" +msgstr "Log" + +#: src/screens/Deactivated.tsx:209 +#: src/screens/Deactivated.tsx:215 +msgid "Log in or sign up" +msgstr "Zaloguj lub zarejestruj się" + +#: src/screens/SignupQueued.tsx:155 +#: src/screens/SignupQueued.tsx:158 +#: src/screens/SignupQueued.tsx:184 +#: src/screens/SignupQueued.tsx:187 +msgid "Log out" +msgstr "Wyloguj się" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:71 +msgid "Logged-out visibility" +msgstr "Widoczność dla niezalogowanych" + +#: src/components/AccountList.tsx:65 +msgid "Login to account that is not listed" +msgstr "Zaloguj się do innego konta" + +#: src/view/shell/desktop/RightNav.tsx:104 +msgid "Logo by <0/>" +msgstr "Logo autorstwa <0/>" + +#: src/view/shell/Drawer.tsx:629 +msgid "Logo by <0>@sawaratsuki.bsky.social" +msgstr "Logo autorstwa <0>@sawaratsuki.bsky.social" + +#: src/components/RichText.tsx:227 +msgid "Long press to open tag menu for #{tag}" +msgstr "Wciśnij długo aby otworzyć menu taga dla #{tag}" + +#: src/screens/Login/SetNewPasswordForm.tsx:110 +msgid "Looks like XXXXX-XXXXX" +msgstr "Wygląda tak: XXXXX-XXXXX" + +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:39 +msgid "Looks like you haven't saved any feeds! Use our recommendations or browse more below." +msgstr "Jeszcze nie masz żadnych zapisanych kanałów. Użyj naszych sugestii lub odszukaj kilka kanałów poniżej." + +#: src/screens/Home/NoFeedsPinned.tsx:83 +msgid "Looks like you unpinned all your feeds. But don't worry, you can add some below 😄" +msgstr "Wygląda na to, że nie masz przypniętych kanałów, ale nie martw się, możesz dodać kilka kanałów poniżej 😄" + +#: src/screens/Feeds/NoFollowingFeed.tsx:37 +msgid "Looks like you're missing a following feed. <0>Click here to add one." +msgstr "Gdzieś się podział Twój kanał obserwowanych osób. <0>Kliknij aby jego dodać." + +#: src/components/StarterPack/ProfileStarterPacks.tsx:266 +msgid "Make one for me" +msgstr "Utwórz go dla mnie" + +#: src/view/com/modals/LinkWarning.tsx:79 +msgid "Make sure this is where you intend to go!" +msgstr "Upewnij się, że zamierzasz tutaj isć!" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:41 +#: src/screens/Settings/ContentAndMediaSettings.tsx:44 +msgid "Manage saved feeds" +msgstr "Zarządzaj zapisanymi kanałami" + +#: src/components/dialogs/MutedWords.tsx:108 +msgid "Manage your muted words and tags" +msgstr "Zarządzaj wyciszonymi słowami i tagami" + +#: src/components/dms/ConvoMenu.tsx:151 +#: src/components/dms/ConvoMenu.tsx:158 +msgid "Mark as read" +msgstr "Oznacz jako przeczytane" + +#: src/view/screens/Profile.tsx:230 +msgid "Media" +msgstr "Media" + +#: src/view/com/composer/labels/LabelsBtn.tsx:212 +msgid "Media that may be disturbing or inappropriate for some audiences." +msgstr "Treść, która może być niepokojąca lub niewłaściwa dla niektórych odbiorców." + +#: src/components/WhoCanReply.tsx:254 +msgid "mentioned users" +msgstr "wspomniane osoby" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 +msgid "Mentioned users" +msgstr "Wspomniane osoby" + +#: src/components/Menu/index.tsx:95 +#: src/view/com/util/ViewHeader.tsx:87 +#: src/view/screens/Search/Search.tsx:882 +msgid "Menu" +msgstr "Menu" + +#: src/components/dms/MessageProfileButton.tsx:82 +msgid "Message {0}" +msgstr "Napisz do {0}" + +#: src/components/dms/MessageMenu.tsx:72 +#: src/screens/Messages/components/ChatListItem.tsx:165 +msgid "Message deleted" +msgstr "Wiadomość usunięta" + +#: src/view/com/posts/FeedErrorMessage.tsx:201 +msgid "Message from server: {0}" +msgstr "Wiadomość od serwera: {0}" + +#: src/screens/Messages/components/MessageInput.tsx:147 +msgid "Message input field" +msgstr "Obszar wprowadzania wiadomości" + +#: src/screens/Messages/components/MessageInput.tsx:78 +#: src/screens/Messages/components/MessageInput.web.tsx:59 +msgid "Message is too long" +msgstr "Wiadomość jest za długa" + +#: src/screens/Messages/ChatList.tsx:318 +msgid "Message settings" +msgstr "Ustawienia wiadomości" + +#: src/Navigation.tsx:600 +#: src/screens/Messages/ChatList.tsx:162 +#: src/screens/Messages/ChatList.tsx:243 +#: src/screens/Messages/ChatList.tsx:314 +msgid "Messages" +msgstr "Rozmowy" + +#: src/lib/moderation/useReportOptions.ts:47 +msgid "Misleading Account" +msgstr "Konto wprowadzające w błąd" + +#: src/lib/moderation/useReportOptions.ts:67 +msgid "Misleading Post" +msgstr "Wpis wprowadzający w błąd" + +#: src/Navigation.tsx:138 +#: src/screens/Moderation/index.tsx:101 +#: src/screens/Settings/Settings.tsx:159 +#: src/screens/Settings/Settings.tsx:162 +msgid "Moderation" +msgstr "Moderacja" + +#: src/components/moderation/ModerationDetailsDialog.tsx:133 +msgid "Moderation details" +msgstr "Detale moderacji" + +#: src/components/ListCard.tsx:149 +#: src/view/com/modals/UserAddRemoveLists.tsx:222 +msgid "Moderation list by {0}" +msgstr "Lista moderacji od {0}" + +#: src/view/screens/ProfileList.tsx:902 +msgid "Moderation list by <0/>" +msgstr "Lista moderacji od <0/>" + +#: src/view/com/modals/UserAddRemoveLists.tsx:220 +#: src/view/screens/ProfileList.tsx:900 +msgid "Moderation list by you" +msgstr "Twoja lista moderacji" + +#: src/view/com/modals/CreateOrEditList.tsx:177 +msgid "Moderation list created" +msgstr "Lista moderacji utworzona" + +#: src/view/com/modals/CreateOrEditList.tsx:163 +msgid "Moderation list updated" +msgstr "Lista moderacji zapisana" + +#: src/screens/Moderation/index.tsx:244 +msgid "Moderation lists" +msgstr "Listy moderacji" + +#: src/Navigation.tsx:143 +#: src/view/screens/ModerationModlists.tsx:72 +msgid "Moderation Lists" +msgstr "Listy moderacji" + +#: src/components/moderation/LabelPreference.tsx:247 +msgid "moderation settings" +msgstr "ustawienia moderacji" + +#: src/Navigation.tsx:249 +msgid "Moderation states" +msgstr "Stany moderacji" + +#: src/screens/Moderation/index.tsx:213 +msgid "Moderation tools" +msgstr "Narzędzia moderacji" + +#: src/components/moderation/ModerationDetailsDialog.tsx:51 +#: src/lib/moderation/useModerationCauseDescription.ts:45 +msgid "Moderator has chosen to set a general warning on the content." +msgstr "Moderator postanowił dać tej treści ogólne ostrzeżenie." + +#: src/view/com/post-thread/PostThreadItem.tsx:628 +msgid "More" +msgstr "Więcej" + +#: src/view/shell/desktop/Feeds.tsx:55 +msgid "More feeds" +msgstr "Więcej kanałów" + +#: src/view/com/profile/ProfileMenu.tsx:179 +#: src/view/screens/ProfileList.tsx:712 +msgid "More options" +msgstr "Więcej opcji" + +#: src/screens/Settings/ThreadPreferences.tsx:81 +msgid "Most-liked first" +msgstr "Najbardziej lubiane pierwsze" + +#: src/screens/Settings/ThreadPreferences.tsx:78 +msgid "Most-liked replies first" +msgstr "Najbardziej lubiane odpowiedzi pierwsze" + +#: src/screens/Onboarding/state.ts:92 +msgid "Movies" +msgstr "Filmy" + +#: src/screens/Onboarding/state.ts:93 +msgid "Music" +msgstr "Muzyka" + +#: src/components/TagMenu/index.tsx:248 +msgid "Mute" +msgstr "Wycisz" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:157 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 +msgctxt "video" +msgid "Mute" +msgstr "Wycisz" + +#: src/components/TagMenu/index.web.tsx:116 +msgid "Mute {truncatedTag}" +msgstr "Wycisz {truncatedTag}" + +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 +msgid "Mute Account" +msgstr "Wycisz konto" + +#: src/view/screens/ProfileList.tsx:631 +msgid "Mute accounts" +msgstr "Wycisz konta" + +#: src/components/TagMenu/index.tsx:205 +msgid "Mute all {displayTag} posts" +msgstr "Wycisz wpisy na temat {displayTag}" + +#: src/components/dms/ConvoMenu.tsx:172 +#: src/components/dms/ConvoMenu.tsx:178 +msgid "Mute conversation" +msgstr "Wycisz rozmowę" + +#: src/components/dialogs/MutedWords.tsx:253 +msgid "Mute in:" +msgstr "Wycisz w:" + +#: src/view/screens/ProfileList.tsx:737 +msgid "Mute list" +msgstr "Wycisz listę" + +#: src/view/screens/ProfileList.tsx:732 +msgid "Mute these accounts?" +msgstr "Wyciszyć tę konta?" + +#: src/components/dialogs/MutedWords.tsx:185 +msgid "Mute this word for 24 hours" +msgstr "Wycisz na 24 godz." + +#: src/components/dialogs/MutedWords.tsx:224 +msgid "Mute this word for 30 days" +msgstr "Wycisz na 30 dni" + +#: src/components/dialogs/MutedWords.tsx:209 +msgid "Mute this word for 7 days" +msgstr "Wycisz na 7 dni" + +#: src/components/dialogs/MutedWords.tsx:258 +msgid "Mute this word in post text and tags" +msgstr "Wycisz w tekscie i tagach" + +#: src/components/dialogs/MutedWords.tsx:274 +msgid "Mute this word in tags only" +msgstr "Wycisz tylko w tagach" + +#: src/components/dialogs/MutedWords.tsx:170 +msgid "Mute this word until you unmute it" +msgstr "Wycisz dopóki nie zdecydujesz, aby przestać" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:513 +msgid "Mute thread" +msgstr "Wycisz wątek" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:523 +#: src/view/com/util/forms/PostDropdownBtn.tsx:525 +msgid "Mute words & tags" +msgstr "Wycisz słowa i tagi" + +#: src/screens/Moderation/index.tsx:259 +msgid "Muted accounts" +msgstr "Wyciszone osoby" + +#: src/Navigation.tsx:148 +#: src/view/screens/ModerationMutedAccounts.tsx:108 +msgid "Muted Accounts" +msgstr "Wyciszone osoby" + +#: src/view/screens/ModerationMutedAccounts.tsx:116 +msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." +msgstr "Wyciszone osoby są wykluczone z kanałów i powiadomień. Wyciszenia są prywatne." + +#: src/lib/moderation/useModerationCauseDescription.ts:90 +msgid "Muted by \"{0}\"" +msgstr "Wyciszone przez \"{0}\"" + +#: src/screens/Moderation/index.tsx:229 +msgid "Muted words & tags" +msgstr "Wyciszone słowa i tagi" + +#: src/view/screens/ProfileList.tsx:734 +msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." +msgstr "Wyciszanie jest prywatne. Wyciszone konta mogą dalej wchodzić w interakcję z Tobą, ale nie zobaczysz ich wpisów i nie dostaniesz powiadomień od nich." + +#: src/components/dialogs/BirthDateSettings.tsx:34 +#: src/components/dialogs/BirthDateSettings.tsx:37 +msgid "My Birthday" +msgstr "Moja data urodzenia" + +#: src/view/screens/Feeds.tsx:732 +msgid "My Feeds" +msgstr "Moje kanały" + +#: src/view/shell/desktop/LeftNav.tsx:85 +msgid "My Profile" +msgstr "Mój profil" + +#: src/view/com/modals/CreateOrEditList.tsx:270 +msgid "Name" +msgstr "Nazwa" + +#: src/view/com/modals/CreateOrEditList.tsx:135 +msgid "Name is required" +msgstr "Nazwa jest wymagana" + +#: 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 "Nazwa lub opis naruszają standardy społeczności" + +#: src/screens/Onboarding/index.tsx:22 +#: src/screens/Onboarding/state.ts:94 +msgid "Nature" +msgstr "Natura" + +#: src/components/StarterPack/StarterPackCard.tsx:124 +msgid "Navigate to {0}" +msgstr "Nawiguj do {0}" + +#: src/screens/Login/ForgotPasswordForm.tsx:166 +#: src/screens/Login/LoginForm.tsx:316 +#: src/view/com/modals/ChangePassword.tsx:169 +msgid "Navigates to the next screen" +msgstr "Nawiguje do następnego ekranu" + +#: src/view/shell/Drawer.tsx:72 +msgid "Navigates to your profile" +msgstr "Nawiguje do Twojego profilu" + +#: src/components/dialogs/VerifyEmailDialog.tsx:196 +msgid "Need to change it?" +msgstr "Musisz go zmienić?" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:130 +msgid "Need to report a copyright violation?" +msgstr "Chcesz zgłosić naruszenie praw autorskich?" + +#: src/screens/Onboarding/StepFinished.tsx:260 +msgid "Never lose access to your followers or data." +msgstr "Twoje dane zostaną na zawsze z Tobą." + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:533 +msgid "Nevermind, create a handle for me" +msgstr "Zmieniło mi się zdanie, utwórz nazwę dla mnie" + +#: src/view/screens/Lists.tsx:96 +msgctxt "action" +msgid "New" +msgstr "Utwórz" + +#: src/view/screens/ModerationModlists.tsx:92 +msgid "New" +msgstr "Utwórz" + +#: src/components/dms/dialogs/NewChatDialog.tsx:65 +#: src/screens/Messages/ChatList.tsx:328 +#: src/screens/Messages/ChatList.tsx:335 +msgid "New chat" +msgstr "Nowa rozmowa" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:201 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:209 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:356 +msgid "New handle" +msgstr "Nowa nazwa" + +#: src/components/dms/NewMessagesPill.tsx:92 +msgid "New messages" +msgstr "Nowe wiadomości" + +#: src/view/com/modals/CreateOrEditList.tsx:232 +msgid "New Moderation List" +msgstr "Utwórz listę moderacji" + +#: src/view/com/modals/ChangePassword.tsx:213 +msgid "New password" +msgstr "Nowe hasło" + +#: src/view/com/modals/ChangePassword.tsx:218 +msgid "New Password" +msgstr "Nowe hasło" + +#: src/view/com/feeds/FeedPage.tsx:143 +msgctxt "action" +msgid "New post" +msgstr "Utwórz wpis" + +#: src/view/screens/Feeds.tsx:582 +#: src/view/screens/Notifications.tsx:224 +#: src/view/screens/Profile.tsx:496 +#: src/view/screens/ProfileFeed.tsx:433 +#: src/view/screens/ProfileList.tsx:248 +#: src/view/screens/ProfileList.tsx:287 +msgid "New post" +msgstr "Utwórz wpis" + +#: src/view/shell/desktop/LeftNav.tsx:322 +msgctxt "action" +msgid "New Post" +msgstr "Utwórz wpis" + +#: src/components/NewskieDialog.tsx:83 +msgid "New user info dialog" +msgstr "Dialog informacyjny nowego użytkownika" + +#: src/view/com/modals/CreateOrEditList.tsx:227 +msgid "New User List" +msgstr "Utwórz listę osób" + +#: src/screens/Settings/ThreadPreferences.tsx:70 +#: src/screens/Settings/ThreadPreferences.tsx:73 +msgid "Newest replies first" +msgstr "Najnowsze odpowiedzi pierwsze" + +#: src/screens/Onboarding/index.tsx:20 +#: src/screens/Onboarding/state.ts:95 +msgid "News" +msgstr "Wiadomości" + +#: src/screens/Login/ForgotPasswordForm.tsx:137 +#: src/screens/Login/ForgotPasswordForm.tsx:143 +#: src/screens/Login/LoginForm.tsx:315 +#: src/screens/Login/LoginForm.tsx:322 +#: src/screens/Login/SetNewPasswordForm.tsx:168 +#: src/screens/Login/SetNewPasswordForm.tsx:174 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 +#: src/screens/Signup/BackNextButtons.tsx:68 +#: src/screens/StarterPack/Wizard/index.tsx:192 +#: src/screens/StarterPack/Wizard/index.tsx:196 +#: src/screens/StarterPack/Wizard/index.tsx:367 +#: src/screens/StarterPack/Wizard/index.tsx:374 +#: src/view/com/modals/ChangePassword.tsx:254 +#: src/view/com/modals/ChangePassword.tsx:256 +msgid "Next" +msgstr "Kontynuuj" + +#: src/view/com/lightbox/Lightbox.web.tsx:167 +msgid "Next image" +msgstr "Następne zdjęcie" + +#: src/screens/Settings/AppPasswords.tsx:100 +msgid "No app passwords yet" +msgstr "Brak haseł aplikacji" + +#: src/view/screens/ProfileFeed.tsx:565 +#: src/view/screens/ProfileList.tsx:882 +msgid "No description" +msgstr "Brak opisu" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:378 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:380 +msgid "No DNS Panel" +msgstr "Brak panelu DNS" + +#: src/components/dialogs/GifSelect.tsx:231 +msgid "No featured GIFs found. There may be an issue with Tenor." +msgstr "Brak wyróżnionych GIF-ów. Być może jest problem z Tenor." + +#: src/screens/StarterPack/Wizard/StepFeeds.tsx:118 +msgid "No feeds found. Try searching for something else." +msgstr "Brak kanałów. Spróbuj inne zapytanie." + +#: src/components/LikedByList.tsx:78 +#: src/view/com/post-thread/PostLikedBy.tsx:85 +msgid "No likes yet" +msgstr "Na razie brak polubień" + +#: src/components/ProfileCard.tsx:338 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:119 +msgid "No longer following {0}" +msgstr "Przestano obserwować {0}" + +#: src/screens/Signup/StepHandle.tsx:169 +msgid "No longer than 253 characters" +msgstr "Najwyżej 253 znaków" + +#: src/screens/Messages/components/ChatListItem.tsx:116 +msgid "No messages yet" +msgstr "Na razie brak wiadomości" + +#: src/screens/Messages/ChatList.tsx:271 +msgid "No more conversations to show" +msgstr "Nie ma więcej rozmów" + +#: src/view/com/notifications/Feed.tsx:121 +msgid "No notifications yet!" +msgstr "Brak powiadomień... na razie!" + +#: src/screens/Messages/Settings.tsx:95 +#: src/screens/Messages/Settings.tsx:98 +msgid "No one" +msgstr "Nikt" + +#: src/components/WhoCanReply.tsx:237 +msgid "No one but the author can quote this post." +msgstr "Nikt poza autorem nie może cytować tego wpisu." + +#: src/screens/Profile/Sections/Feed.tsx:65 +msgid "No posts yet." +msgstr "Na razie brak wpisów." + +#: src/view/com/post-thread/PostQuotes.tsx:106 +msgid "No quotes yet" +msgstr "Na razie brak cytatów." + +#: src/view/com/post-thread/PostRepostedBy.tsx:78 +msgid "No reposts yet" +msgstr "Na razie brak podań dalej." + +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:111 +#: src/view/com/composer/text-input/web/Autocomplete.tsx:196 +msgid "No result" +msgstr "Brak wyników" + +#: src/components/dms/dialogs/SearchablePeopleList.tsx:199 +msgid "No results" +msgstr "Brak wyników" + +#: src/components/Lists.tsx:215 +msgid "No results found" +msgstr "Brak wyników" + +#: src/view/screens/Feeds.tsx:513 +msgid "No results found for \"{query}\"" +msgstr "Brak wyników dla \"{query}\"" + +#: src/view/com/modals/ListAddRemoveUsers.tsx:128 +#: src/view/screens/Search/Search.tsx:239 +#: src/view/screens/Search/Search.tsx:278 +#: src/view/screens/Search/Search.tsx:324 +msgid "No results found for {query}" +msgstr "Brak wyników dla {query}" + +#: src/components/dialogs/GifSelect.tsx:229 +msgid "No search results found for \"{search}\"." +msgstr "Brak wyników dla \"{search}\"." + +#: src/components/dialogs/EmbedConsent.tsx:104 +#: src/components/dialogs/EmbedConsent.tsx:111 +msgid "No thanks" +msgstr "Nie, dziękuję." + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:376 +msgid "Nobody" +msgstr "Nikt" + +#: src/components/LikedByList.tsx:80 +#: src/components/LikesDialog.tsx:97 +#: src/view/com/post-thread/PostLikedBy.tsx:87 +msgid "Nobody has liked this yet. Maybe you should be the first!" +msgstr "Nikt jeszcze tego nie polubił. Być może chcesz być pierwszym?" + +#: src/view/com/post-thread/PostQuotes.tsx:108 +msgid "Nobody has quoted this yet. Maybe you should be the first!" +msgstr "Nikt jeszcze tego nie zacytował. Być może chcesz być pierwszym?" + +#: src/view/com/post-thread/PostRepostedBy.tsx:80 +msgid "Nobody has reposted this yet. Maybe you should be the first!" +msgstr "Nikt jeszcze tego nie podał dalej. Być może chcesz być pierwszym?" + +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:102 +msgid "Nobody was found. Try searching for someone else." +msgstr "Brak wyników. Spróbuj inne zapytanie." + +#: src/lib/moderation/useGlobalLabelStrings.ts:42 +msgid "Non-sexual Nudity" +msgstr "Nieerotyczna nagość" + +#: src/Navigation.tsx:128 +#: src/view/screens/Profile.tsx:128 +msgid "Not Found" +msgstr "Nieznaleziono" + +#: src/view/com/modals/VerifyEmail.tsx:254 +#: src/view/com/modals/VerifyEmail.tsx:260 +msgid "Not right now" +msgstr "Nie teraz" + +#: src/view/com/profile/ProfileMenu.tsx:348 +#: src/view/com/util/forms/PostDropdownBtn.tsx:698 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:350 +msgid "Note about sharing" +msgstr "Uwaga o udostępnianiu" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:81 +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 "Proszę mieć na uwadze, że Bluesky to otwarta, publiczna sieć. To ustawienie kontroluje tylko widoczność na oficjalnej aplikacji Bluesky. Inne aplikacje mogą nie uwzględnić Twojej decyzji - Twoja treść może być dalej pokazywana niezalogowanym osobom na zewnętrznych aplikacjach." + +#: src/screens/Messages/ChatList.tsx:213 +msgid "Nothing here" +msgstr "Tutaj nic" + +#: src/screens/Settings/NotificationSettings.tsx:51 +msgid "Notification filters" +msgstr "Filtry powiadomień" + +#: src/Navigation.tsx:383 +#: src/view/screens/Notifications.tsx:117 +msgid "Notification settings" +msgstr "Ustawienia powiadomień" + +#: src/screens/Settings/NotificationSettings.tsx:37 +msgid "Notification Settings" +msgstr "Ustawienia powiadomień" + +#: src/screens/Messages/Settings.tsx:117 +msgid "Notification sounds" +msgstr "Dźwięki powiadomień" + +#: src/screens/Messages/Settings.tsx:114 +msgid "Notification Sounds" +msgstr "Dźwięki powiadomień" + +#: src/Navigation.tsx:595 +#: src/view/screens/Notifications.tsx:143 +#: src/view/screens/Notifications.tsx:153 +#: src/view/screens/Notifications.tsx:199 +#: src/view/shell/bottom-bar/BottomBar.tsx:226 +#: src/view/shell/desktop/LeftNav.tsx:438 +#: src/view/shell/Drawer.tsx:444 +msgid "Notifications" +msgstr "Powiadomienia" + +#: src/lib/hooks/useTimeAgo.ts:122 +msgid "now" +msgstr "teraz" + +#: src/components/dms/MessageItem.tsx:197 +msgid "Now" +msgstr "Teraz" + +#: src/view/com/composer/labels/LabelsBtn.tsx:152 +#: src/view/com/composer/labels/LabelsBtn.tsx:155 +msgid "Nudity" +msgstr "Nagość" + +#: src/lib/moderation/useReportOptions.ts:78 +msgid "Nudity or adult content not labeled as such" +msgstr "Nieoznakowana treść dla dorosłych" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:11 +msgid "Off" +msgstr "Wył." + +#: src/components/dialogs/GifSelect.tsx:268 +#: src/view/com/util/ErrorBoundary.tsx:57 +msgid "Oh no!" +msgstr "O nie!" + +#: src/screens/Onboarding/StepInterests/index.tsx:124 +msgid "Oh no! Something went wrong." +msgstr "O nie, coś poszło nie tak!" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:347 +msgid "OK" +msgstr "OK" + +#: src/screens/Login/PasswordUpdatedForm.tsx:38 +#: src/view/com/post-thread/PostThreadItem.tsx:855 +msgid "Okay" +msgstr "Okej" + +#: src/screens/Settings/ThreadPreferences.tsx:62 +#: src/screens/Settings/ThreadPreferences.tsx:65 +msgid "Oldest replies first" +msgstr "Najstarsze odpowiedzi pierwsze" + +#: src/components/StarterPack/QrCode.tsx:75 +msgid "on<0><1/><2><3/>" +msgstr "na<0><1/><2><3/>" + +#: src/screens/Settings/Settings.tsx:295 +msgid "Onboarding reset" +msgstr "Proces powitalny zresetowany" + +#: src/view/com/composer/Composer.tsx:325 +msgid "One or more GIFs is missing alt text." +msgstr "Jeden lub więcej GIF-ów nie ma tesktu alternatywnego." + +#: src/view/com/composer/Composer.tsx:322 +msgid "One or more images is missing alt text." +msgstr "Jedno lub więcej zdjęć nie ma tesktu alternatywnego." + +#: src/view/com/composer/Composer.tsx:332 +msgid "One or more videos is missing alt text." +msgstr "Jedno lub więcej plików wideo nie ma tesktu alternatywnego." + +#: src/screens/Onboarding/StepProfile/index.tsx:115 +msgid "Only .jpg and .png files are supported" +msgstr "Tylko pliki typu .jpg i .png są obsługiwane" + +#: src/components/WhoCanReply.tsx:217 +msgid "Only {0} can reply." +msgstr "Tylko {0} mogą odpowiadać" + +#: src/screens/Signup/StepHandle.tsx:152 +msgid "Only contains letters, numbers, and hyphens" +msgstr "Zawiera tylko litery, cyfry i myślniki" + +#: src/lib/media/picker.shared.ts:29 +msgid "Only image files are supported" +msgstr "Tylko pliki zdjęć są obsługiwane" + +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:40 +msgid "Only WebVTT (.vtt) files are supported" +msgstr "Tylko pliki typu WebVTT (.vtt) są obsługiwane" + +#: src/components/Lists.tsx:88 +msgid "Oops, something went wrong!" +msgstr "Ups, coś poszło nie tak!" + +#: src/components/Lists.tsx:199 +#: src/components/StarterPack/ProfileStarterPacks.tsx:322 +#: src/components/StarterPack/ProfileStarterPacks.tsx:331 +#: src/screens/Settings/AppPasswords.tsx:51 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:101 +#: src/screens/Settings/NotificationSettings.tsx:41 +#: src/view/screens/Profile.tsx:128 +msgid "Oops!" +msgstr "Ups!" + +#: src/screens/Onboarding/StepFinished.tsx:256 +msgid "Open" +msgstr "Otwarte" + +#: src/view/com/posts/AviFollowButton.tsx:86 +msgid "Open {name} profile shortcut menu" +msgstr "Otwórz menu skrótu {name}" + +#: src/screens/Onboarding/StepProfile/index.tsx:286 +msgid "Open avatar creator" +msgstr "Otwórz kreator zdjęcia profilowego" + +#: src/screens/Settings/AccountSettings.tsx:120 +msgid "Open change handle dialog" +msgstr "Otwórz dialog zmiany nazwy" + +#: src/screens/Messages/components/ChatListItem.tsx:272 +#: src/screens/Messages/components/ChatListItem.tsx:273 +msgid "Open conversation options" +msgstr "Otwórz opcje rozmowy" + +#: src/screens/Messages/components/MessageInput.web.tsx:165 +#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1217 +msgid "Open emoji picker" +msgstr "Otwórz menu emoji" + +#: src/view/screens/ProfileFeed.tsx:301 +msgid "Open feed options menu" +msgstr "Otwórz menu ust. kanału" + +#: src/screens/Settings/Settings.tsx:200 +msgid "Open helpdesk in browser" +msgstr "Otwórz pomoc techniczną w przeglądarce" + +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:71 +msgid "Open link to {niceUrl}" +msgstr "Otwórz link do {niceUrl}" + +#: src/components/dms/ActionsWrapper.tsx:90 +msgid "Open message options" +msgstr "Otwórz ust. wiadomości" + +#: src/screens/Settings/Settings.tsx:321 +msgid "Open moderation debug page" +msgstr "Otwórz stronę debugowania moderacji" + +#: src/screens/Moderation/index.tsx:225 +msgid "Open muted words and tags settings" +msgstr "Otwórz ust. wyciszonych słów i tagów" + +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:54 +msgid "Open navigation" +msgstr "Otwórz nawigację" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 +msgid "Open post options menu" +msgstr "Otwórz menu ust. wpisu" + +#: src/screens/StarterPack/StarterPackScreen.tsx:552 +msgid "Open starter pack menu" +msgstr "Otwórz menu pakietu startowego" + +#: src/screens/Settings/Settings.tsx:314 +#: src/screens/Settings/Settings.tsx:328 +msgid "Open storybook page" +msgstr "Otwórz stronę storybook" + +#: src/screens/Settings/Settings.tsx:307 +msgid "Open system log" +msgstr "Otwórz dziennik systemu" + +#: src/view/com/util/forms/DropdownButton.tsx:162 +msgid "Opens {numItems} options" +msgstr "Otwiera {numItems} opcji" + +#: src/view/com/composer/labels/LabelsBtn.tsx:63 +msgid "Opens a dialog to add a content warning to your post" +msgstr "Otwiera dialog dodawania ostrzeżenia zawartości" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:62 +msgid "Opens a dialog to choose who can reply to this thread" +msgstr "Otwiera dialog wybierania osób mogących interagować" + +#: src/view/screens/Log.tsx:59 +msgid "Opens additional details for a debug entry" +msgstr "Otwiera dodatkowe detale debugowania" + +#: src/view/com/composer/photos/OpenCameraBtn.tsx:73 +msgid "Opens camera on device" +msgstr "Otwiera aparat urządzenia" + +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:36 +msgid "Opens composer" +msgstr "Otwiera kompozytor wpisu" + +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:51 +msgid "Opens device photo gallery" +msgstr "Otwiera galerię urządzenia" + +#: src/view/com/auth/SplashScreen.tsx:50 +#: src/view/com/auth/SplashScreen.web.tsx:111 +msgid "Opens flow to create a new Bluesky account" +msgstr "Otwiera proces tworzenia nowego konta" + +#: src/view/com/auth/SplashScreen.tsx:64 +#: src/view/com/auth/SplashScreen.web.tsx:125 +msgid "Opens flow to sign into your existing Bluesky account" +msgstr "Otwiera proces logowania się" + +#: src/view/com/composer/photos/SelectGifBtn.tsx:36 +msgid "Opens GIF select dialog" +msgstr "Otwiera dialog wybierania GIF" + +#: src/view/com/modals/InviteCodes.tsx:173 +msgid "Opens list of invite codes" +msgstr "Otwiera listę kodów zaproszenia" + +#: src/screens/Login/LoginForm.tsx:231 +msgid "Opens password reset form" +msgstr "Otwiera dialog resetu hasła" + +#: src/view/com/modals/LinkWarning.tsx:93 +msgid "Opens the linked website" +msgstr "Otwiera załączoną stronę" + +#: src/view/com/notifications/FeedItem.tsx:678 +#: src/view/com/util/UserAvatar.tsx:436 +msgid "Opens this profile" +msgstr "Otwiera ten profil" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:107 +msgid "Opens video picker" +msgstr "Otwiera dialog wybierania wideo" + +#: src/view/com/util/forms/DropdownButton.tsx:296 +msgid "Option {0} of {numItems}" +msgstr "Opcja {0} z {numItems}" + +#: src/components/dms/ReportDialog.tsx:178 +#: src/components/ReportDialog/SubmitView.tsx:167 +msgid "Optionally provide additional information below:" +msgstr "Możesz podać nam więcej informacji poniżej:" + +#: src/components/dialogs/MutedWords.tsx:299 +msgid "Options:" +msgstr "Opcje:" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 +msgid "Or combine these options:" +msgstr "Lub wybierz z tych opcji:" + +#: src/screens/Deactivated.tsx:206 +msgid "Or, continue with another account." +msgstr "Lub kontynuuj z innym kontem." + +#: src/screens/Deactivated.tsx:193 +msgid "Or, log into one of your other accounts." +msgstr "Możesz też zalogować się do innego konta." + +#: src/lib/moderation/useReportOptions.ts:27 +#: src/view/com/composer/labels/LabelsBtn.tsx:187 +msgid "Other" +msgstr "Inne" + +#: src/components/AccountList.tsx:83 +msgid "Other account" +msgstr "Inne konto" + +#: src/view/com/composer/select-language/SelectLangBtn.tsx:93 +msgid "Other..." +msgstr "Inne..." + +#: src/screens/Messages/components/ChatDisabled.tsx:28 +msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." +msgstr "W wyniku zgłoszeń, nasi moderatorzy zdecyowali zablokować Twój dostęp do rozmów na Bluesky." + +#: src/components/Lists.tsx:216 +#: src/view/screens/NotFound.tsx:47 +msgid "Page not found" +msgstr "Strona nie znaleziona" + +#: src/view/screens/NotFound.tsx:44 +msgid "Page Not Found" +msgstr "Strona nie znaleziona" + +#: src/screens/Login/LoginForm.tsx:210 +#: src/screens/Settings/AccountSettings.tsx:110 +#: src/screens/Settings/AccountSettings.tsx:114 +#: src/screens/Signup/StepInfo/index.tsx:192 +#: src/view/com/modals/DeleteAccount.tsx:258 +#: src/view/com/modals/DeleteAccount.tsx:265 +msgid "Password" +msgstr "Hasło" + +#: src/view/com/modals/ChangePassword.tsx:143 +msgid "Password Changed" +msgstr "Hasło zmienione" + +#: src/screens/Login/index.tsx:154 +msgid "Password updated" +msgstr "Hasło zaktualizowane" + +#: src/screens/Login/PasswordUpdatedForm.tsx:24 +msgid "Password updated!" +msgstr "Hasło zaktualizowane!" + +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:368 +msgid "Pause" +msgstr "Pauza" + +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:320 +msgid "Pause video" +msgstr "Zatrzymaj wideo" + +#: src/screens/StarterPack/StarterPackScreen.tsx:182 +#: src/view/screens/Search/Search.tsx:531 +msgid "People" +msgstr "Osoby" + +#: src/Navigation.tsx:183 +msgid "People followed by @{0}" +msgstr "Osoby obserwowane przez @{0}" + +#: src/Navigation.tsx:176 +msgid "People following @{0}" +msgstr "Osoby obserwujące @{0}" + +#: src/view/com/lightbox/Lightbox.tsx:27 +msgid "Permission to access camera roll is required." +msgstr "Wymagany dostęp do Twojej galerii zdjęć." + +#: src/view/com/lightbox/Lightbox.tsx:35 +msgid "Permission to access camera roll was denied. Please enable it in your system settings." +msgstr "Dostęp do galerii odrzucony, proszę dać dostęp w ustawieniach urządzenia." + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 +msgid "Person toggle" +msgstr "Przełącznik osoby" + +#: src/screens/Onboarding/index.tsx:28 +#: src/screens/Onboarding/state.ts:96 +msgid "Pets" +msgstr "Zwierzęta domowe" + +#: src/screens/Onboarding/state.ts:97 +msgid "Photography" +msgstr "Fotografia" + +#: src/view/com/composer/labels/LabelsBtn.tsx:171 +msgid "Pictures meant for adults." +msgstr "Zdjęcia przeznaczone dla dorosłych." + +#: src/view/screens/ProfileFeed.tsx:293 +#: src/view/screens/ProfileList.tsx:676 +msgid "Pin to home" +msgstr "Przypnij do strony głównej" + +#: src/view/screens/ProfileFeed.tsx:296 +msgid "Pin to Home" +msgstr "Przypnij do strony głównej" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:398 +#: src/view/com/util/forms/PostDropdownBtn.tsx:405 +msgid "Pin to your profile" +msgstr "Przypnij do profilu" + +#: src/view/com/posts/FeedItem.tsx:363 +msgid "Pinned" +msgstr "Przypięte" + +#: src/view/screens/SavedFeeds.tsx:130 +msgid "Pinned Feeds" +msgstr "Przypięte kanały" + +#: src/view/screens/ProfileList.tsx:355 +msgid "Pinned to your feeds" +msgstr "Przypięto kanał" + +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:369 +msgid "Play" +msgstr "Odtwórz" + +#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:128 +msgid "Play {0}" +msgstr "Odtwórz {0}" + +#: src/view/com/util/post-embeds/GifEmbed.tsx:42 +msgid "Play or pause the GIF" +msgstr "Odtwórz lub zatrzymaj GIF" + +#: src/view/com/util/post-embeds/VideoEmbed.tsx:110 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 +msgid "Play video" +msgstr "Odtwórz wideo" + +#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58 +#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 +msgid "Play Video" +msgstr "Odtwórz wideo" + +#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:127 +msgid "Plays the GIF" +msgstr "Odtwarza GIF" + +#: src/screens/Signup/state.ts:217 +msgid "Please choose your handle." +msgstr "Proszę wybrać nazwę." + +#: src/screens/Signup/state.ts:210 +#: src/screens/Signup/StepInfo/index.tsx:114 +msgid "Please choose your password." +msgstr "Proszę wybrać hasło." + +#: src/screens/Signup/state.ts:231 +msgid "Please complete the verification captcha." +msgstr "Proszę ukończyć weryfikację captcha." + +#: src/view/com/modals/ChangeEmail.tsx:65 +msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed." +msgstr "Proszę zweryfikować email przed zmianą. To wymaganie jest tymczasowe, podczas gdy dodajemy narzędzia zmiany adresu email." + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:114 +msgid "Please enter a unique name for this app password or use our randomly generated one." +msgstr "Proszę wybrać unikalną nazwę dla tego hasła aplikacji lub użyć wygenerowanej nazwy." + +#: src/components/dialogs/MutedWords.tsx:86 +msgid "Please enter a valid word, tag, or phrase to mute" +msgstr "Proszę wpisać słowo, tag lub zdanie do wyciszenia" + +#: src/screens/Signup/state.ts:196 +#: src/screens/Signup/StepInfo/index.tsx:102 +msgid "Please enter your email." +msgstr "Proszę wpisać adres email." + +#: src/screens/Signup/StepInfo/index.tsx:96 +msgid "Please enter your invite code." +msgstr "Proszę wpisać kod zaproszenia." + +#: src/view/com/modals/DeleteAccount.tsx:254 +msgid "Please enter your password as well:" +msgstr "Proszę też wpisać hasło:" + +#: src/components/moderation/LabelsOnMeDialog.tsx:265 +msgid "Please explain why you think this label was incorrectly applied by {0}" +msgstr "Proszę wyjaśnić, dlaczego myślisz, że ta etykieta od {0} została niepoprawnie nałożona" + +#: src/screens/Messages/components/ChatDisabled.tsx:110 +msgid "Please explain why you think your chats were incorrectly disabled" +msgstr "Proszę wyjaśnić, dlaczego myślisz, że Twój dostęp do rozmów został niepoprawnie wyłączony" + +#: src/lib/hooks/useAccountSwitcher.ts:45 +#: src/lib/hooks/useAccountSwitcher.ts:55 +msgid "Please sign in as @{0}" +msgstr "Proszę zalogować się jako @{0}" + +#: src/view/com/modals/VerifyEmail.tsx:109 +msgid "Please Verify Your Email" +msgstr "Proszę zweryfikować email" + +#: src/screens/Onboarding/index.tsx:34 +#: src/screens/Onboarding/state.ts:98 +msgid "Politics" +msgstr "Polityka" + +#: src/view/com/composer/labels/LabelsBtn.tsx:158 +msgid "Porn" +msgstr "Pornografia" + +#: src/view/com/composer/Composer.tsx:921 +msgctxt "action" +msgid "Post" +msgstr "Wyślij" + +#: src/view/com/post-thread/PostThread.tsx:481 +msgctxt "description" +msgid "Post" +msgstr "Wpis" + +#: src/view/com/composer/Composer.tsx:919 +msgctxt "action" +msgid "Post All" +msgstr "Wyślij wszystkie" + +#: src/view/com/post-thread/PostThreadItem.tsx:204 +msgid "Post by {0}" +msgstr "Wpis od {0}" + +#: src/Navigation.tsx:202 +#: src/Navigation.tsx:209 +#: src/Navigation.tsx:216 +#: src/Navigation.tsx:223 +msgid "Post by @{0}" +msgstr "Wpis od @{0}" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:180 +msgid "Post deleted" +msgstr "Wpis usunięty" + +#: src/lib/api/index.ts:185 +msgid "Post failed to upload. Please check your Internet connection and try again." +msgstr "Błąd podczas wysyłania wpisu. Sprawdź połączenie z Internetem i spróbuj ponownie." + +#: src/view/com/post-thread/PostThread.tsx:212 +msgid "Post hidden" +msgstr "Wpis ukryty" + +#: src/components/moderation/ModerationDetailsDialog.tsx:106 +#: src/lib/moderation/useModerationCauseDescription.ts:104 +msgid "Post Hidden by Muted Word" +msgstr "Wpis ukryty ze względu na wyciszone słowo" + +#: src/components/moderation/ModerationDetailsDialog.tsx:109 +#: src/lib/moderation/useModerationCauseDescription.ts:113 +msgid "Post Hidden by You" +msgstr "Wpis ukryty przez Ciebie" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:284 +msgid "Post interaction settings" +msgstr "Ustawienia interakcji wpisu" + +#: src/view/com/composer/select-language/SelectLangBtn.tsx:89 +msgid "Post language" +msgstr "Język wpisu" + +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:76 +msgid "Post Languages" +msgstr "Języki wpisu" + +#: src/view/com/post-thread/PostThread.tsx:207 +#: src/view/com/post-thread/PostThread.tsx:219 +msgid "Post not found" +msgstr "Wpis nie znaleziony" + +#: src/state/queries/pinned-post.ts:59 +msgid "Post pinned" +msgstr "Wpis przypięty" + +#: src/state/queries/pinned-post.ts:61 +msgid "Post unpinned" +msgstr "Wpis odpięty" + +#: src/components/TagMenu/index.tsx:252 +msgid "posts" +msgstr "wpisy" + +#: src/screens/StarterPack/StarterPackScreen.tsx:184 +#: src/view/screens/Profile.tsx:228 +msgid "Posts" +msgstr "Wpisy" + +#: 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 "Wpisy mogą być wyciszone ze względu na tekst, tagi lub obydwa. Rekomendujemy niewyciszanie często używanych słów, ponieważ to może niechcący ukryć wszystkie wpisy." + +#: src/view/com/posts/FeedErrorMessage.tsx:68 +msgid "Posts hidden" +msgstr "Wpisy ukryte" + +#: src/view/com/modals/LinkWarning.tsx:60 +msgid "Potentially Misleading Link" +msgstr "Link potencjalnie wprowadzający w błąd" + +#: src/state/queries/notifications/settings.ts:44 +msgid "Preference saved" +msgstr "Preferencje zapisane" + +#: src/screens/Messages/components/MessageListError.tsx:19 +msgid "Press to attempt reconnection" +msgstr "Dotknij aby spróbować ponownie połączenie" + +#: src/components/forms/HostingProvider.tsx:46 +msgid "Press to change hosting provider" +msgstr "Dotknij aby zmienić dostawcę hostingu" + +#: src/components/Error.tsx:61 +#: src/components/Lists.tsx:93 +#: src/screens/Messages/components/MessageListError.tsx:24 +#: src/screens/Signup/BackNextButtons.tsx:48 +msgid "Press to retry" +msgstr "Dotknij aby spróbować ponownie" + +#: src/components/KnownFollowers.tsx:124 +msgid "Press to view followers of this account that you also follow" +msgstr "Dotknij aby zobaczyć obserwujących tego konta, których Ty też obserwujesz" + +#: src/view/com/lightbox/Lightbox.web.tsx:148 +msgid "Previous image" +msgstr "Poprzednie zdjęcie" + +#: src/screens/Settings/LanguageSettings.tsx:158 +msgid "Primary Language" +msgstr "Główny język" + +#: src/screens/Settings/ThreadPreferences.tsx:99 +#: src/screens/Settings/ThreadPreferences.tsx:104 +msgid "Prioritize your Follows" +msgstr "Priorytetyzuj swoje obserwacje" + +#: src/screens/Settings/NotificationSettings.tsx:54 +msgid "Priority notifications" +msgstr "Powiadomienia priorytetowe" + +#: src/view/shell/desktop/RightNav.tsx:81 +msgid "Privacy" +msgstr "Prywatność" + +#: src/screens/Settings/Settings.tsx:153 +#: src/screens/Settings/Settings.tsx:156 +msgid "Privacy and security" +msgstr "Prywatność i bezpieczeństwo" + +#: src/Navigation.tsx:345 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:33 +msgid "Privacy and Security" +msgstr "Prywatność i bezpieczeństwo" + +#: src/Navigation.tsx:269 +#: src/screens/Settings/AboutSettings.tsx:38 +#: src/screens/Settings/AboutSettings.tsx:41 +#: src/view/screens/PrivacyPolicy.tsx:31 +#: src/view/shell/Drawer.tsx:624 +#: src/view/shell/Drawer.tsx:625 +msgid "Privacy Policy" +msgstr "Polityka prywatności" + +#: src/view/com/composer/Composer.tsx:1629 +msgid "Processing video..." +msgstr "Przetwarzanie wideo..." + +#: src/lib/api/index.ts:59 +#: src/screens/Login/ForgotPasswordForm.tsx:149 +msgid "Processing..." +msgstr "Przetwarzanie..." + +#: src/view/screens/DebugMod.tsx:913 +#: src/view/screens/Profile.tsx:363 +msgid "profile" +msgstr "profil" + +#: src/view/shell/bottom-bar/BottomBar.tsx:271 +#: src/view/shell/desktop/LeftNav.tsx:493 +#: src/view/shell/Drawer.tsx:71 +#: src/view/shell/Drawer.tsx:516 +msgid "Profile" +msgstr "Profil" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:191 +#: src/view/com/modals/EditProfile.tsx:124 +msgid "Profile updated" +msgstr "Profil zaktualizowany" + +#: src/screens/Onboarding/StepFinished.tsx:242 +msgid "Public" +msgstr "Publiczne" + +#: src/view/screens/ModerationModlists.tsx:75 +msgid "Public, shareable lists of users to mute or block in bulk." +msgstr "Publiczne, gotowe do udostępnienia listy osób do wyciszenia lub blokowania masowo." + +#: src/view/screens/Lists.tsx:81 +msgid "Public, shareable lists which can drive feeds." +msgstr "Publiczne, gotowe do udostępnienia listy osób do budowania kanałów." + +#: src/components/StarterPack/QrCodeDialog.tsx:128 +msgid "QR code copied to your clipboard!" +msgstr "Kod QR skopiowany!" + +#: src/components/StarterPack/QrCodeDialog.tsx:106 +msgid "QR code has been downloaded!" +msgstr "Kod QR pobrany!" + +#: src/components/StarterPack/QrCodeDialog.tsx:107 +msgid "QR code saved to your camera roll!" +msgstr "Kod QR pobrany do galerii!" + +#: src/view/com/util/post-ctrls/RepostButton.tsx:129 +#: src/view/com/util/post-ctrls/RepostButton.tsx:156 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:85 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92 +msgid "Quote post" +msgstr "Zacytuj" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:308 +msgid "Quote post was re-attached" +msgstr "Cytat ponownie załączony" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:307 +msgid "Quote post was successfully detached" +msgstr "Cytat odłączony pomyślnie" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:314 +#: src/view/com/util/post-ctrls/RepostButton.tsx:128 +#: src/view/com/util/post-ctrls/RepostButton.tsx:155 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:84 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:91 +msgid "Quote posts disabled" +msgstr "Cytaty są wyłączone" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:312 +msgid "Quote posts enabled" +msgstr "Cytaty są włączone" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:296 +msgid "Quote settings" +msgstr "Ustawienia cytatów" + +#: src/screens/Post/PostQuotes.tsx:32 +#: src/screens/Post/PostQuotes.tsx:33 +msgid "Quotes" +msgstr "Cytaty" + +#: src/view/com/post-thread/PostThreadItem.tsx:238 +msgid "Quotes of this post" +msgstr "Cytaty tego wpisu" + +#: src/screens/Settings/ThreadPreferences.tsx:86 +#: src/screens/Settings/ThreadPreferences.tsx:89 +msgid "Random (aka \"Poster's Roulette\")" +msgstr "Losowe (znane także jako \"Ruletka Wpisującego\")" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:566 +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 "Limit ządań przekroczony - zbyt wiele razy próbujesz zmienić nazwę w krótkim czasie. Proszę chwilę zaczekać przed ponowną próbą." + +#: src/view/com/util/forms/PostDropdownBtn.tsx:585 +#: src/view/com/util/forms/PostDropdownBtn.tsx:595 +msgid "Re-attach quote" +msgstr "Dołącz cytat ponownie" + +#: src/screens/Deactivated.tsx:147 +msgid "Reactivate your account" +msgstr "Reaktywuj konto" + +#: src/view/com/auth/SplashScreen.web.tsx:171 +msgid "Read the Bluesky blog" +msgstr "Czytaj blog Bluesky" + +#: src/screens/Signup/StepInfo/Policies.tsx:58 +#: src/screens/Signup/StepInfo/Policies.tsx:84 +msgid "Read the Bluesky Privacy Policy" +msgstr "Przeczytaj politykę prywatności Bluesky" + +#: src/screens/Signup/StepInfo/Policies.tsx:51 +#: src/screens/Signup/StepInfo/Policies.tsx:71 +msgid "Read the Bluesky Terms of Service" +msgstr "Przeczytaj regulamin korzystania z serwisu Bluesky" + +#: src/components/dms/ReportDialog.tsx:169 +msgid "Reason:" +msgstr "Powód:" + +#: src/view/screens/Search/Search.tsx:1057 +msgid "Recent Searches" +msgstr "Ostatnie wyszukiwania" + +#: src/screens/Messages/components/MessageListError.tsx:20 +msgid "Reconnect" +msgstr "Połącz ponownie" + +#: src/view/screens/Notifications.tsx:144 +msgid "Refresh notifications" +msgstr "Odśwież powiadomienia" + +#: src/screens/Messages/ChatList.tsx:198 +msgid "Reload conversations" +msgstr "Załaduj ponownie rozmowy" + +#: src/components/dialogs/MutedWords.tsx:438 +#: src/components/FeedCard.tsx:316 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:109 +#: src/screens/Settings/Settings.tsx:458 +#: src/view/com/feeds/FeedSourceCard.tsx:319 +#: src/view/com/modals/ListAddRemoveUsers.tsx:269 +#: src/view/com/modals/UserAddRemoveLists.tsx:235 +#: src/view/com/posts/FeedErrorMessage.tsx:213 +msgid "Remove" +msgstr "Usuń" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:58 +msgid "Remove {displayName} from starter pack" +msgstr "Usuń {displayName} z pakietu startowego" + +#: src/screens/Settings/Settings.tsx:437 +#: src/screens/Settings/Settings.tsx:440 +msgid "Remove account" +msgstr "Usuń konto" + +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:16 +msgid "Remove attachment" +msgstr "Usuń załącznik" + +#: src/view/com/util/UserAvatar.tsx:403 +msgid "Remove Avatar" +msgstr "Usuń zdjęcie profilowe" + +#: src/view/com/util/UserBanner.tsx:155 +msgid "Remove Banner" +msgstr "Usuń tło profilu" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:206 +msgid "Remove embed" +msgstr "Usuń załącznik" + +#: src/view/com/posts/FeedErrorMessage.tsx:169 +#: src/view/com/posts/FeedShutdownMsg.tsx:116 +#: src/view/com/posts/FeedShutdownMsg.tsx:120 +msgid "Remove feed" +msgstr "Usuń kanał" + +#: src/view/com/posts/FeedErrorMessage.tsx:210 +msgid "Remove feed?" +msgstr "Usunąć kanał?" + +#: src/view/com/feeds/FeedSourceCard.tsx:190 +#: src/view/com/feeds/FeedSourceCard.tsx:268 +#: src/view/screens/ProfileFeed.tsx:337 +#: src/view/screens/ProfileFeed.tsx:343 +#: src/view/screens/ProfileList.tsx:502 +#: src/view/screens/SavedFeeds.tsx:351 +msgid "Remove from my feeds" +msgstr "Usuń z moich kanałów" + +#: src/components/FeedCard.tsx:311 +#: src/view/com/feeds/FeedSourceCard.tsx:314 +msgid "Remove from my feeds?" +msgstr "Usunąć z moich kanałów?" + +#: src/screens/Settings/Settings.tsx:450 +msgid "Remove from quick access?" +msgstr "Usunąć z szybkiego dostępu?" + +#: src/screens/List/ListHiddenScreen.tsx:156 +msgid "Remove from saved feeds" +msgstr "Usuń z zapisanych kanałów" + +#: src/view/com/composer/photos/Gallery.tsx:203 +msgid "Remove image" +msgstr "Usuń zdjęcie" + +#: src/components/dialogs/MutedWords.tsx:523 +msgid "Remove mute word from your list" +msgstr "Usuń wyciszone słowo z listy" + +#: src/view/screens/Search/Search.tsx:1101 +msgid "Remove profile" +msgstr "Usuń profil" + +#: src/view/screens/Search/Search.tsx:1103 +msgid "Remove profile from search history" +msgstr "Usuń profil z historii wyszukiwania" + +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:287 +msgid "Remove quote" +msgstr "Usuń cytat" + +#: src/view/com/util/post-ctrls/RepostButton.tsx:102 +#: src/view/com/util/post-ctrls/RepostButton.tsx:118 +msgid "Remove repost" +msgstr "Usuń podanie dalej" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:260 +msgid "Remove subtitle file" +msgstr "Usuń plik napisów" + +#: src/view/com/posts/FeedErrorMessage.tsx:211 +msgid "Remove this feed from your saved feeds" +msgstr "Usuń ten kanał z Twoich zapisanych" + +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:109 +msgid "Removed by author" +msgstr "Usunięte przez autora" + +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:107 +msgid "Removed by you" +msgstr "Usunięte przez Ciebie" + +#: src/view/com/modals/ListAddRemoveUsers.tsx:200 +#: src/view/com/modals/UserAddRemoveLists.tsx:170 +msgid "Removed from list" +msgstr "Usunięto z listy" + +#: src/view/com/feeds/FeedSourceCard.tsx:138 +msgid "Removed from my feeds" +msgstr "Usunięto z moich kanałów" + +#: src/screens/List/ListHiddenScreen.tsx:94 +#: src/screens/List/ListHiddenScreen.tsx:160 +msgid "Removed from saved feeds" +msgstr "Usunięto z zapisanych kanałów" + +#: src/view/com/posts/FeedShutdownMsg.tsx:44 +#: src/view/screens/ProfileFeed.tsx:197 +#: src/view/screens/ProfileList.tsx:386 +msgid "Removed from your feeds" +msgstr "Usunięto z Twoich kanałów" + +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:288 +msgid "Removes quoted post" +msgstr "Usuwa cytat" + +#: src/view/com/posts/FeedShutdownMsg.tsx:129 +#: src/view/com/posts/FeedShutdownMsg.tsx:133 +msgid "Replace with Discover" +msgstr "Zamień na Discover" + +#: src/view/screens/Profile.tsx:229 +msgid "Replies" +msgstr "Odpowiedzi" + +#: src/components/WhoCanReply.tsx:69 +msgid "Replies disabled" +msgstr "Odpowiedzi wyłączone" + +#: src/components/WhoCanReply.tsx:215 +msgid "Replies to this post are disabled." +msgstr "Odpowiedzi do tego wpisu są wyłączone." + +#: src/view/com/composer/Composer.tsx:917 +msgctxt "action" +msgid "Reply" +msgstr "Odpowiedz" + +#: src/components/moderation/ModerationDetailsDialog.tsx:115 +#: src/lib/moderation/useModerationCauseDescription.ts:123 +msgid "Reply Hidden by Thread Author" +msgstr "Odpowiedź ukryta przez autora wątku" + +#: src/components/moderation/ModerationDetailsDialog.tsx:114 +#: src/lib/moderation/useModerationCauseDescription.ts:122 +msgid "Reply Hidden by You" +msgstr "Odpowiedź ukryta przez Ciebie" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:356 +msgid "Reply settings" +msgstr "Ustawienia odpowiedzi" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 +msgid "Reply settings are chosen by the author of the thread" +msgstr "Ustawienia odpowiedzi są wybierane przez autora wątku" + +#: src/view/com/post/Post.tsx:204 +#: src/view/com/posts/FeedItem.tsx:553 +msgctxt "description" +msgid "Reply to <0><1/>" +msgstr "Odpowiedź do <0><1/>" + +#: src/view/com/posts/FeedItem.tsx:544 +msgctxt "description" +msgid "Reply to a blocked post" +msgstr "Odpowiedź na zablokowany wpis" + +#: src/view/com/posts/FeedItem.tsx:546 +msgctxt "description" +msgid "Reply to a post" +msgstr "Odpowiedź" + +#: src/view/com/post/Post.tsx:202 +#: src/view/com/posts/FeedItem.tsx:550 +msgctxt "description" +msgid "Reply to you" +msgstr "Odpowiedź do Ciebie" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:338 +msgid "Reply visibility updated" +msgstr "Widoczność odpowiedzi zapisana" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:337 +msgid "Reply was successfully hidden" +msgstr "Odpowiedź ukryta pomyślnie" + +#: src/components/dms/MessageMenu.tsx:132 +#: src/components/dms/MessagesListBlockedFooter.tsx:77 +#: src/components/dms/MessagesListBlockedFooter.tsx:84 +msgid "Report" +msgstr "Zgłoś" + +#: src/view/com/profile/ProfileMenu.tsx:299 +#: src/view/com/profile/ProfileMenu.tsx:302 +msgid "Report Account" +msgstr "Zgłoś konto" + +#: src/components/dms/ConvoMenu.tsx:197 +#: src/components/dms/ConvoMenu.tsx:200 +#: src/components/dms/ReportConversationPrompt.tsx:18 +msgid "Report conversation" +msgstr "Zgłoś rozmowę" + +#: src/components/ReportDialog/index.tsx:44 +msgid "Report dialog" +msgstr "Dialog zgłoszenia" + +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileFeed.tsx:356 +msgid "Report feed" +msgstr "Zgłoś kanał" + +#: src/view/screens/ProfileList.tsx:544 +msgid "Report List" +msgstr "Zgłoś listę" + +#: src/components/dms/MessageMenu.tsx:130 +msgid "Report message" +msgstr "Zgłoś wiadomość" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:621 +#: src/view/com/util/forms/PostDropdownBtn.tsx:623 +msgid "Report post" +msgstr "Zgłoś wpis" + +#: src/screens/StarterPack/StarterPackScreen.tsx:605 +#: src/screens/StarterPack/StarterPackScreen.tsx:608 +msgid "Report starter pack" +msgstr "Zgłoś pakiet startowy" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:43 +msgid "Report this content" +msgstr "Zgłoś tą zawartość" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:56 +msgid "Report this feed" +msgstr "Zgłoś kanał" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:53 +msgid "Report this list" +msgstr "Zgłoś listę" + +#: src/components/dms/ReportDialog.tsx:44 +#: src/components/dms/ReportDialog.tsx:137 +#: src/components/ReportDialog/SelectReportOptionView.tsx:62 +msgid "Report this message" +msgstr "Zgłoś wiadomość" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:50 +msgid "Report this post" +msgstr "Zgłoś wpis" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:59 +msgid "Report this starter pack" +msgstr "Zgłoś pakiet startowy" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:47 +msgid "Report this user" +msgstr "Zgłoś użytkownika" + +#: src/view/com/util/post-ctrls/RepostButton.tsx:72 +#: src/view/com/util/post-ctrls/RepostButton.tsx:103 +#: src/view/com/util/post-ctrls/RepostButton.tsx:119 +msgctxt "action" +msgid "Repost" +msgstr "Podaj dalej" + +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76 +msgid "Repost" +msgstr "Podaj dalej" + +#: src/screens/StarterPack/StarterPackScreen.tsx:547 +#: src/view/com/util/post-ctrls/RepostButton.tsx:95 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:49 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:104 +msgid "Repost or quote post" +msgstr "Podaj dalej lub zacytuj" + +#: src/screens/Post/PostRepostedBy.tsx:32 +#: src/screens/Post/PostRepostedBy.tsx:33 +msgid "Reposted By" +msgstr "Podane dalej przez" + +#: src/view/com/posts/FeedItem.tsx:303 +msgid "Reposted by {0}" +msgstr "Podane dalej przez {0}" + +#: src/view/com/posts/FeedItem.tsx:322 +msgid "Reposted by <0><1/>" +msgstr "Podane dalej przez <0><1/>" + +#: src/view/com/posts/FeedItem.tsx:301 +#: src/view/com/posts/FeedItem.tsx:320 +msgid "Reposted by you" +msgstr "Podane dalej przez Ciebie" + +#: src/view/com/post-thread/PostThreadItem.tsx:217 +msgid "Reposts of this post" +msgstr "Podania dalej tego wpisu" + +#: src/view/com/modals/ChangeEmail.tsx:176 +#: src/view/com/modals/ChangeEmail.tsx:178 +msgid "Request Change" +msgstr "Żądaj zmiany" + +#: src/view/com/modals/ChangePassword.tsx:242 +#: src/view/com/modals/ChangePassword.tsx:244 +msgid "Request Code" +msgstr "Pobierz kod" + +#: src/screens/Settings/AccessibilitySettings.tsx:53 +#: src/screens/Settings/AccessibilitySettings.tsx:58 +msgid "Require alt text before posting" +msgstr "Wymagaj tekst alternatywny, aby wysłać wpis" + +#: src/screens/Settings/components/Email2FAToggle.tsx:54 +msgid "Require an email code to log in to your account." +msgstr "Wymagaj kod wysłany na Twój email, aby zalogować" + +#: src/screens/Signup/StepInfo/index.tsx:159 +msgid "Required for this provider" +msgstr "Wymagane przez Twojego dostawcę" + +#: src/components/LabelingServiceCard/index.tsx:80 +msgid "Required in your region" +msgstr "Wymagane w Twoim regionie" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:173 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:176 +msgid "Resend email" +msgstr "Wyślij email ponownie" + +#: src/components/dialogs/VerifyEmailDialog.tsx:267 +#: src/components/dialogs/VerifyEmailDialog.tsx:277 +#: src/components/intents/VerifyEmailIntentDialog.tsx:130 +msgid "Resend Email" +msgstr "Wyślij email ponownie" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:122 +msgid "Resend Verification Email" +msgstr "Wyślij ponownie email weryfikacyjny" + +#: src/view/com/modals/ChangePassword.tsx:186 +msgid "Reset code" +msgstr "Zresetuj kod" + +#: src/view/com/modals/ChangePassword.tsx:193 +msgid "Reset Code" +msgstr "Zresetuj kod" + +#: src/screens/Settings/Settings.tsx:335 +#: src/screens/Settings/Settings.tsx:337 +msgid "Reset onboarding state" +msgstr "Zresetuj stan procesu powitalnego" + +#: src/screens/Login/ForgotPasswordForm.tsx:80 +msgid "Reset password" +msgstr "Zresetuj hasło" + +#: src/screens/Login/LoginForm.tsx:296 +msgid "Retries login" +msgstr "Spróbuj ponownie zalogować się" + +#: src/view/com/util/error/ErrorMessage.tsx:58 +#: src/view/com/util/error/ErrorScreen.tsx:75 +msgid "Retries the last action, which errored out" +msgstr "Spróbuj ponownie poprzednio nieudaną akcję" + +#: src/components/dms/MessageItem.tsx:244 +#: src/components/Error.tsx:66 +#: src/components/Lists.tsx:104 +#: src/components/StarterPack/ProfileStarterPacks.tsx:336 +#: src/screens/Login/LoginForm.tsx:295 +#: src/screens/Login/LoginForm.tsx:302 +#: src/screens/Messages/components/MessageListError.tsx:25 +#: src/screens/Onboarding/StepInterests/index.tsx:217 +#: src/screens/Onboarding/StepInterests/index.tsx:220 +#: src/screens/Signup/BackNextButtons.tsx:54 +#: src/view/com/util/error/ErrorMessage.tsx:56 +#: src/view/com/util/error/ErrorScreen.tsx:73 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57 +msgid "Retry" +msgstr "Spróbuj ponownie" + +#: src/components/Error.tsx:74 +#: src/screens/List/ListHiddenScreen.tsx:205 +#: src/screens/StarterPack/StarterPackScreen.tsx:751 +#: src/view/screens/ProfileList.tsx:1030 +msgid "Return to previous page" +msgstr "Wróć do poprzedniej strony" + +#: src/view/screens/NotFound.tsx:61 +msgid "Returns to home page" +msgstr "Wraca do strony głównej" + +#: src/view/screens/NotFound.tsx:60 +#: src/view/screens/ProfileFeed.tsx:114 +msgid "Returns to previous page" +msgstr "Wraca do poprzedniej strony" + +#: src/components/dialogs/BirthDateSettings.tsx:124 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:439 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:445 +#: src/components/StarterPack/QrCodeDialog.tsx:185 +#: src/screens/Profile/Header/EditProfileDialog.tsx:238 +#: src/screens/Profile/Header/EditProfileDialog.tsx:252 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:242 +#: 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:103 +msgid "Save" +msgstr "Zapisz" + +#: src/view/com/lightbox/ImageViewing/index.tsx:555 +#: src/view/com/modals/CreateOrEditList.tsx:325 +msgctxt "action" +msgid "Save" +msgstr "Zapisz" + +#: src/components/dialogs/BirthDateSettings.tsx:118 +msgid "Save birthday" +msgstr "Zapisz datę urodzenia" + +#: src/view/screens/SavedFeeds.tsx:98 +#: src/view/screens/SavedFeeds.tsx:103 +msgid "Save changes" +msgstr "Zapisz zmiany" + +#: src/view/com/modals/EditProfile.tsx:227 +msgid "Save Changes" +msgstr "Zapisz zmiany" + +#: src/components/StarterPack/ShareDialog.tsx:151 +#: src/components/StarterPack/ShareDialog.tsx:158 +msgid "Save image" +msgstr "Zapisz zdjęcie" + +#: src/view/com/modals/CropImage.web.tsx:104 +msgid "Save image crop" +msgstr "Zapisz przycięcie" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:228 +msgid "Save new handle" +msgstr "Zapisz nową nazwę" + +#: src/components/StarterPack/QrCodeDialog.tsx:179 +msgid "Save QR code" +msgstr "Zapisz kod QR" + +#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:344 +msgid "Save to my feeds" +msgstr "Zapisz do moich kanałów" + +#: src/view/screens/SavedFeeds.tsx:171 +msgid "Saved Feeds" +msgstr "Zapisane Kanały" + +#: src/view/com/lightbox/Lightbox.tsx:44 +msgid "Saved to your camera roll" +msgstr "Zapisane do galerii" + +#: src/view/screens/ProfileFeed.tsx:206 +#: src/view/screens/ProfileList.tsx:366 +msgid "Saved to your feeds" +msgstr "Zapisane do Twoich kanałów" + +#: src/view/com/modals/EditProfile.tsx:220 +msgid "Saves any changes to your profile" +msgstr "Zapisuje zmiany profilu" + +#: src/view/com/modals/CropImage.web.tsx:105 +msgid "Saves image crop settings" +msgstr "Zapisuje przycięcie zdjęcia" + +#: src/components/dms/ChatEmptyPill.tsx:33 +#: src/components/NewskieDialog.tsx:105 +#: src/view/com/notifications/FeedItem.tsx:539 +#: src/view/com/notifications/FeedItem.tsx:564 +msgid "Say hello!" +msgstr "Powiedz cześć!" + +#: src/screens/Onboarding/index.tsx:33 +#: src/screens/Onboarding/state.ts:99 +msgid "Science" +msgstr "Nauka" + +#: src/view/screens/ProfileList.tsx:986 +msgid "Scroll to top" +msgstr "Wróć do góry" + +#: src/components/dms/dialogs/SearchablePeopleList.tsx:484 +#: src/components/forms/SearchInput.tsx:34 +#: src/components/forms/SearchInput.tsx:36 +#: src/Navigation.tsx:590 +#: src/view/com/modals/ListAddRemoveUsers.tsx:76 +#: src/view/screens/Search/Search.tsx:594 +#: src/view/shell/bottom-bar/BottomBar.tsx:178 +#: src/view/shell/desktop/LeftNav.tsx:419 +#: src/view/shell/Drawer.tsx:365 +msgid "Search" +msgstr "Szukaj" + +#: src/view/shell/desktop/Search.tsx:201 +msgid "Search for \"{query}\"" +msgstr "Szukaj \"{query}\"" + +#: src/view/screens/Search/Search.tsx:1000 +msgid "Search for \"{searchText}\"" +msgstr "Szukaj \"{searchText}\"" + +#: src/screens/StarterPack/Wizard/index.tsx:500 +msgid "Search for feeds that you want to suggest to others." +msgstr "Szukaj kanałów które chcesz rekomendować innym." + +#: src/view/com/modals/ListAddRemoveUsers.tsx:71 +msgid "Search for users" +msgstr "Szukaj użytkowników" + +#: src/components/dialogs/GifSelect.tsx:177 +msgid "Search GIFs" +msgstr "Szukaj GIF-y" + +#: src/components/dms/dialogs/SearchablePeopleList.tsx:504 +#: src/components/dms/dialogs/SearchablePeopleList.tsx:505 +msgid "Search profiles" +msgstr "Szukaj profile" + +#: src/components/dialogs/GifSelect.tsx:178 +msgid "Search Tenor" +msgstr "Szukaj na Tenor" + +#: src/view/com/modals/ChangeEmail.tsx:105 +msgid "Security Step Required" +msgstr "Wymagana weryfikacja bezpieczeństwa" + +#: src/components/TagMenu/index.web.tsx:77 +msgid "See {truncatedTag} posts" +msgstr "Zobacz wpisy na temat {truncatedTag}" + +#: src/components/TagMenu/index.web.tsx:94 +msgid "See {truncatedTag} posts by user" +msgstr "Zobacz wpisy na temat {truncatedTag} od autora" + +#: src/components/TagMenu/index.tsx:132 +msgid "See <0>{displayTag} posts" +msgstr "Zobacz wpisy <0>{displayTag}" + +#: src/components/TagMenu/index.tsx:183 +msgid "See <0>{displayTag} posts by this user" +msgstr "Zobacz wpisy <0>{displayTag} od autora" + +#: src/view/com/auth/SplashScreen.web.tsx:176 +msgid "See jobs at Bluesky" +msgstr "Pracuj dla Bluesky" + +#: src/view/screens/SavedFeeds.tsx:212 +msgid "See this guide" +msgstr "Przeczytaj ten poradnik" + +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:189 +msgid "Seek slider" +msgstr "Suwak" + +#: src/view/com/util/Selector.tsx:107 +msgid "Select {item}" +msgstr "Wybierz {item}" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 +msgid "Select a color" +msgstr "Wybierz kolor" + +#: src/screens/Login/ChooseAccountForm.tsx:77 +msgid "Select account" +msgstr "Wybierz konto" + +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +msgid "Select an avatar" +msgstr "Wybierz zdjęcie profilowe" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 +msgid "Select an emoji" +msgstr "Wybierz emoji" + +#: src/screens/Settings/LanguageSettings.tsx:252 +msgid "Select content languages" +msgstr "Wybierz języki treści" + +#: src/screens/Login/index.tsx:117 +msgid "Select from an existing account" +msgstr "Wybierz istniejące konto" + +#: src/view/com/composer/photos/SelectGifBtn.tsx:35 +msgid "Select GIF" +msgstr "Wybierz GIF" + +#: src/components/dialogs/GifSelect.tsx:306 +msgid "Select GIF \"{0}\"" +msgstr "Wybierz GIF \"{0}\"" + +#: src/components/dialogs/MutedWords.tsx:142 +msgid "Select how long to mute this word for." +msgstr "Wybierz na jak długo wyciszyć tę słowo" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:245 +msgid "Select language..." +msgstr "Wybierz język..." + +#: src/screens/Settings/LanguageSettings.tsx:266 +msgid "Select languages" +msgstr "Wybierz języki" + +#: src/components/ReportDialog/SelectLabelerView.tsx:29 +msgid "Select moderator" +msgstr "Wybierz usługę moderacji" + +#: src/view/com/util/Selector.tsx:108 +msgid "Select option {i} of {numItems}" +msgstr "Wybierz opcję {i} z {numItems}" + +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:66 +msgid "Select subtitle file (.vtt)" +msgstr "Wybierz plik napisów (.vtt)" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:83 +msgid "Select the {emojiName} emoji as your avatar" +msgstr "Wybierz emoji {emojiName} jako zdjęcie profilowe" + +#: src/components/ReportDialog/SubmitView.tsx:140 +msgid "Select the moderation service(s) to report to" +msgstr "Wybierz usługi moderacji do których wysłać to zgłoszenie" + +#: src/view/com/auth/server-input/index.tsx:79 +msgid "Select the service that hosts your data." +msgstr "Wybierz swojego dostawcę usługi hostingu." + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:106 +msgid "Select video" +msgstr "Wybierz wideo" + +#: src/components/dialogs/MutedWords.tsx:242 +msgid "Select what content this mute word should apply to." +msgstr "Wybierz których rodzajów treści te wyciszone słowo ma dotyczyć." + +#: src/screens/Settings/LanguageSettings.tsx:245 +msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." +msgstr "Wybierz które języki chcesz zobaczyć na swoich kanałach. Jeśli wszystkie są nieodhaczone, zobaczysz wszystkie języki." + +#: src/screens/Settings/LanguageSettings.tsx:76 +msgid "Select your app language for the default text to display in the app." +msgstr "Wybierz domyślny język dla treści w aplikacji." + +#: src/screens/Signup/StepInfo/index.tsx:223 +msgid "Select your date of birth" +msgstr "Wprowadź datę urodzenia" + +#: src/screens/Onboarding/StepInterests/index.tsx:192 +msgid "Select your interests from the options below" +msgstr "Wybierz swoje zainteresowania z poniższych opcji" + +#: src/screens/Settings/LanguageSettings.tsx:162 +msgid "Select your preferred language for translations in your feed." +msgstr "Wybierz preferowany język dla tłumaczeń wpisów." + +#: src/components/dms/ChatEmptyPill.tsx:38 +msgid "Send a neat website!" +msgstr "Wyślij fajną stronkę!" + +#: src/components/dialogs/VerifyEmailDialog.tsx:232 +msgid "Send Confirmation" +msgstr "Wyślij potwierdzenie" + +#: src/components/dialogs/VerifyEmailDialog.tsx:225 +msgid "Send confirmation email" +msgstr "Wyślij email z potwierdzeniem" + +#: src/view/com/modals/VerifyEmail.tsx:210 +#: src/view/com/modals/VerifyEmail.tsx:212 +msgid "Send Confirmation Email" +msgstr "Wyślij email z potwierdzeniem" + +#: src/view/com/modals/DeleteAccount.tsx:149 +msgid "Send email" +msgstr "Wyślij email" + +#: src/view/com/modals/DeleteAccount.tsx:162 +msgctxt "action" +msgid "Send Email" +msgstr "Wyślij email" + +#: src/view/shell/Drawer.tsx:312 +msgid "Send feedback" +msgstr "Wyślij opinię" + +#: src/screens/Messages/components/MessageInput.tsx:173 +#: src/screens/Messages/components/MessageInput.web.tsx:219 +msgid "Send message" +msgstr "Wyślij wiadomość" + +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:62 +msgid "Send post to..." +msgstr "Wyślij wpis do..." + +#: src/components/dms/ReportDialog.tsx:229 +#: src/components/dms/ReportDialog.tsx:232 +#: src/components/ReportDialog/SubmitView.tsx:220 +#: src/components/ReportDialog/SubmitView.tsx:224 +msgid "Send report" +msgstr "Wyślij zgłoszenie" + +#: src/components/ReportDialog/SelectLabelerView.tsx:43 +msgid "Send report to {0}" +msgstr "Wyślij zgłoszenie do {0}" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:120 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:123 +msgid "Send verification email" +msgstr "Wyślij email weryfikacyjny" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:441 +#: src/view/com/util/forms/PostDropdownBtn.tsx:444 +msgid "Send via direct message" +msgstr "Wyślij bezpośrednio" + +#: src/view/com/modals/DeleteAccount.tsx:151 +msgid "Sends email with confirmation code for account deletion" +msgstr "Wysyła email z kodem potwierdzenia do usunięcia konta" + +#: src/view/com/auth/server-input/index.tsx:111 +msgid "Server address" +msgstr "Adres serwera" + +#: src/screens/Moderation/index.tsx:311 +msgid "Set birthdate" +msgstr "Ustaw datę urodzenia" + +#: src/screens/Login/SetNewPasswordForm.tsx:96 +msgid "Set new password" +msgstr "Ustaw nowe hasło" + +#: src/screens/Onboarding/Layout.tsx:48 +msgid "Set up your account" +msgstr "Skonfiguruj konto" + +#: src/screens/Login/ForgotPasswordForm.tsx:107 +msgid "Sets email for password reset" +msgstr "Ustawia email dla resetu hasła" + +#: src/Navigation.tsx:158 +#: src/screens/Settings/Settings.tsx:76 +#: src/view/shell/desktop/LeftNav.tsx:511 +#: src/view/shell/Drawer.tsx:529 +msgid "Settings" +msgstr "Ustawienia" + +#: src/view/com/composer/labels/LabelsBtn.tsx:175 +msgid "Sexual activity or erotic nudity." +msgstr "Erotyczna nagość, aktywnośći seksualne." + +#: src/lib/moderation/useGlobalLabelStrings.ts:38 +msgid "Sexually Suggestive" +msgstr "Sugestywne seksualnie" + +#: src/components/StarterPack/QrCodeDialog.tsx:175 +#: src/screens/StarterPack/StarterPackScreen.tsx:422 +#: src/screens/StarterPack/StarterPackScreen.tsx:594 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:204 +#: src/view/com/util/forms/PostDropdownBtn.tsx:452 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:339 +#: src/view/screens/ProfileList.tsx:487 +msgid "Share" +msgstr "Udostępnij" + +#: src/view/com/lightbox/ImageViewing/index.tsx:564 +msgctxt "action" +msgid "Share" +msgstr "Udostępnij" + +#: src/components/dms/ChatEmptyPill.tsx:37 +msgid "Share a cool story!" +msgstr "Opowiedz interesującą historię!" + +#: src/components/dms/ChatEmptyPill.tsx:36 +msgid "Share a fun fact!" +msgstr "Opowiedz intrygujący fakt!" + +#: src/view/com/profile/ProfileMenu.tsx:353 +#: src/view/com/util/forms/PostDropdownBtn.tsx:703 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:355 +msgid "Share anyway" +msgstr "Udostępnij mimo to" + +#: src/view/screens/ProfileFeed.tsx:364 +#: src/view/screens/ProfileFeed.tsx:366 +msgid "Share feed" +msgstr "Udostępnij kanał" + +#: src/components/StarterPack/ShareDialog.tsx:124 +#: src/components/StarterPack/ShareDialog.tsx:131 +#: src/screens/StarterPack/StarterPackScreen.tsx:598 +msgid "Share link" +msgstr "Udostępnij link" + +#: src/view/com/modals/LinkWarning.tsx:89 +#: src/view/com/modals/LinkWarning.tsx:95 +msgid "Share Link" +msgstr "Udostępnij link" + +#: src/components/StarterPack/ShareDialog.tsx:88 +msgid "Share link dialog" +msgstr "Dialog udostępnienia linku" + +#: src/components/StarterPack/ShareDialog.tsx:135 +#: src/components/StarterPack/ShareDialog.tsx:146 +msgid "Share QR code" +msgstr "Udostępnij kod QR" + +#: src/screens/StarterPack/StarterPackScreen.tsx:415 +msgid "Share this starter pack" +msgstr "Udostępnij pakiet startowy" + +#: src/components/StarterPack/ShareDialog.tsx:100 +msgid "Share this starter pack and help people join your community on Bluesky." +msgstr "Udostępnij ten pakiet startowy i pomóż innym dołączyć do Twojej społeczności na Bluesky." + +#: src/components/dms/ChatEmptyPill.tsx:34 +msgid "Share your favorite feed!" +msgstr "Podziel się ulubionym kanałem!" + +#: src/Navigation.tsx:254 +msgid "Shared Preferences Tester" +msgstr "Tester wspólnych preferencji" + +#: src/view/com/modals/LinkWarning.tsx:92 +msgid "Shares the linked website" +msgstr "Udostępnia załączoną stronę" + +#: src/components/moderation/ContentHider.tsx:178 +#: src/components/moderation/LabelPreference.tsx:137 +#: src/components/moderation/PostHider.tsx:122 +msgid "Show" +msgstr "Pokaż" + +#: src/view/com/util/post-embeds/GifEmbed.tsx:178 +msgid "Show alt text" +msgstr "Pokaż tekst alternatywny" + +#: src/components/moderation/ScreenHider.tsx:172 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/screens/List/ListHiddenScreen.tsx:176 +msgid "Show anyway" +msgstr "Pokaż mimo to" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:27 +#: src/lib/moderation/useLabelBehaviorDescription.ts:63 +msgid "Show badge" +msgstr "Pokaż odznakę" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:61 +msgid "Show badge and filter from feeds" +msgstr "Pokaż odznakę i wyklucz z kanałów" + +#: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:23 +msgid "Show hidden replies" +msgstr "Pokaż ukryte odpowiedzi" + +#: src/view/com/post-thread/PostThreadItem.tsx:796 +msgid "Show information about when this post was created" +msgstr "Pokaż więcej informacji o dacie utworzenia wpisu" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:491 +#: src/view/com/util/forms/PostDropdownBtn.tsx:493 +msgid "Show less like this" +msgstr "Pokazuj mniej takiej treści" + +#: src/screens/List/ListHiddenScreen.tsx:172 +msgid "Show list anyway" +msgstr "Pokaż listę mimo to" + +#: src/view/com/post-thread/PostThreadItem.tsx:588 +#: src/view/com/post/Post.tsx:242 +#: src/view/com/posts/FeedItem.tsx:509 +msgid "Show More" +msgstr "Pokaż więcej" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:483 +#: src/view/com/util/forms/PostDropdownBtn.tsx:485 +msgid "Show more like this" +msgstr "Pokazuj więcej takiej treści" + +#: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:23 +msgid "Show muted replies" +msgstr "Pokaż wyciszone odpowiedzi" + +#: src/screens/Settings/Settings.tsx:96 +msgid "Show other accounts you can switch to" +msgstr "Pokaż inne konta, na które możesz się przełączyć" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:97 +#: src/screens/Settings/FollowingFeedPreferences.tsx:107 +msgid "Show quote posts" +msgstr "Pokaż cytaty" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:61 +#: src/screens/Settings/FollowingFeedPreferences.tsx:71 +msgid "Show replies" +msgstr "Pokaż odpowiedzi" + +#: src/screens/Settings/ThreadPreferences.tsx:113 +msgid "Show replies by people you follow before all other replies" +msgstr "Pokaż najpierw odpowiedzi od osób, które obserwujesz" + +#: src/screens/Settings/ThreadPreferences.tsx:138 +msgid "Show replies in a threaded view" +msgstr "Pokaż odpowiedzi w postaci drzewa" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:559 +#: src/view/com/util/forms/PostDropdownBtn.tsx:569 +msgid "Show reply for everyone" +msgstr "Pokaż odpowiedź dla wszystkich" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:79 +#: src/screens/Settings/FollowingFeedPreferences.tsx:89 +msgid "Show reposts" +msgstr "Pokaż podania dalej" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:122 +#: src/screens/Settings/FollowingFeedPreferences.tsx:132 +msgid "Show samples of your saved feeds in your Following feed" +msgstr "Pokaż próbki zapisanych kanałów w kanale osób obserwowanych" + +#: src/components/moderation/ContentHider.tsx:130 +#: src/components/moderation/PostHider.tsx:79 +msgid "Show the content" +msgstr "Pokaż zawartość" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:58 +msgid "Show warning" +msgstr "Pokaż ostrzeżenie" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:56 +msgid "Show warning and filter from feeds" +msgstr "Pokaż ostrzeżenie i wyklucz z kanałów" + +#: src/components/dialogs/Signin.tsx:97 +#: src/components/dialogs/Signin.tsx:99 +#: src/screens/Login/index.tsx:97 +#: src/screens/Login/index.tsx:116 +#: src/screens/Login/LoginForm.tsx:163 +#: src/view/com/auth/SplashScreen.tsx:62 +#: src/view/com/auth/SplashScreen.tsx:70 +#: src/view/com/auth/SplashScreen.web.tsx:123 +#: src/view/com/auth/SplashScreen.web.tsx:131 +#: src/view/shell/bottom-bar/BottomBar.tsx:311 +#: src/view/shell/bottom-bar/BottomBar.tsx:312 +#: src/view/shell/bottom-bar/BottomBar.tsx:314 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:206 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:208 +#: src/view/shell/NavSignupCard.tsx:57 +#: src/view/shell/NavSignupCard.tsx:62 +msgid "Sign in" +msgstr "Zaloguj się" + +#: src/components/AccountList.tsx:122 +msgid "Sign in as {0}" +msgstr "Zaloguj się jako {0}" + +#: src/screens/Login/ChooseAccountForm.tsx:80 +msgid "Sign in as..." +msgstr "Zaloguj się jako..." + +#: src/components/dialogs/Signin.tsx:75 +msgid "Sign in or create your account to join the conversation!" +msgstr "Zarejestruj lub zaloguj się i dołącz do rozmowy!" + +#: src/components/dialogs/Signin.tsx:46 +msgid "Sign into Bluesky or create a new account" +msgstr "Zaloguj się do Bluesky lub utwórz konto" + +#: src/screens/Settings/Settings.tsx:217 +#: src/screens/Settings/Settings.tsx:219 +#: src/screens/Settings/Settings.tsx:251 +msgid "Sign out" +msgstr "Wyloguj się" + +#: src/screens/Settings/Settings.tsx:248 +msgid "Sign out?" +msgstr "Wylogować się?" + +#: src/view/shell/bottom-bar/BottomBar.tsx:301 +#: src/view/shell/bottom-bar/BottomBar.tsx:302 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:196 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:198 +#: src/view/shell/NavSignupCard.tsx:47 +#: src/view/shell/NavSignupCard.tsx:52 +msgid "Sign up" +msgstr "Zarejestruj się" + +#: src/components/moderation/ScreenHider.tsx:91 +#: src/lib/moderation/useGlobalLabelStrings.ts:28 +msgid "Sign-in Required" +msgstr "Rejestracja wymagana" + +#: src/lib/hooks/useAccountSwitcher.ts:41 +#: src/screens/Login/ChooseAccountForm.tsx:53 +msgid "Signed in as @{0}" +msgstr "Zalogowano jako @{0}" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:299 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:306 +msgid "Signup without a starter pack" +msgstr "Zarejestruj się bez pakietu startowego" + +#: src/components/FeedInterstitials.tsx:316 +msgid "Similar accounts" +msgstr "Podobne osoby" + +#: src/screens/Onboarding/StepInterests/index.tsx:231 +#: src/screens/StarterPack/Wizard/index.tsx:200 +msgid "Skip" +msgstr "Pomiń" + +#: src/screens/Onboarding/StepInterests/index.tsx:228 +msgid "Skip this flow" +msgstr "Pomiń to" + +#: src/screens/Settings/AppearanceSettings.tsx:149 +msgid "Smaller" +msgstr "Mniejszy" + +#: src/screens/Onboarding/index.tsx:37 +#: src/screens/Onboarding/state.ts:87 +msgid "Software Dev" +msgstr "Programowanie" + +#: src/components/FeedInterstitials.tsx:447 +msgid "Some other feeds you might like" +msgstr "Inne kanały, które mogą Ci się spodobać" + +#: src/components/WhoCanReply.tsx:70 +msgid "Some people can reply" +msgstr "Niektórzy mogą odpowiedzieć" + +#: src/screens/Messages/Conversation.tsx:112 +msgid "Something went wrong" +msgstr "Coś poszło nie tak" + +#: src/screens/Deactivated.tsx:94 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 +msgid "Something went wrong, please try again" +msgstr "Coś poszło nie tak, proszę spróbować ponownie" + +#: src/components/ReportDialog/index.tsx:54 +#: src/screens/Moderation/index.tsx:111 +#: src/screens/Profile/Sections/Labels.tsx:87 +msgid "Something went wrong, please try again." +msgstr "Coś poszło nie tak, proszę spróbować ponownie" + +#: src/components/Lists.tsx:200 +#: src/screens/Settings/NotificationSettings.tsx:42 +msgid "Something went wrong!" +msgstr "Coś poszło nie tak!" + +#: src/App.native.tsx:112 +#: src/App.web.tsx:95 +msgid "Sorry! Your session expired. Please log in again." +msgstr "Ups, twoja sesja wygasła! Proszę się ponownie zalogować." + +#: src/screens/Settings/ThreadPreferences.tsx:48 +msgid "Sort replies" +msgstr "Sortuj odpowiedzi" + +#: src/screens/Settings/ThreadPreferences.tsx:55 +msgid "Sort replies by" +msgstr "Sortuj odpowiedzi według" + +#: src/screens/Settings/ThreadPreferences.tsx:52 +msgid "Sort replies to the same post by:" +msgstr "Sortuj odpowiedzi do wpisu wg.:" + +#: src/components/moderation/LabelsOnMeDialog.tsx:168 +msgid "Source:" +msgstr "Źródło:" + +#: src/lib/moderation/useReportOptions.ts:72 +#: src/lib/moderation/useReportOptions.ts:85 +msgid "Spam" +msgstr "Spam" + +#: src/lib/moderation/useReportOptions.ts:55 +msgid "Spam; excessive mentions or replies" +msgstr "Spam, nadmierne odpowiedzi lub wzmianki" + +#: src/screens/Onboarding/index.tsx:27 +#: src/screens/Onboarding/state.ts:100 +msgid "Sports" +msgstr "Sport" + +#: src/components/dms/dialogs/NewChatDialog.tsx:72 +msgid "Start a new chat" +msgstr "Zacznij nową rozmowę" + +#: src/components/dms/dialogs/SearchablePeopleList.tsx:350 +msgid "Start chat with {displayName}" +msgstr "Zacznij nową rozmowę z {displayName}" + +#: src/Navigation.tsx:393 +#: src/Navigation.tsx:398 +#: src/screens/StarterPack/Wizard/index.tsx:191 +msgid "Starter Pack" +msgstr "Pakiet startowy" + +#: src/components/StarterPack/StarterPackCard.tsx:81 +msgid "Starter pack by {0}" +msgstr "Pakiet startowy {0}" + +#: src/components/StarterPack/StarterPackCard.tsx:80 +msgid "Starter pack by you" +msgstr "Twój pakiet startowy" + +#: src/screens/StarterPack/StarterPackScreen.tsx:715 +msgid "Starter pack is invalid" +msgstr "Nieprawidłowy pakiet startowy" + +#: src/view/screens/Profile.tsx:233 +msgid "Starter Packs" +msgstr "Pakiety" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:244 +msgid "Starter packs let you easily share your favorite feeds and people with your friends." +msgstr "Pakiety startowe pozwalają łatwo udostępnić znajomym ulubione osoby i kanały." + +#: src/screens/Settings/AboutSettings.tsx:46 +#: src/screens/Settings/AboutSettings.tsx:49 +msgid "Status Page" +msgstr "Status systemów" + +#: src/screens/Signup/index.tsx:130 +msgid "Step {0} of {1}" +msgstr "Krok {0} z {1}" + +#: src/screens/Settings/Settings.tsx:300 +msgid "Storage cleared, you need to restart the app now." +msgstr "Pamięć masowa wyczyszczona. Teraz musisz uruchomić ponownie aplikację." + +#: src/Navigation.tsx:244 +#: src/screens/Settings/Settings.tsx:316 +msgid "Storybook" +msgstr "Storybook" + +#: src/components/moderation/LabelsOnMeDialog.tsx:299 +#: src/components/moderation/LabelsOnMeDialog.tsx:300 +#: src/screens/Messages/components/ChatDisabled.tsx:142 +#: src/screens/Messages/components/ChatDisabled.tsx:143 +msgid "Submit" +msgstr "Wyślij" + +#: src/view/screens/ProfileList.tsx:703 +msgid "Subscribe" +msgstr "Subskrybuj" + +#: src/screens/Profile/Sections/Labels.tsx:201 +msgid "Subscribe to @{0} to use these labels:" +msgstr "Subskrybuj @{0}, aby użyć tych etykiet:" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:238 +msgid "Subscribe to Labeler" +msgstr "Subskrybuj usługę" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:204 +msgid "Subscribe to this labeler" +msgstr "Subskrybuj tę usługę moderacji" + +#: src/view/screens/ProfileList.tsx:699 +msgid "Subscribe to this list" +msgstr "Subskrybuj tę listę" + +#: src/components/dialogs/VerifyEmailDialog.tsx:95 +msgid "Success!" +msgstr "Sukces!" + +#: src/view/screens/Search/Explore.tsx:332 +msgid "Suggested accounts" +msgstr "Proponowane osoby" + +#: src/components/FeedInterstitials.tsx:318 +msgid "Suggested for you" +msgstr "Proponowane dla Ciebie" + +#: src/view/com/composer/labels/LabelsBtn.tsx:146 +#: src/view/com/composer/labels/LabelsBtn.tsx:149 +msgid "Suggestive" +msgstr "Sugestywne" + +#: src/Navigation.tsx:264 +#: src/view/screens/Support.tsx:31 +#: src/view/screens/Support.tsx:34 +msgid "Support" +msgstr "Pomoc" + +#: src/screens/Settings/Settings.tsx:94 +#: src/screens/Settings/Settings.tsx:108 +#: src/screens/Settings/Settings.tsx:403 +msgid "Switch account" +msgstr "Przełącz konto" + +#: src/components/dialogs/SwitchAccount.tsx:46 +#: src/components/dialogs/SwitchAccount.tsx:49 +msgid "Switch Account" +msgstr "Przełącz konto" + +#: src/screens/Settings/AppearanceSettings.tsx:84 +#: src/screens/Settings/AppearanceSettings.tsx:132 +msgid "System" +msgstr "System" + +#: src/screens/Settings/AboutSettings.tsx:53 +#: src/screens/Settings/AboutSettings.tsx:56 +#: src/screens/Settings/Settings.tsx:309 +msgid "System log" +msgstr "Dziennik systemu" + +#: src/components/TagMenu/index.tsx:87 +msgid "Tag menu: {displayTag}" +msgstr "Menu taga: {displayTag}" + +#: src/components/dialogs/MutedWords.tsx:282 +msgid "Tags only" +msgstr "Tylko tagi" + +#: src/components/ProgressGuide/Toast.tsx:156 +msgid "Tap to dismiss" +msgstr "Dotknij aby odrzucić" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:136 +msgid "Tap to enter full screen" +msgstr "Dotknij aby wejść w tryb pełnoekranowy" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:142 +msgid "Tap to play or pause" +msgstr "Dotknij aby odtworzyć lub zatrzymać" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:159 +msgid "Tap to toggle sound" +msgstr "Dotknij aby przełączyć dźwięk" + +#: src/view/com/util/images/AutoSizedImage.tsx:199 +#: src/view/com/util/images/AutoSizedImage.tsx:221 +msgid "Tap to view full image" +msgstr "Dotknij aby zobaczyć pełny obraz" + +#: src/state/shell/progress-guide.tsx:166 +msgid "Task complete - 10 likes!" +msgstr "Ukończone - 10 polubień!" + +#: src/components/ProgressGuide/List.tsx:49 +msgid "Teach our algorithm what you like" +msgstr "Daj znać algorytmowi co lubisz" + +#: src/screens/Onboarding/index.tsx:36 +#: src/screens/Onboarding/state.ts:101 +msgid "Tech" +msgstr "Technologia" + +#: src/components/dms/ChatEmptyPill.tsx:35 +msgid "Tell a joke!" +msgstr "Opowiedz żart!" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:352 +msgid "Tell us a bit about yourself" +msgstr "Opowiedz nam coś o sobie" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:63 +msgid "Tell us a little more" +msgstr "Opowiedz nam więcej" + +#: src/view/shell/desktop/RightNav.tsx:90 +msgid "Terms" +msgstr "Regulamin" + +#: src/Navigation.tsx:274 +#: src/screens/Settings/AboutSettings.tsx:30 +#: src/screens/Settings/AboutSettings.tsx:33 +#: src/view/screens/TermsOfService.tsx:31 +#: src/view/shell/Drawer.tsx:617 +#: src/view/shell/Drawer.tsx:619 +msgid "Terms of Service" +msgstr "Regulamin usługi" + +#: 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 "Zawartość narusza regulamin społeczności" + +#: src/components/dialogs/MutedWords.tsx:266 +msgid "Text & tags" +msgstr "Tekst i tagi" + +#: src/components/moderation/LabelsOnMeDialog.tsx:263 +#: src/screens/Messages/components/ChatDisabled.tsx:108 +msgid "Text input field" +msgstr "Obszar wprowadzania tekstu" + +#: src/components/dialogs/VerifyEmailDialog.tsx:96 +msgid "Thank you! Your email has been successfully verified." +msgstr "Email został pomyślnie zweryfikowany. Dziękujemy!" + +#: src/components/dms/ReportDialog.tsx:129 +#: src/components/ReportDialog/SubmitView.tsx:82 +msgid "Thank you. Your report has been sent." +msgstr "Zgłoszenie wysłane. Dziękujemy." + +#: src/components/intents/VerifyEmailIntentDialog.tsx:82 +msgid "Thanks, you have successfully verified your email address. You can close this dialog." +msgstr "Email został pomyślnie zweryfikowany. Możesz teraz zamknąć ten dialog." + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:468 +msgid "That contains the following:" +msgstr "Powinno zawierać następujące:" + +#: src/screens/Signup/StepHandle.tsx:51 +msgid "That handle is already taken." +msgstr "Nazwa jest już zajęta." + +#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/StarterPackScreen.tsx:104 +#: src/screens/StarterPack/StarterPackScreen.tsx:148 +#: src/screens/StarterPack/StarterPackScreen.tsx:149 +#: src/screens/StarterPack/Wizard/index.tsx:107 +#: src/screens/StarterPack/Wizard/index.tsx:117 +msgid "That starter pack could not be found." +msgstr "Pakiet startowy nie znaleziony" + +#: src/view/com/post-thread/PostQuotes.tsx:133 +msgid "That's all, folks!" +msgstr "I to wszystko!" + +#: 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 "Konto będzie mogło wchodzić w interakcję z Tobą po odblokowaniu" + +#: src/components/moderation/ModerationDetailsDialog.tsx:118 +#: src/lib/moderation/useModerationCauseDescription.ts:126 +msgid "The author of this thread has hidden this reply." +msgstr "Autor wątku ukrył tę odpowiedź" + +#: src/screens/Moderation/index.tsx:363 +msgid "The Bluesky web application" +msgstr "Aplikacja web Bluesky" + +#: src/view/screens/CommunityGuidelines.tsx:38 +msgid "The Community Guidelines have been moved to <0/>" +msgstr "Regulamin społeczności został przeniesiony do <0/>" + +#: src/view/screens/CopyrightPolicy.tsx:35 +msgid "The Copyright Policy has been moved to <0/>" +msgstr "Polityka praw autorskich została przeniesiona do <0/>" + +#: src/view/com/posts/FeedShutdownMsg.tsx:102 +msgid "The Discover feed" +msgstr "Kanał Discover" + +#: src/state/shell/progress-guide.tsx:167 +#: src/state/shell/progress-guide.tsx:172 +msgid "The Discover feed now knows what you like" +msgstr "Kanał Discover teraz wie, co lubisz" + +#: 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 "Aplikacja daje lepsze wrażenia. Pobierz Bluesky i wrócimy tam, gdzie skończyliśmy." + +#: src/view/com/posts/FeedShutdownMsg.tsx:67 +msgid "The feed has been replaced with Discover." +msgstr "Ten kanał został zamieniony na Discover." + +#: src/components/moderation/LabelsOnMeDialog.tsx:58 +msgid "The following labels were applied to your account." +msgstr "Na Twoim koncie zostały umieszczone następujące etykiety." + +#: src/components/moderation/LabelsOnMeDialog.tsx:59 +msgid "The following labels were applied to your content." +msgstr "Na Twojej treści zostały umieszczone następujące etykiety." + +#: src/screens/Onboarding/Layout.tsx:58 +msgid "The following steps will help customize your Bluesky experience." +msgstr "Następujące kroki pomogą nam dostosować Bluesky dla Ciebie." + +#: src/view/com/post-thread/PostThread.tsx:208 +#: src/view/com/post-thread/PostThread.tsx:220 +msgid "The post may have been deleted." +msgstr "Wpis mógł zostać usunięty." + +#: src/view/screens/PrivacyPolicy.tsx:35 +msgid "The Privacy Policy has been moved to <0/>" +msgstr "Polityka prywatności została przeniesiona do <0/>" + +#: src/view/com/composer/state/video.ts:408 +msgid "The selected video is larger than 50MB." +msgstr "Wybrane wideo jest większe niż 50MB." + +#: src/lib/strings/errors.ts:18 +msgid "The server appears to be experiencing issues. Please try again in a few moments." +msgstr "Wygląda na to, że serwer ma obecnie problemy. Proszę spróbować ponownie za moment." + +#: src/screens/StarterPack/StarterPackScreen.tsx:725 +msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." +msgstr "Ten pakiet startowy jest nieprawidłowy. Możesz go usunąć." + +#: 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 "Formularz pomocy technicznej został przeniesiony. Jeśli chcesz się z nami skontaktować, proszę isć do {HELP_DESK_URL} lub <0/>" + +#: src/view/screens/TermsOfService.tsx:35 +msgid "The Terms of Service have been moved to" +msgstr "Regulamin korzystania z serwisu przeniesiony do" + +#: 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 "Wpisany kod weryfikacji jest nieprawidłowy. Proszę upewnić sie, że kod został poprawnie wpisany, lub poproś o nowy kod." + +#: src/screens/Settings/AppearanceSettings.tsx:136 +msgid "Theme" +msgstr "Motyw" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86 +msgid "There is no time limit for account deactivation, come back any time." +msgstr "Dezaktywacja konta nie ma limitu czasu, możesz do nas wrócić w każdym momencie." + +#: src/components/dialogs/GifSelect.tsx:226 +msgid "There was an issue connecting to Tenor." +msgstr "Błąd podczas łączenia z Tenor." + +#: src/view/screens/ProfileFeed.tsx:240 +#: src/view/screens/ProfileList.tsx:369 +#: src/view/screens/ProfileList.tsx:388 +#: src/view/screens/SavedFeeds.tsx:86 +msgid "There was an issue contacting the server" +msgstr "Błąd podczas łączenia z serwerem" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:112 +#: src/view/screens/ProfileFeed.tsx:546 +msgid "There was an issue contacting the server, please check your internet connection and try again." +msgstr "Błąd podczas łączenia z serwerem. Proszę sprawdzić połączenie z Internetem i spróbować ponownie." + +#: src/view/com/feeds/FeedSourceCard.tsx:127 +#: src/view/com/feeds/FeedSourceCard.tsx:140 +msgid "There was an issue contacting your server" +msgstr "Błąd podczas łączenia z serwerem." + +#: src/view/com/notifications/Feed.tsx:129 +msgid "There was an issue fetching notifications. Tap here to try again." +msgstr "Błąd podczas pobierania powiadomień. Dotknij aby spróbować ponownie." + +#: src/view/com/posts/Feed.tsx:473 +msgid "There was an issue fetching posts. Tap here to try again." +msgstr "Błąd podczas pobierania wpisów. Dotknij aby spróbować ponownie." + +#: src/view/com/lists/ListMembers.tsx:169 +msgid "There was an issue fetching the list. Tap here to try again." +msgstr "Błąd podczas pobierania listy. Dotknij aby spróbować ponownie." + +#: src/screens/Settings/AppPasswords.tsx:52 +msgid "There was an issue fetching your app passwords" +msgstr "Błąd podczas pobierania haseł aplikacji" + +#: src/view/com/feeds/ProfileFeedgens.tsx:150 +#: src/view/com/lists/ProfileLists.tsx:149 +msgid "There was an issue fetching your lists. Tap here to try again." +msgstr "Błąd podczas pobierania list. Dotknij aby spróbować ponownie." + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:102 +msgid "There was an issue fetching your service info" +msgstr "Błąd podczas pobierania informacji o usłudze" + +#: src/view/com/posts/FeedErrorMessage.tsx:145 +msgid "There was an issue removing this feed. Please check your internet connection and try again." +msgstr "Błąd podczas usuwania kanału. Proszę sprawdzić połączenie z Internetem i spróbować ponownie." + +#: src/components/dms/ReportDialog.tsx:217 +#: src/components/ReportDialog/SubmitView.tsx:87 +msgid "There was an issue sending your report. Please check your internet connection." +msgstr "Błąd podczas wysyłania zgłoszenia. Proszę sprawdzić połączenie z Internetem i spróbować ponownie." + +#: src/view/com/posts/FeedShutdownMsg.tsx:52 +#: src/view/com/posts/FeedShutdownMsg.tsx:71 +#: src/view/screens/ProfileFeed.tsx:211 +msgid "There was an issue updating your feeds, please check your internet connection and try again." +msgstr "Błąd podczas zapisywania kanałów. Proszę sprawdzić połączenie z Internetem i spróbować ponownie." + +#: 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 +msgid "There was an issue! {0}" +msgstr "Wystąpił błąd. {0}" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:182 +#: src/screens/List/ListHiddenScreen.tsx:63 +#: src/screens/List/ListHiddenScreen.tsx:77 +#: src/screens/List/ListHiddenScreen.tsx:99 +#: src/view/screens/ProfileList.tsx:400 +#: src/view/screens/ProfileList.tsx:413 +#: src/view/screens/ProfileList.tsx:426 +#: src/view/screens/ProfileList.tsx:439 +msgid "There was an issue. Please check your internet connection and try again." +msgstr "Wystąpił błąd. Proszę sprawdzić połączenie z Internetem i spróbować ponownie." + +#: 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 "Wystąpił niespodziewany błąd w aplikacji. Proszę dać nam znać o tym!" + +#: src/screens/SignupQueued.tsx:112 +msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." +msgstr "Obecnie mamy bardzo dużo rejestracji nowych użytkowników! Spróbujemy aktywować twoje konto tak szybko, jak to możliwe." + +#: src/screens/Settings/FollowingFeedPreferences.tsx:55 +msgid "These settings only apply to the Following feed." +msgstr "Te ustawienia dotyczą tylko kanału osób obserwowanych." + +#: src/components/moderation/ScreenHider.tsx:111 +msgid "This {screenDescription} has been flagged:" +msgstr "Ten {screenDescription} został zgłoszony:" + +#: src/components/moderation/ScreenHider.tsx:106 +msgid "This account has requested that users sign in to view their profile." +msgstr "Właściciel tego konta poprosił, aby inni zalogowali się w celu przeglądania tego profilu." + +#: 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 "Konto jest zablokowane przez jedną lub więcej list moderacji. Aby odblokować konto, proszę usunąć je z tych list." + +#: src/components/moderation/LabelsOnMeDialog.tsx:246 +msgid "This appeal will be sent to <0>{sourceName}." +msgstr "Apelacja będzie wysłana do <0>{sourceName}." + +#: src/screens/Messages/components/ChatDisabled.tsx:104 +msgid "This appeal will be sent to Bluesky's moderation service." +msgstr "Apelacja będzie wysłana do usługi moderacji Bluesky." + +#: src/screens/Messages/components/MessageListError.tsx:18 +msgid "This chat was disconnected" +msgstr "Rozmowa rozłączona." + +#: src/lib/moderation/useGlobalLabelStrings.ts:19 +msgid "This content has been hidden by the moderators." +msgstr "Moderatorzy ukryli tą treść." + +#: src/lib/moderation/useGlobalLabelStrings.ts:24 +msgid "This content has received a general warning from moderators." +msgstr "Moderatorzy nałożyli ogólne ostrzeżenie na tą treść." + +#: src/components/dialogs/EmbedConsent.tsx:63 +msgid "This content is hosted by {0}. Do you want to enable external media?" +msgstr "Ta treść jest hostowana przez {0}. Czy chcesz włączyć dostęp do zewnętrznych treści?" + +#: src/components/moderation/ModerationDetailsDialog.tsx:83 +#: src/lib/moderation/useModerationCauseDescription.ts:82 +msgid "This content is not available because one of the users involved has blocked the other." +msgstr "Ta treść jest niedostępna ponieważ jedna z osób zablokowała drugą." + +#: src/view/com/posts/FeedErrorMessage.tsx:114 +msgid "This content is not viewable without a Bluesky account." +msgstr "Ta treść nie jest dostępna bez konta Bluesky." + +#: src/screens/Messages/components/ChatListItem.tsx:266 +msgid "This conversation is with a deleted or a deactivated account. Press for options." +msgstr "Ta rozmowa jest z usuniętym lub dezaktywowanym kontem. Dotknij aby zobaczyć opcje." + +#: src/screens/Settings/components/ExportCarDialog.tsx:94 +msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." +msgstr "Funkcja w wersji beta. Możesz się dowiedzieć więcej o eksportowaniu danych w <0>tym artykule." + +#: 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 "Ta funkcja jest niedostępna podczas używania hasła aplikacji. Proszę zalogować się głównym hasłem." + +#: src/view/com/posts/FeedErrorMessage.tsx:120 +msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." +msgstr "Ten kanał jest tymczasowo niedostępny, ponieważ doświadcza dużego zainteresowania. Spróbuj ponownie później." + +#: 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 "Ten kanał jest pusty! Być może musisz zaobserwować więcej osób lub dostroić ustawienia języków." + +#: src/components/StarterPack/Main/PostsList.tsx:36 +#: src/view/screens/ProfileFeed.tsx:478 +#: src/view/screens/ProfileList.tsx:788 +msgid "This feed is empty." +msgstr "Ten kanał jest pusty." + +#: src/view/com/posts/FeedShutdownMsg.tsx:99 +msgid "This feed is no longer online. We are showing <0>Discover instead." +msgstr "Ten kanał jest już niedostępny. Zamiast niego pokazujemy <0>Discover." + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:559 +msgid "This handle is reserved. Please try a different one." +msgstr "Ta nazwa jest zarezerwowana. Proszę spróbować coś innego." + +#: src/components/dialogs/BirthDateSettings.tsx:40 +msgid "This information is not shared with other users." +msgstr "To nie będzie udostępniane innym użytknownikom." + +#: 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 "To jest ważne w przypadku jeśli chcesz zmienić adres email lub hasło." + +#: src/components/moderation/ModerationDetailsDialog.tsx:151 +msgid "This label was applied by <0>{0}." +msgstr "Etykieta nałożona przez <0>{0}." + +#: src/components/moderation/ModerationDetailsDialog.tsx:146 +msgid "This label was applied by the author." +msgstr "Etykieta nałożona przez autora." + +#: src/components/moderation/LabelsOnMeDialog.tsx:163 +msgid "This label was applied by you." +msgstr "Etykieta nałożona przez Ciebie." + +#: src/screens/Profile/Sections/Labels.tsx:188 +msgid "This labeler hasn't declared what labels it publishes, and may not be active." +msgstr "Usługa moderacji jeszcze nie opublikowała żadnych etykiet. Być może jest nieaktywna." + +#: src/view/com/modals/LinkWarning.tsx:72 +msgid "This link is taking you to the following website:" +msgstr "Ten link prowadzi do następującej strony:" + +#: src/screens/List/ListHiddenScreen.tsx:136 +msgid "This list - created by <0>{0} - contains possible violations of Bluesky's community guidelines in its name or description." +msgstr "Nazwa lub opis tej listy autorstwa <0>{0} zawiera potencjalne naruszenia regulaminu społeczności Bluesky." + +#: src/view/screens/ProfileList.tsx:966 +msgid "This list is empty!" +msgstr "Ta lista jest pusta!" + +#: src/screens/Profile/ErrorState.tsx:40 +msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." +msgstr "Usługa moderacji niedostępna. Zobacz więcej informacji poniżej. Jeśli ten błąd nie ustąpi, skontaktuj się z nami." + +#: src/view/com/post-thread/PostThreadItem.tsx:836 +msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." +msgstr "Autor twierdzi, że ten wpis został utworzony <0>{0}, ale po raz pierwszy został indeksowany przez Bluesky <1>{1}." + +#: src/view/com/post-thread/PostThreadItem.tsx:147 +msgid "This post has been deleted." +msgstr "Ten wpis został usunięty." + +#: src/view/com/util/forms/PostDropdownBtn.tsx:700 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:352 +msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in." +msgstr "Ten wpis jest widoczny wyłącznie dla zalogowanych użytkowników. Niezalogowane osoby nie będą mogły go wyświetlić." + +#: src/view/com/util/forms/PostDropdownBtn.tsx:681 +msgid "This post will be hidden from feeds and threads. This cannot be undone." +msgstr "Wpis będzie ukryty z kanałów i wątków. Nie można tego cofnąć." + +#: src/view/com/composer/Composer.tsx:407 +msgid "This post's author has disabled quote posts." +msgstr "Autor wpisu wyłączył funkcję cytatów." + +#: 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 "Ten profil jest widoczny wyłącznie dla zalogowanych użytkowników. Niezalogowane osoby nie będą mogły go wyświetlić." + +#: src/view/com/util/forms/PostDropdownBtn.tsx:743 +msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." +msgstr "Odpowiedź będzie przeniesiona do ukrytej sekcji na dole twojego wątku. Ty oraz inni nie będziecie otrzymywać powiadomień dla kolejnych odpowiedzi." + +#: src/screens/Signup/StepInfo/Policies.tsx:37 +msgid "This service has not provided terms of service or a privacy policy." +msgstr "Usługa jeszcze nie podała regulaminu lub polityki prywatności." + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:437 +msgid "This should create a domain record at:" +msgstr "To powinno utworzyć rekord domeny w:" + +#: src/view/com/profile/ProfileFollowers.tsx:96 +msgid "This user doesn't have any followers." +msgstr "Użytkownik nie ma obserwatorów." + +#: src/components/dms/MessagesListBlockedFooter.tsx:60 +msgid "This user has blocked you" +msgstr "Użytkownik zablokował Cię." + +#: src/components/moderation/ModerationDetailsDialog.tsx:78 +#: src/lib/moderation/useModerationCauseDescription.ts:73 +msgid "This user has blocked you. You cannot view their content." +msgstr "Użytkownik zablokował Cię. Nie możesz wyświetlić tej treści." + +#: src/lib/moderation/useGlobalLabelStrings.ts:30 +msgid "This user has requested that their content only be shown to signed-in users." +msgstr "Właściciel tego konta poprosił, aby inni zalogowali się w celu przeglądania tej treści." + +#: src/components/moderation/ModerationDetailsDialog.tsx:58 +msgid "This user is included in the <0>{0} list which you have blocked." +msgstr "Osoba jest zawarta w liście moderacji \"<0>{0}\" która jest zablokowana przez Ciebie." + +#: src/components/moderation/ModerationDetailsDialog.tsx:90 +msgid "This user is included in the <0>{0} list which you have muted." +msgstr "Osoba jest zawarta w liście moderacji \"<0>{0}\" która jest wyciszona przez Ciebie." + +#: src/components/NewskieDialog.tsx:65 +msgid "This user is new here. Press for more info about when they joined." +msgstr "Ten użytkownik jest nowy. Dotknij aby zobaczyć więcej informacji." + +#: src/view/com/profile/ProfileFollows.tsx:96 +msgid "This user isn't following anyone." +msgstr "Użytkownik nikogo nie obserwuje." + +#: src/components/dialogs/MutedWords.tsx:435 +msgid "This will delete \"{0}\" from your muted words. You can always add it back later." +msgstr "To usunie \"{0}\" z Twoich wyciszonych słów. W każdym momencie możesz to ponownie dodać." + +#: src/screens/Settings/Settings.tsx:452 +msgid "This will remove @{0} from the quick access list." +msgstr "To usunie @{0} z Twojego szybkiego dostępu." + +#: src/view/com/util/forms/PostDropdownBtn.tsx:733 +msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." +msgstr "To odłączy Twój wpis od tego cytatu dla wszystkich użytkowników i zastąpi go uwagą." + +#: src/screens/Settings/ContentAndMediaSettings.tsx:49 +#: src/screens/Settings/ContentAndMediaSettings.tsx:52 +msgid "Thread preferences" +msgstr "Ustawienia wątków" + +#: src/screens/Settings/ThreadPreferences.tsx:42 +msgid "Thread Preferences" +msgstr "Ustawienia wątków" + +#: src/screens/Settings/ThreadPreferences.tsx:129 +msgid "Threaded mode" +msgstr "Tryb wątkowy" + +#: src/Navigation.tsx:307 +msgid "Threads Preferences" +msgstr "Ustawienia wątków" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:99 +msgid "To disable the email 2FA method, please verify your access to the email address." +msgstr "Aby wyłączyć uwierzytelnianie dwuskładnikowe przez email, proszę zweryfikować dostęp do skrzynki odbiorczej." + +#: src/components/dms/ReportConversationPrompt.tsx:20 +msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue." +msgstr "Aby zgłosić rozmowę, proszę zgłosić jedną z wiadomości przez ekran rozmowy. To pomaga naszym moderatorom zrozumieć kontekst tego zgłoszenia." + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:133 +msgid "To upload videos to Bluesky, you must first verify your email." +msgstr "Aby wysyłać wideo, musisz najpierw zweryfikować adres email." + +#: src/components/ReportDialog/SelectLabelerView.tsx:32 +msgid "To whom would you like to send this report?" +msgstr "Do kogo chcesz wysłać to zgłoszenie?" + +#: src/components/dms/DateDivider.tsx:44 +msgid "Today" +msgstr "Dziś" + +#: src/view/com/util/forms/DropdownButton.tsx:258 +msgid "Toggle dropdown" +msgstr "Przełącz rozwijaną listę" + +#: src/screens/Moderation/index.tsx:340 +msgid "Toggle to enable or disable adult content" +msgstr "Przełącz, aby włączyć lub wyłączyć treści dla dorosłych" + +#: src/screens/Hashtag.tsx:87 +#: src/view/screens/Search/Search.tsx:511 +msgid "Top" +msgstr "Najlepsze" + +#: src/components/dms/MessageMenu.tsx:103 +#: src/components/dms/MessageMenu.tsx:105 +#: src/view/com/post-thread/PostThreadItem.tsx:761 +#: src/view/com/post-thread/PostThreadItem.tsx:764 +#: src/view/com/util/forms/PostDropdownBtn.tsx:422 +#: src/view/com/util/forms/PostDropdownBtn.tsx:424 +msgid "Translate" +msgstr "Przetłumacz" + +#: src/view/com/util/error/ErrorScreen.tsx:83 +msgctxt "action" +msgid "Try again" +msgstr "Spróbuj ponownie" + +#: src/screens/Onboarding/state.ts:102 +msgid "TV" +msgstr "Telewizja" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:49 +msgid "Two-factor authentication (2FA)" +msgstr "Uwierzytelnianie dwuskładnikowe (2FA)" + +#: src/screens/Messages/components/MessageInput.tsx:148 +msgid "Type your message here" +msgstr "Wpisz tutaj wiadomość" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:413 +msgid "Type:" +msgstr "Rodzaj:" + +#: src/view/screens/ProfileList.tsx:594 +msgid "Un-block list" +msgstr "Odblokuj listę" + +#: src/view/screens/ProfileList.tsx:579 +msgid "Un-mute list" +msgstr "Przestań wyciszać listę" + +#: src/lib/strings/errors.ts:11 +msgid "Unable to connect. Please check your internet connection and try again." +msgstr "Bład podczas łączenia. Proszę sprawdzić połączenie i spróbować ponownie." + +#: src/screens/Login/ForgotPasswordForm.tsx:68 +#: src/screens/Login/index.tsx:76 +#: src/screens/Login/LoginForm.tsx:152 +#: src/screens/Login/SetNewPasswordForm.tsx:71 +#: src/screens/Signup/index.tsx:71 +#: src/view/com/modals/ChangePassword.tsx:71 +msgid "Unable to contact your service. Please check your Internet connection." +msgstr "Błąd podczas łączenia z usługą. Proszę sprawdzić połączenie z Internetem." + +#: src/screens/StarterPack/StarterPackScreen.tsx:649 +msgid "Unable to delete" +msgstr "Nie można było usunąć" + +#: 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:685 +msgid "Unblock" +msgstr "Odblokuj" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202 +msgctxt "action" +msgid "Unblock" +msgstr "Odblokuj" + +#: src/components/dms/ConvoMenu.tsx:188 +#: src/components/dms/ConvoMenu.tsx:192 +msgid "Unblock account" +msgstr "Odblokuj konto" + +#: src/view/com/profile/ProfileMenu.tsx:279 +#: src/view/com/profile/ProfileMenu.tsx:285 +msgid "Unblock Account" +msgstr "Odblokuj konto" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277 +#: src/view/com/profile/ProfileMenu.tsx:323 +msgid "Unblock Account?" +msgstr "Odblokować konto?" + +#: src/view/com/util/post-ctrls/RepostButton.tsx:71 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76 +msgid "Undo repost" +msgstr "Anuluj podanie dalej" + +#: src/view/com/profile/FollowButton.tsx:61 +msgctxt "action" +msgid "Unfollow" +msgstr "Przestań obs." + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:217 +msgid "Unfollow {0}" +msgstr "Przestań obs. {0}" + +#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:231 +msgid "Unfollow Account" +msgstr "Przestań obs." + +#: src/view/screens/ProfileFeed.tsx:576 +msgid "Unlike this feed" +msgstr "Odlub kanał" + +#: src/components/TagMenu/index.tsx:248 +#: src/view/screens/ProfileList.tsx:692 +msgid "Unmute" +msgstr "Anuluj wyciszenie" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:93 +msgctxt "video" +msgid "Unmute" +msgstr "Wycisz" + +#: src/components/TagMenu/index.web.tsx:115 +msgid "Unmute {truncatedTag}" +msgstr "Anuluj wyciszenie {truncatedTag}" + +#: src/view/com/profile/ProfileMenu.tsx:258 +#: src/view/com/profile/ProfileMenu.tsx:264 +msgid "Unmute Account" +msgstr "Anuluj wyciszenie konta" + +#: src/components/TagMenu/index.tsx:204 +msgid "Unmute all {displayTag} posts" +msgstr "Anuluj wyciszenie wpisów {displayTag}" + +#: src/components/dms/ConvoMenu.tsx:176 +msgid "Unmute conversation" +msgstr "Anuluj wyciszenie rozmowy" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:507 +#: src/view/com/util/forms/PostDropdownBtn.tsx:512 +msgid "Unmute thread" +msgstr "Anuluj wyciszenie wątku" + +#: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:318 +msgid "Unmute video" +msgstr "Wycisz wideo" + +#: src/view/screens/ProfileFeed.tsx:296 +#: src/view/screens/ProfileList.tsx:676 +msgid "Unpin" +msgstr "Odepnij" + +#: src/view/screens/ProfileFeed.tsx:293 +msgid "Unpin from home" +msgstr "Odepnij od pulpitu" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:397 +#: src/view/com/util/forms/PostDropdownBtn.tsx:404 +msgid "Unpin from profile" +msgstr "Odepnij od profilu" + +#: src/view/screens/ProfileList.tsx:559 +msgid "Unpin moderation list" +msgstr "Odepnij listę moderacji" + +#: src/view/screens/ProfileList.tsx:356 +msgid "Unpinned from your feeds" +msgstr "Odpięto kanał" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:236 +msgid "Unsubscribe" +msgstr "Odsubskrybuj" + +#: src/screens/List/ListHiddenScreen.tsx:184 +#: src/screens/List/ListHiddenScreen.tsx:194 +msgid "Unsubscribe from list" +msgstr "Odsubskrybuj listę" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:203 +msgid "Unsubscribe from this labeler" +msgstr "Odsubskrybuj usł. mod." + +#: src/screens/List/ListHiddenScreen.tsx:86 +msgid "Unsubscribed from list" +msgstr "Odsubskrybowano listę" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:72 +msgid "Unsupported video type: {mimeType}" +msgstr "Nieobsługiwany rodzaj wideo: {mimeType}" + +#: src/lib/moderation/useReportOptions.ts:77 +#: src/lib/moderation/useReportOptions.ts:90 +msgid "Unwanted Sexual Content" +msgstr "Niechciana treść seksualna" + +#: src/view/com/modals/UserAddRemoveLists.tsx:82 +msgid "Update <0>{displayName} in Lists" +msgstr "Zaktualizuj <0>{displayName} w listach" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:495 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:516 +msgid "Update to {domain}" +msgstr "Zaktualizuj na {domain}" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:311 +msgid "Updating quote attachment failed" +msgstr "Błąd podczas dołączania cytatu" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:341 +msgid "Updating reply visibility failed" +msgstr "Błąd podczas zapisywania stanu widoczności" + +#: src/screens/Login/SetNewPasswordForm.tsx:180 +msgid "Updating..." +msgstr "Aktualizowanie..." + +#: src/screens/Onboarding/StepProfile/index.tsx:290 +msgid "Upload a photo instead" +msgstr "Zamiast tego ustaw zdjęcie" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:453 +msgid "Upload a text file to:" +msgstr "Prześlij plik tekstowy na:" + +#: 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 "Prześlij z aparatu" + +#: src/view/com/util/UserAvatar.tsx:388 +#: src/view/com/util/UserBanner.tsx:140 +msgid "Upload from Files" +msgstr "Prześlij z plików" + +#: 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 "Prześlij z biblioteki" + +#: src/lib/api/index.ts:296 +msgid "Uploading images..." +msgstr "Przesyłanie zdjęć..." + +#: src/lib/api/index.ts:350 +#: src/lib/api/index.ts:374 +msgid "Uploading link thumbnail..." +msgstr "Przesyłanie miniatury załącznika..." + +#: src/view/com/composer/Composer.tsx:1626 +msgid "Uploading video..." +msgstr "Przesyłanie wideo..." + +#: src/screens/Settings/AppPasswords.tsx:59 +msgid "Use app passwords to sign in to other Bluesky clients without giving full access to your account or password." +msgstr "Hasła aplikacji pozwalają na zalogowanie do Bluesky przez zewnętrzne aplikacje bez udostępnienia Twojego hasła lub konta." + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:528 +msgid "Use default provider" +msgstr "Użyj domyślnego dostawcę" + +#: src/view/com/modals/InAppBrowserConsent.tsx:53 +#: src/view/com/modals/InAppBrowserConsent.tsx:55 +msgid "Use in-app browser" +msgstr "Użyj przeglądarkę w aplikacji" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:75 +#: src/screens/Settings/ContentAndMediaSettings.tsx:81 +msgid "Use in-app browser to open links" +msgstr "Użyj przeglądarkę w aplikacji aby otwierać linki" + +#: src/view/com/modals/InAppBrowserConsent.tsx:63 +#: src/view/com/modals/InAppBrowserConsent.tsx:65 +msgid "Use my default browser" +msgstr "Użyj domyślną przeglądarkę" + +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:53 +msgid "Use recommended" +msgstr "Użyj proponowanych" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:190 +msgid "Use this to sign into the other app along with your handle." +msgstr "Użyj tego razem z Twoją nazwą, aby zalogować się w innej aplikacji." + +#: src/view/com/modals/InviteCodes.tsx:201 +msgid "Used by:" +msgstr "Używane przez:" + +#: src/components/moderation/ModerationDetailsDialog.tsx:70 +#: src/lib/moderation/useModerationCauseDescription.ts:61 +msgid "User Blocked" +msgstr "Zablokowano przez Ciebie" + +#: src/lib/moderation/useModerationCauseDescription.ts:53 +msgid "User Blocked by \"{0}\"" +msgstr "Zablokowano poprzez \"{0}\"" + +#: src/components/dms/BlockedByListDialog.tsx:27 +msgid "User blocked by list" +msgstr "Zablokowano poprzez listę" + +#: src/components/moderation/ModerationDetailsDialog.tsx:56 +msgid "User Blocked by List" +msgstr "Zablokowano poprzez listę" + +#: src/lib/moderation/useModerationCauseDescription.ts:71 +msgid "User Blocking You" +msgstr "Blokuje Ciebie" + +#: src/components/moderation/ModerationDetailsDialog.tsx:76 +msgid "User Blocks You" +msgstr "Blokuje Ciebie" + +#: src/view/com/modals/UserAddRemoveLists.tsx:214 +msgid "User list by {0}" +msgstr "Lista od {0}" + +#: src/view/screens/ProfileList.tsx:890 +msgid "User list by <0/>" +msgstr "Lista od <0/>" + +#: src/view/com/modals/UserAddRemoveLists.tsx:212 +#: src/view/screens/ProfileList.tsx:888 +msgid "User list by you" +msgstr "Twoja lista" + +#: src/view/com/modals/CreateOrEditList.tsx:176 +msgid "User list created" +msgstr "Utworzono listę" + +#: src/view/com/modals/CreateOrEditList.tsx:162 +msgid "User list updated" +msgstr "Zaktualizowano listę" + +#: src/view/screens/Lists.tsx:78 +msgid "User Lists" +msgstr "Listy osób" + +#: src/screens/Login/LoginForm.tsx:183 +msgid "Username or email address" +msgstr "Nazwa użytkownika lub adres email" + +#: src/view/screens/ProfileList.tsx:924 +msgid "Users" +msgstr "Osoby" + +#: src/components/WhoCanReply.tsx:258 +msgid "users followed by <0>@{0}" +msgstr "osoby oberwowane przez <0>@{0}" + +#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:89 +msgid "Users I follow" +msgstr "Obserwowane przeze mnie" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:417 +msgid "Users in \"{0}\"" +msgstr "Osoby na liście \"{0}\"" + +#: src/components/LikesDialog.tsx:83 +msgid "Users that have liked this content or profile" +msgstr "Osoby które polubiły tą treść lub profil" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:419 +msgid "Value:" +msgstr "Zawartość:" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:131 +msgid "Verified email required" +msgstr "Wymaga zweryfikowanego adresu email" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:497 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:518 +msgid "Verify DNS Record" +msgstr "Zweryfikuj rekord DNS" + +#: src/components/dialogs/VerifyEmailDialog.tsx:134 +#: src/components/intents/VerifyEmailIntentDialog.tsx:67 +msgid "Verify email dialog" +msgstr "Dialog weryfikacji email" + +#: src/view/com/modals/ChangeEmail.tsx:200 +#: src/view/com/modals/ChangeEmail.tsx:202 +msgid "Verify New Email" +msgstr "Zweryfikuj nowy adres email" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:135 +msgid "Verify now" +msgstr "Zweryfikuj teraz" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:498 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:520 +msgid "Verify Text File" +msgstr "Zweryfikuj plik tekstowy" + +#: src/screens/Settings/AccountSettings.tsx:68 +#: src/screens/Settings/AccountSettings.tsx:84 +msgid "Verify your email" +msgstr "Zweryfikuj swój adres email" + +#: src/components/dialogs/VerifyEmailDialog.tsx:85 +#: src/view/com/modals/VerifyEmail.tsx:111 +msgid "Verify Your Email" +msgstr "Zweryfikuj swój adres email" + +#: src/screens/Settings/AboutSettings.tsx:60 +#: src/screens/Settings/AboutSettings.tsx:70 +msgid "Version {appVersion}" +msgstr "Wersja {appVersion}" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:84 +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 +msgid "Video" +msgstr "Wideo" + +#: src/view/com/composer/state/video.ts:371 +msgid "Video failed to process" +msgstr "Bład podczas przetwarzania wideo" + +#: src/screens/Onboarding/index.tsx:39 +#: src/screens/Onboarding/state.ts:90 +msgid "Video Games" +msgstr "Gry wideo" + +#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:167 +msgid "Video not found." +msgstr "Wideo nieznalezione." + +#: src/view/com/composer/videos/SubtitleDialog.tsx:99 +msgid "Video settings" +msgstr "Ustawienia wideo" + +#: src/view/com/composer/Composer.tsx:1636 +msgid "Video uploaded" +msgstr "Wideo przesłane" + +#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:84 +msgid "Video: {0}" +msgstr "Wideo: {0}" + +#: src/view/com/composer/videos/SelectVideoBtn.tsx:79 +#: src/view/com/composer/videos/VideoPreview.web.tsx:44 +msgid "Videos must be less than 60 seconds long" +msgstr "Wideo musi być krótsze niż 60 sekund" + +#: src/screens/Profile/Header/Shell.tsx:164 +msgid "View {0}'s avatar" +msgstr "Wyświetl zdjęcie profilowe {0}" + +#: src/components/ProfileCard.tsx:110 +#: src/view/com/notifications/FeedItem.tsx:408 +msgid "View {0}'s profile" +msgstr "Wyświetl profil {0}" + +#: src/components/dms/MessagesListHeader.tsx:160 +msgid "View {displayName}'s profile" +msgstr "Wyświetl profil {displayName}" + +#: src/components/TagMenu/index.tsx:149 +msgid "View all posts by @{authorHandle} with tag {displayTag}" +msgstr "Zobacz wpisy od @{authorHandle} na temat {displayTag}" + +#: src/components/TagMenu/index.tsx:103 +msgid "View all posts with tag {displayTag}" +msgstr "Zobacz wpisy na temat {displayTag}" + +#: src/components/ProfileHoverCard/index.web.tsx:433 +msgid "View blocked user's profile" +msgstr "Zobacz zablokowany profil" + +#: src/screens/Settings/components/ExportCarDialog.tsx:98 +msgid "View blogpost for more details" +msgstr "Przeczytaj artykuł na blogu aby dowiedzieć się więcej" + +#: src/view/screens/Log.tsx:57 +msgid "View debug entry" +msgstr "Wyświetl wpis dziennika debugowania" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:139 +msgid "View details" +msgstr "Wyświetl szczegóły" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:134 +msgid "View details for reporting a copyright violation" +msgstr "Zobacz jak zgłosić naruszenie praw autorskich" + +#: src/view/com/posts/FeedSlice.tsx:154 +msgid "View full thread" +msgstr "Czytaj cały wątek" + +#: src/components/moderation/LabelsOnMe.tsx:47 +msgid "View information about these labels" +msgstr "Wyświetl informacje o tych etykietach" + +#: src/components/ProfileHoverCard/index.web.tsx:419 +#: src/components/ProfileHoverCard/index.web.tsx:439 +#: src/components/ProfileHoverCard/index.web.tsx:466 +#: src/view/com/posts/AviFollowButton.tsx:55 +#: src/view/com/posts/FeedErrorMessage.tsx:175 +#: src/view/com/util/PostMeta.tsx:79 +#: src/view/com/util/PostMeta.tsx:94 +msgid "View profile" +msgstr "Wyświetl profil" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:163 +msgid "View the avatar" +msgstr "Wyświetl zdjęcie profilowe" + +#: src/components/LabelingServiceCard/index.tsx:162 +msgid "View the labeling service provided by @{0}" +msgstr "Wyświetl usługe moderacji @{0}" + +#: src/view/screens/ProfileFeed.tsx:588 +msgid "View users who like this feed" +msgstr "Wyświetl polubienia kanału" + +#: src/screens/Moderation/index.tsx:269 +msgid "View your blocked accounts" +msgstr "Wyświetl zablokowane osoby" + +#: src/view/com/home/HomeHeaderLayout.web.tsx:78 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:89 +msgid "View your feeds and explore more" +msgstr "Wyświetl Twoje kanały i odnajdź więcej" + +#: src/screens/Moderation/index.tsx:239 +msgid "View your moderation lists" +msgstr "Wyświetl Twoje listy moderacji" + +#: src/screens/Moderation/index.tsx:254 +msgid "View your muted accounts" +msgstr "Wyświetl wyciszone osoby" + +#: src/view/com/modals/LinkWarning.tsx:89 +#: src/view/com/modals/LinkWarning.tsx:95 +msgid "Visit Site" +msgstr "Kontynuuj do strony" + +#: src/components/moderation/LabelPreference.tsx:136 +#: src/lib/moderation/useLabelBehaviorDescription.ts:17 +#: src/lib/moderation/useLabelBehaviorDescription.ts:22 +msgid "Warn" +msgstr "Ostrzeż" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:48 +msgid "Warn content" +msgstr "Ostrzeż o zawartości" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:46 +msgid "Warn content and filter from feeds" +msgstr "Ostrzeż o zawartości i wyklucz z kanałów" + +#: src/screens/Hashtag.tsx:218 +msgid "We couldn't find any results for that hashtag." +msgstr "Brak wyników dla tego tagu." + +#: src/screens/Messages/Conversation.tsx:113 +msgid "We couldn't load this conversation" +msgstr "Nie mogliśmy pobrać rozmowy" + +#: src/screens/SignupQueued.tsx:139 +msgid "We estimate {estimatedTime} until your account is ready." +msgstr "Szacowany czas zanim Twoje konto będzie gotowe wynosi {estimatedTime}." + +#: src/components/intents/VerifyEmailIntentDialog.tsx:107 +msgid "We have sent another verification email to <0>{0}." +msgstr "Kolejny email weryfikacyjny został wysłany do <0>{0}." + +#: src/screens/Onboarding/StepFinished.tsx:234 +msgid "We hope you have a wonderful time. Remember, Bluesky is:" +msgstr "Mamy nadzieje, że znajdziesz cudowne wrażenia na Bluesky. Pamiętaj, że Bluesky jest:" + +#: src/view/com/posts/DiscoverFallbackHeader.tsx:30 +msgid "We ran out of posts from your follows. Here's the latest from <0/>." +msgstr "Nie mamy już więcej wpisów od osób obserwowanych przez Ciebie. Oto ostatnie wpisy od <0/>." + +#: src/view/com/composer/state/video.ts:430 +msgid "We were unable to determine if you are allowed to upload videos. Please try again." +msgstr "Nie możemy potwierdzić, czy możesz przesyłać wideo. Proszę spróbować ponownie." + +#: src/components/dialogs/BirthDateSettings.tsx:51 +msgid "We were unable to load your birth date preferences. Please try again." +msgstr "Błąd podczas pobierania daty urodzenia. Proszę spróbować ponownie." + +#: src/screens/Moderation/index.tsx:414 +msgid "We were unable to load your configured labelers at this time." +msgstr "Błąd podczas pobierania zasubskrybowanych usług moderacji." + +#: 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 "Błąd podczas łączenia. Proszę spróbować ponownie, aby dokończyć konfigurowanie konta. Jeśli nadal występuje błąd, możesz pominąć ten krok." + +#: src/screens/SignupQueued.tsx:143 +msgid "We will let you know when your account is ready." +msgstr "Damy Ci znać, gdy Twoje konto będzie gotowe." + +#: src/screens/Onboarding/StepInterests/index.tsx:134 +msgid "We'll use this to help customize your experience." +msgstr "Użyjemy Twoich wyborów, aby dostosować Bluesky dla Ciebie." + +#: src/components/dms/dialogs/SearchablePeopleList.tsx:87 +msgid "We're having network issues, try again" +msgstr "Mamy problemy z siecią, spróbuj ponownie" + +#: src/screens/Signup/index.tsx:94 +msgid "We're so excited to have you join us!" +msgstr "Nie możemy się doczekać, aż do nas dołączysz!" + +#: src/view/screens/ProfileList.tsx:113 +msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." +msgstr "Przepraszamy, nie możemy pobrać tej listy. Jeśli ten błąd nie ustąpi, skontaktuj się z autorem listy, @{handleOrDid}." + +#: src/components/dialogs/MutedWords.tsx:378 +msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." +msgstr "Przepraszamy, nie możemy pobrać Twoich wyciszonych słów. Proszę spróbować ponownie." + +#: src/view/screens/Search/Search.tsx:212 +msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." +msgstr "Przepraszamy, nie możemy ukończyć tego wyszukiwania. Proszę spróbować ponownie za moment." + +#: src/view/com/composer/Composer.tsx:404 +msgid "We're sorry! The post you are replying to has been deleted." +msgstr "Przepraszamy, wpis na który odpowiadasz został usunięty." + +#: src/components/Lists.tsx:220 +#: src/view/screens/NotFound.tsx:50 +msgid "We're sorry! We can't find the page you were looking for." +msgstr "Przepraszamy, nie możemy znaleźć tej strony." + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:341 +msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." +msgstr "Przepraszamy, nie możesz zasubskrybować więcej niż 20 usług moderacji." + +#: src/screens/Deactivated.tsx:131 +msgid "Welcome back!" +msgstr "Witaj z powrotem!" + +#: src/components/NewskieDialog.tsx:103 +msgid "Welcome, friend!" +msgstr "Witaj, nowy przyjacielu!" + +#: src/screens/Onboarding/StepInterests/index.tsx:126 +msgid "What are your interests?" +msgstr "Co Cię interesuje?" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:42 +msgid "What do you want to call your starter pack?" +msgstr "Jak chcesz nazwać ten pakiet startowy?" + +#: src/view/com/auth/SplashScreen.tsx:39 +#: src/view/com/auth/SplashScreen.web.tsx:99 +#: src/view/com/composer/Composer.tsx:716 +msgid "What's up?" +msgstr "Jak się masz?" + +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:79 +msgid "Which languages are used in this post?" +msgstr "Które języki są użyte w tym wpisie?" + +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:78 +msgid "Which languages would you like to see in your algorithmic feeds?" +msgstr "Które języki chcesz zobaczyć w swoich kanałach?" + +#: src/components/WhoCanReply.tsx:179 +msgid "Who can interact with this post?" +msgstr "Kto może interagować z tym wpisem?" + +#: src/components/WhoCanReply.tsx:87 +msgid "Who can reply" +msgstr "Kto może odpowiadać" + +#: src/screens/Home/NoFeedsPinned.tsx:79 +#: src/screens/Messages/ChatList.tsx:183 +msgid "Whoops!" +msgstr "Ups!" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:44 +msgid "Why should this content be reviewed?" +msgstr "Dlaczego ta treść powinna być przejrzana?" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:57 +msgid "Why should this feed be reviewed?" +msgstr "Dlaczego ten kanał powinien być przejrzany?" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:54 +msgid "Why should this list be reviewed?" +msgstr "Dlaczego ta lista powinna być przejrzana?" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:63 +msgid "Why should this message be reviewed?" +msgstr "Dlaczego ta wiadomość powinna być przejrzana?" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:51 +msgid "Why should this post be reviewed?" +msgstr "Dlaczego ten wpis powinien być przejrzany?" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:60 +msgid "Why should this starter pack be reviewed?" +msgstr "Dlaczego ten pakiet startowy powinien być przejrzany?" + +#: src/components/ReportDialog/SelectReportOptionView.tsx:48 +msgid "Why should this user be reviewed?" +msgstr "Dlaczego tę konto powinno być przejrzone?" + +#: src/screens/Messages/components/MessageInput.tsx:149 +#: src/screens/Messages/components/MessageInput.web.tsx:198 +msgid "Write a message" +msgstr "Napisz coś" + +#: src/view/com/composer/Composer.tsx:794 +msgid "Write post" +msgstr "Napisz wpis" + +#: src/view/com/composer/Composer.tsx:714 +#: src/view/com/post-thread/PostThreadComposePrompt.tsx:71 +msgid "Write your reply" +msgstr "Napisz swoją odpowiedź" + +#: src/screens/Onboarding/index.tsx:25 +#: src/screens/Onboarding/state.ts:103 +msgid "Writers" +msgstr "Pisarze" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:337 +msgid "Wrong DID returned from server. Received: {0}" +msgstr "Zły DID od serwera. Otrzymano: {0}" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:78 +msgid "Yes" +msgstr "Tak" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:106 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:108 +msgid "Yes, deactivate" +msgstr "Tak, dezaktywuj" + +#: src/screens/StarterPack/StarterPackScreen.tsx:661 +msgid "Yes, delete this starter pack" +msgstr "Tak, usuń pakiet startowy" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:736 +msgid "Yes, detach" +msgstr "Tak, odłącz" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:746 +msgid "Yes, hide" +msgstr "Tak, ukryj" + +#: src/screens/Deactivated.tsx:153 +msgid "Yes, reactivate my account" +msgstr "Tak, reaktywuj moje konto" + +#: src/components/dms/DateDivider.tsx:46 +msgid "Yesterday" +msgstr "Wczoraj" + +#: src/screens/List/ListHiddenScreen.tsx:140 +msgid "you" +msgstr "ty" + +#: src/components/NewskieDialog.tsx:43 +msgid "You" +msgstr "Ty" + +#: src/screens/SignupQueued.tsx:136 +msgid "You are in line." +msgstr "Jesteś w kolejce." + +#: src/view/com/composer/state/video.ts:423 +msgid "You are not allowed to upload videos." +msgstr "Nie możesz wysyłać wideo." + +#: src/view/com/profile/ProfileFollows.tsx:95 +msgid "You are not following anyone." +msgstr "Nie obserwujesz nikogo." + +#: 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 "Możesz też odszukać nowych kanałów do śledzenia." + +#: src/view/com/modals/DeleteAccount.tsx:202 +msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." +msgstr "Możesz też tymczasowo dezaktywować konto i ponownie je aktywować w dowolnym momencie." + +#: src/screens/Messages/Settings.tsx:105 +msgid "You can continue ongoing conversations regardless of which setting you choose." +msgstr "Bez względu na stan tego ustawienia, możesz kontynuować istniejące rozmowy." + +#: src/screens/Login/index.tsx:155 +#: src/screens/Login/PasswordUpdatedForm.tsx:27 +msgid "You can now sign in with your new password." +msgstr "Możesz teraz zalogować się nowym hasłem." + +#: src/screens/Deactivated.tsx:139 +msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." +msgstr "Możesz ponownie aktywować swoje konto aby zalogować się. Twój profil i wpisy będa ponownie widoczne dla innych." + +#: src/view/com/profile/ProfileFollowers.tsx:95 +msgid "You do not have any followers." +msgstr "Nikt Cię na razie nie obserwuje." + +#: src/screens/Profile/KnownFollowers.tsx:100 +msgid "You don't follow any users who follow @{name}." +msgstr "Nie obserwujesz nikogo kto obserwuje @{name}." + +#: src/view/com/modals/InviteCodes.tsx:67 +msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." +msgstr "Nie masz jeszcze żadnych kodów zaproszenia. Wyślemy Ci kody, gdy będziesz nieco dłużej na Bluesky." + +#: src/view/screens/SavedFeeds.tsx:144 +msgid "You don't have any pinned feeds." +msgstr "Nie masz przypniętych kanałów." + +#: src/view/screens/SavedFeeds.tsx:184 +msgid "You don't have any saved feeds." +msgstr "Nie masz zapisanych kanałów." + +#: src/view/com/post-thread/PostThread.tsx:214 +msgid "You have blocked the author or you have been blocked by the author." +msgstr "Zablokowałeś/aś autora, lub autor(-ka) zablokował(-a) Ciebie." + +#: src/components/dms/MessagesListBlockedFooter.tsx:58 +msgid "You have blocked this user" +msgstr "Użytkownik zablokowany przez Ciebie" + +#: src/components/moderation/ModerationDetailsDialog.tsx:72 +#: src/lib/moderation/useModerationCauseDescription.ts:55 +#: src/lib/moderation/useModerationCauseDescription.ts:63 +msgid "You have blocked this user. You cannot view their content." +msgstr "Zablokowałeś/aś tego użytkownika. Nie możesz wyświetlić tej treści." + +#: src/screens/Login/SetNewPasswordForm.tsx:48 +#: src/screens/Login/SetNewPasswordForm.tsx:85 +#: src/view/com/modals/ChangePassword.tsx:88 +#: src/view/com/modals/ChangePassword.tsx:122 +msgid "You have entered an invalid code. It should look like XXXXX-XXXXX." +msgstr "Wprowadzono zły kod. Powinien wyglądać tak: XXXXX-XXXXX." + +#: src/lib/moderation/useModerationCauseDescription.ts:114 +msgid "You have hidden this post" +msgstr "Wpis ukryty przez Ciebie" + +#: src/components/moderation/ModerationDetailsDialog.tsx:110 +msgid "You have hidden this post." +msgstr "Wpis ukryty przez Ciebie." + +#: src/components/moderation/ModerationDetailsDialog.tsx:103 +#: src/lib/moderation/useModerationCauseDescription.ts:97 +msgid "You have muted this account." +msgstr "Konto wyciszone przez Ciebie." + +#: src/lib/moderation/useModerationCauseDescription.ts:91 +msgid "You have muted this user" +msgstr "Osoba wyciszona przez Ciebie" + +#: src/screens/Messages/ChatList.tsx:223 +msgid "You have no conversations yet. Start one!" +msgstr "Nie masz jeszcze żadnych rozmów. Zacznij nową!" + +#: src/view/com/feeds/ProfileFeedgens.tsx:138 +msgid "You have no feeds." +msgstr "Nie masz kanałów." + +#: src/view/com/lists/MyLists.tsx:90 +#: src/view/com/lists/ProfileLists.tsx:134 +msgid "You have no lists." +msgstr "Nie masz list." + +#: src/view/screens/ModerationBlockedAccounts.tsx:133 +msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account." +msgstr "Nie masz jeszcze zablokowanych użytkowników. Aby zablokować kogoś, wybierz opcję \"Zablokuj\" w menu na profilu" + +#: src/view/screens/ModerationMutedAccounts.tsx:132 +msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." +msgstr "Nie masz jeszcze wyciszonych użytkowników. Aby wyciszyć kogoś, wybierz opcję \"Wycisz\" w menu na profilu." + +#: src/components/Lists.tsx:52 +msgid "You have reached the end" +msgstr "Dotarto do końca" + +#: src/lib/media/video/upload.shared.ts:56 +msgid "You have temporarily reached the limit for video uploads. Please try again later." +msgstr "Osiągnięto tymczasowy limit wysyłania wideo. Proszę spróbować później." + +#: src/components/StarterPack/ProfileStarterPacks.tsx:241 +msgid "You haven't created a starter pack yet!" +msgstr "Jeszcze nie masz żadnych pakietów startowych!" + +#: src/components/dialogs/MutedWords.tsx:398 +msgid "You haven't muted any words or tags yet" +msgstr "Jeszcze nie masz wyciszonych słow lub tagów" + +#: src/components/moderation/ModerationDetailsDialog.tsx:117 +#: src/lib/moderation/useModerationCauseDescription.ts:125 +msgid "You hid this reply." +msgstr "Odpowiedź ukryta przez Ciebie." + +#: src/components/moderation/LabelsOnMeDialog.tsx:78 +msgid "You may appeal non-self labels if you feel they were placed in error." +msgstr "Możesz wysłać apelacje na temat etykiet nieumieszczonych przez Ciebie, jeśli uważasz, że zostały niepoprawnie umieszczone." + +#: src/components/moderation/LabelsOnMeDialog.tsx:83 +msgid "You may appeal these labels if you feel they were placed in error." +msgstr "Możesz wysłać apelacje na temat tych etykiet, jeśli uważasz, że zostały niepoprawnie umieszczone." + +#: src/screens/StarterPack/Wizard/State.tsx:79 +msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles" +msgstr "Możesz dodać najwyżej {STARTER_PACK_MAX_SIZE} osób" + +#: src/screens/StarterPack/Wizard/State.tsx:97 +msgid "You may only add up to 3 feeds" +msgstr "Możesz dodać najwyżej 3 kanały" + +#: src/lib/media/picker.shared.ts:22 +msgid "You may only select up to 4 images" +msgstr "Możesz dodać najwyżej 4 zdjęcia" + +#: src/screens/Signup/StepInfo/Policies.tsx:106 +msgid "You must be 13 years of age or older to sign up." +msgstr "Aby się zarejestrować, musisz mieć ukończone 13 lat." + +#: src/components/StarterPack/ProfileStarterPacks.tsx:324 +msgid "You must be following at least seven other people to generate a starter pack." +msgstr "Aby wygenerować pakiet startowy, musisz obserwować co najmniej siedem osób." + +#: src/components/StarterPack/QrCodeDialog.tsx:60 +msgid "You must grant access to your photo library to save a QR code" +msgstr "Aby pobrać kod QR, musisz udzielić nam dostęp do galerii" + +#: src/components/StarterPack/ShareDialog.tsx:69 +msgid "You must grant access to your photo library to save the image." +msgstr "Aby pobrać treść, musisz udzielić nam dostęp do galerii." + +#: src/components/ReportDialog/SubmitView.tsx:210 +msgid "You must select at least one labeler for a report" +msgstr "Musisz wybrać co najmniej jedną usługę do zgłoszenia" + +#: src/screens/Deactivated.tsx:134 +msgid "You previously deactivated @{0}." +msgstr "Konto @{0} było poprzednio dezaktywowane." + +#: src/screens/Settings/Settings.tsx:249 +msgid "You will be signed out of all your accounts." +msgstr "Wylogujemy Cię ze wszystkich kont." + +#: src/view/com/util/forms/PostDropdownBtn.tsx:222 +msgid "You will no longer receive notifications for this thread" +msgstr "Nie dostaniesz już powiadomień na temat tego wątku" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:218 +msgid "You will now receive notifications for this thread" +msgstr "Zaczniemy wysyłać Ci powiadomienia na temat tego wątku" + +#: 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 "Dostaniesz wiadomość email z \"kodem resetu\". Wpisz ten kod tutaj, potem wpisz nowe hasło." + +#: src/screens/Messages/components/ChatListItem.tsx:124 +msgid "You: {0}" +msgstr "Ty: {0}" + +#: src/screens/Messages/components/ChatListItem.tsx:153 +msgid "You: {defaultEmbeddedContentMessage}" +msgstr "Ty: {defaultEmbeddedContentMessage}" + +#: src/screens/Messages/components/ChatListItem.tsx:146 +msgid "You: {short}" +msgstr "Ty: {short}" + +#: src/screens/Signup/index.tsx:107 +msgid "You'll follow the suggested users and feeds once you finish creating your account!" +msgstr "Gdy Twoje konto zostanie w pełni utworzone, zaczniesz obserwować rekomendowane osoby i kanały!" + +#: src/screens/Signup/index.tsx:112 +msgid "You'll follow the suggested users once you finish creating your account!" +msgstr "Gdy ukończysz tworzenie konta, zaczniesz obserwować rekomendowane osoby!" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232 +msgid "You'll follow these people and {0} others" +msgstr "Zaczniesz obserwować te osoby i jeszcze {0} innych" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:230 +msgid "You'll follow these people right away" +msgstr "Zaczniesz obserwować te osoby" + +#: src/components/dialogs/VerifyEmailDialog.tsx:178 +msgid "You'll receive an email at <0>{0} to verify it's you." +msgstr "Dostaniesz wiadomość email na adres <0>{0} w celu weryfikacji tożsamości." + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:270 +msgid "You'll stay updated with these feeds" +msgstr "Będziesz na bieżąco dzięki tym kanałom" + +#: src/screens/SignupQueued.tsx:93 +#: src/screens/SignupQueued.tsx:94 +#: src/screens/SignupQueued.tsx:109 +msgid "You're in line" +msgstr "Jesteś w kolejce" + +#: 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 "Jesteś zalogowany/a przy użyciu hasła aplikacji. Aby dezaktywować konto, proszę zalogować się głównym hasłem." + +#: src/screens/Onboarding/StepFinished.tsx:231 +msgid "You're ready to go!" +msgstr "Wszystko gotowe!" + +#: src/components/moderation/ModerationDetailsDialog.tsx:107 +#: src/lib/moderation/useModerationCauseDescription.ts:106 +msgid "You've chosen to hide a word or tag within this post." +msgstr "Słowo lub tag w tym wpisie zostało ukryte przez Ciebie." + +#: src/view/com/posts/FollowingEndOfFeed.tsx:44 +msgid "You've reached the end of your feed! Find some more accounts to follow." +msgstr "Dotarto do końca! Odnajdź trochę więcej osób do obserwowania." + +#: src/view/com/composer/state/video.ts:434 +msgid "You've reached your daily limit for video uploads (too many bytes)" +msgstr "Osiągnięto dzienny limit wysyłania wideo (za dużo danych)" + +#: src/view/com/composer/state/video.ts:438 +msgid "You've reached your daily limit for video uploads (too many videos)" +msgstr "Osiągnięto dzienny limit wysyłania wideo (za dużo plików)" + +#: src/screens/Signup/index.tsx:140 +msgid "Your account" +msgstr "Twoje konto" + +#: src/view/com/modals/DeleteAccount.tsx:88 +msgid "Your account has been deleted" +msgstr "Twoje konto zostało usunięte" + +#: src/view/com/composer/state/video.ts:442 +msgid "Your account is not yet old enough to upload videos. Please try again later." +msgstr "Twoje konto jest zbyt nowe aby móc wysyłać wideo. Proszę spróbować ponownie później." + +#: 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 "Biblioteka Twojego konta, zawierająca wszystkie publiczne rekordy danych, może być pobrana jako plik CAR. Ten plik nie zawiera plików multimedialnych (na przykład zdjęć) lub danych prywatnych. Te dane muszą być pobrane osobnie." + +#: src/screens/Signup/StepInfo/index.tsx:211 +msgid "Your birth date" +msgstr "Twoja data urodzenia" + +#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:171 +msgid "Your browser does not support the video format. Please try a different browser." +msgstr "Twoja przeglądarka nie obsługiwuje tego typu wideo. Spróbuj w innej." + +#: src/screens/Messages/components/ChatDisabled.tsx:25 +msgid "Your chats have been disabled" +msgstr "Twój dostęp do rozmów został wyłączony" + +#: src/view/com/modals/InAppBrowserConsent.tsx:44 +msgid "Your choice will be saved, but can be changed later in settings." +msgstr "Zapisaliśmy Twój wybór. Możesz go później zmienić w ustawieniach." + +#: 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 "Twój adres email wygląda na nieprawidłowy." + +#: 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 "Twój adres email został zaktualizowany, ale nie jest jeszcze zweryfikowany. Proszę zweryfikować nowy adres." + +#: 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 "Twój adres email nie jest jeszcze zweryfikowany. Dla Twojego bezpieczeństwa, proszę zweryfikować adres." + +#: src/state/shell/progress-guide.tsx:156 +msgid "Your first like!" +msgstr "Twoje pierwsze polubienie!" + +#: src/view/com/posts/FollowingEmptyState.tsx:43 +msgid "Your following feed is empty! Follow more users to see what's happening." +msgstr "Twój kanał osób obserwowanych jest pusty! Zaobserwuj trochę więcej osób." + +#: src/screens/Signup/StepHandle.tsx:125 +msgid "Your full handle will be" +msgstr "Twoją pełna nazwa będzie" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:220 +msgid "Your full handle will be <0>@{0}" +msgstr "Twoją pełna nazwa będzie <0>@{0}" + +#: src/components/dialogs/MutedWords.tsx:369 +msgid "Your muted words" +msgstr "Twoje wyciszone słowa" + +#: src/view/com/modals/ChangePassword.tsx:158 +msgid "Your password has been changed successfully!" +msgstr "Hasło zmienione pomyślnie!" + +#: src/view/com/composer/Composer.tsx:464 +msgid "Your post has been published" +msgstr "Opublikowano wpis" + +#: src/view/com/composer/Composer.tsx:461 +msgid "Your posts have been published" +msgstr "Opublikowano wpisy" + +#: src/screens/Onboarding/StepFinished.tsx:246 +msgid "Your posts, likes, and blocks are public. Mutes are private." +msgstr "Twoje polubienia, wpisy i lista zablokowanych osób są publiczne. Wyciszenia są prywatne." + +#: 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 "Twój profil, wpisy, kanały i listy nie będą już widoczne dla innych. Możesz w dowolnym momencie ponownie aktywować to konto poprzez zalogowanie się." + +#: src/view/com/composer/Composer.tsx:463 +msgid "Your reply has been published" +msgstr "Opublikowano odpowiedź" + +#: src/components/dms/ReportDialog.tsx:157 +msgid "Your report will be sent to the Bluesky Moderation Service" +msgstr "Zgłoszenie będzie wysłane do usługi moderacji Bluesky" + +#: src/screens/Signup/index.tsx:142 +msgid "Your user handle" +msgstr "Twoja nazwa użytkownika" diff --git a/src/screens/Login/PasswordUpdatedForm.tsx b/src/screens/Login/PasswordUpdatedForm.tsx index 9c12a47e3f..b85815018d 100644 --- a/src/screens/Login/PasswordUpdatedForm.tsx +++ b/src/screens/Login/PasswordUpdatedForm.tsx @@ -1,4 +1,3 @@ -import React from 'react' import {View} from 'react-native' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' diff --git a/src/screens/Login/SetNewPasswordForm.tsx b/src/screens/Login/SetNewPasswordForm.tsx index 9efbb96ce4..4d09e32a32 100644 --- a/src/screens/Login/SetNewPasswordForm.tsx +++ b/src/screens/Login/SetNewPasswordForm.tsx @@ -1,4 +1,4 @@ -import React, {useState} from 'react' +import {useState} from 'react' import {ActivityIndicator, View} from 'react-native' import {BskyAgent} from '@atproto/api' import {msg, Trans} from '@lingui/macro' diff --git a/src/screens/Messages/ChatList.tsx b/src/screens/Messages/ChatList.tsx index 45b3bf14fa..4f2bd251f6 100644 --- a/src/screens/Messages/ChatList.tsx +++ b/src/screens/Messages/ChatList.tsx @@ -1,4 +1,4 @@ -import React, {useCallback, useEffect, useMemo, useState} from 'react' +import {useCallback, useEffect, useMemo, useState} from 'react' import {View} from 'react-native' import {ChatBskyConvoDefs} from '@atproto/api' import {msg, Trans} from '@lingui/macro' diff --git a/src/screens/Messages/Settings.tsx b/src/screens/Messages/Settings.tsx index 93e3bc400d..50b1c4cc98 100644 --- a/src/screens/Messages/Settings.tsx +++ b/src/screens/Messages/Settings.tsx @@ -1,4 +1,4 @@ -import React, {useCallback} from 'react' +import {useCallback} from 'react' import {View} from 'react-native' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' diff --git a/src/screens/Messages/components/ChatDisabled.tsx b/src/screens/Messages/components/ChatDisabled.tsx index c768d2504b..5e9f57fa50 100644 --- a/src/screens/Messages/components/ChatDisabled.tsx +++ b/src/screens/Messages/components/ChatDisabled.tsx @@ -1,4 +1,4 @@ -import React, {useCallback, useState} from 'react' +import {useCallback, useState} from 'react' import {View} from 'react-native' import {ComAtprotoModerationDefs} from '@atproto/api' import {msg, Trans} from '@lingui/macro' diff --git a/src/screens/Messages/components/MessageInputEmbed.tsx b/src/screens/Messages/components/MessageInputEmbed.tsx index 2d1551019e..6df0ef2fc8 100644 --- a/src/screens/Messages/components/MessageInputEmbed.tsx +++ b/src/screens/Messages/components/MessageInputEmbed.tsx @@ -1,4 +1,4 @@ -import React, {useCallback, useEffect, useMemo, useState} from 'react' +import {useCallback, useEffect, useMemo, useState} from 'react' import {LayoutAnimation, View} from 'react-native' import { AppBskyFeedPost, diff --git a/src/screens/Profile/Header/DisplayName.tsx b/src/screens/Profile/Header/DisplayName.tsx index 6d4eea2ebc..b74c063d46 100644 --- a/src/screens/Profile/Header/DisplayName.tsx +++ b/src/screens/Profile/Header/DisplayName.tsx @@ -1,4 +1,3 @@ -import React from 'react' import {View} from 'react-native' import {AppBskyActorDefs, ModerationDecision} from '@atproto/api' diff --git a/src/screens/Profile/Header/EditProfileDialog.tsx b/src/screens/Profile/Header/EditProfileDialog.tsx index af4b5498a0..952184816f 100644 --- a/src/screens/Profile/Header/EditProfileDialog.tsx +++ b/src/screens/Profile/Header/EditProfileDialog.tsx @@ -1,4 +1,4 @@ -import React, {useCallback, useEffect, useState} from 'react' +import {useCallback, useEffect, useState} from 'react' import {Dimensions, View} from 'react-native' import {Image as RNImage} from 'react-native-image-crop-picker' import {AppBskyActorDefs} from '@atproto/api' diff --git a/src/screens/Profile/Header/Handle.tsx b/src/screens/Profile/Header/Handle.tsx index acfba3fb28..27b73da70c 100644 --- a/src/screens/Profile/Header/Handle.tsx +++ b/src/screens/Profile/Header/Handle.tsx @@ -1,4 +1,3 @@ -import React from 'react' import {View} from 'react-native' import {AppBskyActorDefs} from '@atproto/api' import {msg, Trans} from '@lingui/macro' @@ -24,7 +23,7 @@ export function ProfileHeaderHandle({ const blockHide = profile.viewer?.blocking || profile.viewer?.blockedBy return ( {profile.viewer?.followedBy && !blockHide ? ( diff --git a/src/screens/Profile/Header/Metrics.tsx b/src/screens/Profile/Header/Metrics.tsx index 30686ef99c..bd4c4521cd 100644 --- a/src/screens/Profile/Header/Metrics.tsx +++ b/src/screens/Profile/Header/Metrics.tsx @@ -1,4 +1,3 @@ -import React from 'react' import {View} from 'react-native' import {AppBskyActorDefs} from '@atproto/api' import {msg, plural} from '@lingui/macro' diff --git a/src/screens/Profile/Header/Shell.tsx b/src/screens/Profile/Header/Shell.tsx index 1a1e7d4a24..573d38145d 100644 --- a/src/screens/Profile/Header/Shell.tsx +++ b/src/screens/Profile/Header/Shell.tsx @@ -1,12 +1,6 @@ import React, {memo} from 'react' import {StyleSheet, TouchableWithoutFeedback, View} from 'react-native' -import Animated, { - measure, - MeasuredDimensions, - runOnJS, - runOnUI, - useAnimatedRef, -} from 'react-native-reanimated' +import {MeasuredDimensions, runOnJS, runOnUI} from 'react-native-reanimated' import {AppBskyActorDefs, ModerationDecision} from '@atproto/api' import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome' import {msg} from '@lingui/macro' @@ -14,6 +8,7 @@ import {useLingui} from '@lingui/react' import {useNavigation} from '@react-navigation/native' import {BACK_HITSLOP} from '#/lib/constants' +import {measureHandle, useHandleRef} from '#/lib/hooks/useHandleRef' import {useWebMediaQueries} from '#/lib/hooks/useWebMediaQueries' import {NavigationProp} from '#/lib/routes/types' import {isIOS} from '#/platform/detection' @@ -49,7 +44,7 @@ let ProfileHeaderShell = ({ const {openLightbox} = useLightboxControls() const navigation = useNavigation() const {isDesktop} = useWebMediaQueries() - const aviRef = useAnimatedRef() + const aviRef = useHandleRef() const onPressBack = React.useCallback(() => { if (navigation.canGoBack()) { @@ -86,9 +81,10 @@ let ProfileHeaderShell = ({ const modui = moderation.ui('avatar') const avatar = profile.avatar if (avatar && !(modui.blur && modui.noOverride)) { + const aviHandle = aviRef.current runOnUI(() => { 'worklet' - const rect = measure(aviRef) + const rect = measureHandle(aviHandle) runOnJS(_openLightbox)(avatar, rect) })() } @@ -170,14 +166,14 @@ let ProfileHeaderShell = ({ styles.avi, profile.associated?.labeler && styles.aviLabeler, ]}> - + - + diff --git a/src/screens/Settings/AboutSettings.tsx b/src/screens/Settings/AboutSettings.tsx index 3c445b9667..8019a20f90 100644 --- a/src/screens/Settings/AboutSettings.tsx +++ b/src/screens/Settings/AboutSettings.tsx @@ -1,4 +1,3 @@ -import React from 'react' import {Platform} from 'react-native' import {setStringAsync} from 'expo-clipboard' import {msg, Trans} from '@lingui/macro' diff --git a/src/screens/Settings/AccessibilitySettings.tsx b/src/screens/Settings/AccessibilitySettings.tsx index dfe2c14a5f..6ab0131d9d 100644 --- a/src/screens/Settings/AccessibilitySettings.tsx +++ b/src/screens/Settings/AccessibilitySettings.tsx @@ -1,4 +1,3 @@ -import React from 'react' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' import {NativeStackScreenProps} from '@react-navigation/native-stack' diff --git a/src/screens/Settings/AccountSettings.tsx b/src/screens/Settings/AccountSettings.tsx index 35c5f3aa09..2495a0f2f9 100644 --- a/src/screens/Settings/AccountSettings.tsx +++ b/src/screens/Settings/AccountSettings.tsx @@ -1,4 +1,3 @@ -import React from 'react' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' import {NativeStackScreenProps} from '@react-navigation/native-stack' diff --git a/src/screens/Settings/AppPasswords.tsx b/src/screens/Settings/AppPasswords.tsx index 8cebf97ce6..1ea0bd1b3d 100644 --- a/src/screens/Settings/AppPasswords.tsx +++ b/src/screens/Settings/AppPasswords.tsx @@ -1,4 +1,4 @@ -import React, {useCallback} from 'react' +import {useCallback} from 'react' import {View} from 'react-native' import Animated, { FadeIn, diff --git a/src/screens/Settings/ContentAndMediaSettings.tsx b/src/screens/Settings/ContentAndMediaSettings.tsx index 6d293fbea6..b3fb8c174f 100644 --- a/src/screens/Settings/ContentAndMediaSettings.tsx +++ b/src/screens/Settings/ContentAndMediaSettings.tsx @@ -1,4 +1,3 @@ -import React from 'react' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' import {NativeStackScreenProps} from '@react-navigation/native-stack' diff --git a/src/screens/Settings/ExternalMediaPreferences.tsx b/src/screens/Settings/ExternalMediaPreferences.tsx index 91c7ea7fc7..f7e081429c 100644 --- a/src/screens/Settings/ExternalMediaPreferences.tsx +++ b/src/screens/Settings/ExternalMediaPreferences.tsx @@ -1,4 +1,4 @@ -import React, {Fragment} from 'react' +import {Fragment} from 'react' import {View} from 'react-native' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' diff --git a/src/screens/Settings/FollowingFeedPreferences.tsx b/src/screens/Settings/FollowingFeedPreferences.tsx index 12de2a31a7..089491dd0f 100644 --- a/src/screens/Settings/FollowingFeedPreferences.tsx +++ b/src/screens/Settings/FollowingFeedPreferences.tsx @@ -1,4 +1,3 @@ -import React from 'react' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' diff --git a/src/screens/Settings/LanguageSettings.tsx b/src/screens/Settings/LanguageSettings.tsx index c6cd8bb5a6..acad0520c0 100644 --- a/src/screens/Settings/LanguageSettings.tsx +++ b/src/screens/Settings/LanguageSettings.tsx @@ -1,4 +1,4 @@ -import React, {useCallback, useMemo} from 'react' +import {useCallback, useMemo} from 'react' import {View} from 'react-native' import RNPickerSelect, {PickerSelectProps} from 'react-native-picker-select' import {msg, Trans} from '@lingui/macro' diff --git a/src/screens/Settings/NotificationSettings.tsx b/src/screens/Settings/NotificationSettings.tsx index 8e10337423..c5f7078c48 100644 --- a/src/screens/Settings/NotificationSettings.tsx +++ b/src/screens/Settings/NotificationSettings.tsx @@ -1,4 +1,3 @@ -import React from 'react' import {Text} from 'react-native' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' diff --git a/src/screens/Settings/PrivacyAndSecuritySettings.tsx b/src/screens/Settings/PrivacyAndSecuritySettings.tsx index 12e28e0d24..d695f830d2 100644 --- a/src/screens/Settings/PrivacyAndSecuritySettings.tsx +++ b/src/screens/Settings/PrivacyAndSecuritySettings.tsx @@ -1,4 +1,3 @@ -import React from 'react' import {View} from 'react-native' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' diff --git a/src/screens/Settings/Settings.tsx b/src/screens/Settings/Settings.tsx index adea42e5ed..126a1bc88e 100644 --- a/src/screens/Settings/Settings.tsx +++ b/src/screens/Settings/Settings.tsx @@ -1,4 +1,4 @@ -import React, {useState} from 'react' +import {useState} from 'react' import {LayoutAnimation, Pressable, View} from 'react-native' import {Linking} from 'react-native' import {useReducedMotion} from 'react-native-reanimated' diff --git a/src/screens/Settings/ThreadPreferences.tsx b/src/screens/Settings/ThreadPreferences.tsx index 24dd91bf6a..c27cea7dec 100644 --- a/src/screens/Settings/ThreadPreferences.tsx +++ b/src/screens/Settings/ThreadPreferences.tsx @@ -1,4 +1,3 @@ -import React from 'react' import {View} from 'react-native' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' diff --git a/src/screens/Settings/components/AddAppPasswordDialog.tsx b/src/screens/Settings/components/AddAppPasswordDialog.tsx index dcb2128792..9278757786 100644 --- a/src/screens/Settings/components/AddAppPasswordDialog.tsx +++ b/src/screens/Settings/components/AddAppPasswordDialog.tsx @@ -1,4 +1,4 @@ -import React, {useEffect, useMemo, useState} from 'react' +import {useEffect, useMemo, useState} from 'react' import {useWindowDimensions, View} from 'react-native' import Animated, { FadeIn, diff --git a/src/screens/Settings/components/ChangeHandleDialog.tsx b/src/screens/Settings/components/ChangeHandleDialog.tsx index e76d6257fe..9b2c4f7c35 100644 --- a/src/screens/Settings/components/ChangeHandleDialog.tsx +++ b/src/screens/Settings/components/ChangeHandleDialog.tsx @@ -1,4 +1,4 @@ -import React, {useCallback, useMemo, useState} from 'react' +import {useCallback, useMemo, useState} from 'react' import {useWindowDimensions, View} from 'react-native' import Animated, { FadeIn, @@ -86,7 +86,6 @@ function ChangeHandleDialogInner() { return ( diff --git a/src/screens/Settings/components/CopyButton.tsx b/src/screens/Settings/components/CopyButton.tsx index 8c6cdfa8ad..82c11f58dd 100644 --- a/src/screens/Settings/components/CopyButton.tsx +++ b/src/screens/Settings/components/CopyButton.tsx @@ -1,4 +1,4 @@ -import React, {useCallback, useEffect, useState} from 'react' +import {useCallback, useEffect, useState} from 'react' import {GestureResponderEvent, View} from 'react-native' import Animated, { FadeOutUp, diff --git a/src/screens/Settings/components/DisableEmail2FADialog.tsx b/src/screens/Settings/components/DisableEmail2FADialog.tsx index 1378759b09..8ee49c9899 100644 --- a/src/screens/Settings/components/DisableEmail2FADialog.tsx +++ b/src/screens/Settings/components/DisableEmail2FADialog.tsx @@ -1,4 +1,4 @@ -import React, {useState} from 'react' +import {useState} from 'react' import {View} from 'react-native' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' diff --git a/src/screens/Settings/components/SettingsList.tsx b/src/screens/Settings/components/SettingsList.tsx index 07117aef39..520df41187 100644 --- a/src/screens/Settings/components/SettingsList.tsx +++ b/src/screens/Settings/components/SettingsList.tsx @@ -213,7 +213,6 @@ export function ItemIcon({ } export function ItemText({ - // eslint-disable-next-line react/prop-types style, ...props }: React.ComponentProps) { diff --git a/src/screens/Signup/BackNextButtons.tsx b/src/screens/Signup/BackNextButtons.tsx index e2401bb116..888b9071e1 100644 --- a/src/screens/Signup/BackNextButtons.tsx +++ b/src/screens/Signup/BackNextButtons.tsx @@ -1,4 +1,3 @@ -import React from 'react' import {View} from 'react-native' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' diff --git a/src/screens/Signup/StepInfo/Policies.tsx b/src/screens/Signup/StepInfo/Policies.tsx index ba0cfc2b43..3cde95be71 100644 --- a/src/screens/Signup/StepInfo/Policies.tsx +++ b/src/screens/Signup/StepInfo/Policies.tsx @@ -1,4 +1,4 @@ -import React, {ReactElement} from 'react' +import {ReactElement} from 'react' import {View} from 'react-native' import {ComAtprotoServerDescribeServer} from '@atproto/api' import {msg, Trans} from '@lingui/macro' diff --git a/src/screens/SignupQueued.tsx b/src/screens/SignupQueued.tsx index e7336569c6..ed261f29ea 100644 --- a/src/screens/SignupQueued.tsx +++ b/src/screens/SignupQueued.tsx @@ -1,16 +1,17 @@ import React from 'react' -import {View} from 'react-native' +import {Modal, View} from 'react-native' import {useSafeAreaInsets} from 'react-native-safe-area-context' +import {StatusBar} from 'expo-status-bar' import {msg, plural, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' import {logger} from '#/logger' -import {isWeb} from '#/platform/detection' +import {isIOS, isWeb} from '#/platform/detection' import {isSignupQueued, useAgent, useSessionApi} from '#/state/session' import {useOnboardingDispatch} from '#/state/shell' import {ScrollView} from '#/view/com/util/Views' import {Logo} from '#/view/icons/Logo' -import {atoms as a, useBreakpoints, useTheme} from '#/alf' +import {atoms as a, native, useBreakpoints, useTheme, web} from '#/alf' import {Button, ButtonIcon, ButtonText} from '#/components/Button' import {Loader} from '#/components/Loader' import {P, Text} from '#/components/Typography' @@ -86,19 +87,22 @@ export function SignupQueued() { ) return ( - + + {isIOS && } + style={[a.flex_1, t.atoms.bg]} + contentContainerStyle={{borderWidth: 0}} + bounces={false}> + style={[ + a.flex_row, + a.justify_center, + gtMobile ? a.pt_4xl : [a.px_xl, a.pt_xl], + ]}> @@ -121,11 +125,14 @@ export function SignupQueued() { a.px_2xl, a.py_4xl, a.mt_2xl, - t.atoms.bg_contrast_50, + a.mb_md, + a.border, + t.atoms.bg_contrast_25, + t.atoms.border_contrast_medium, ]}> {typeof placeInQueue === 'number' && ( + style={[a.text_5xl, a.text_center, a.font_heavy, a.mb_2xl]}> {placeInQueue} )} @@ -148,7 +155,14 @@ export function SignupQueued() { {isWeb && gtMobile && ( - + - - - - - + ) } RepostButton = memo(RepostButton) export {RepostButton} + +let RepostButtonDialogInner = ({ + isReposted, + onRepost, + onQuote, + embeddingDisabled, +}: { + isReposted: boolean + onRepost: () => void + onQuote: () => void + embeddingDisabled: boolean +}): React.ReactNode => { + const t = useTheme() + const {_} = useLingui() + const playHaptic = useHaptics() + const control = Dialog.useDialogContext() + + const onPressRepost = useCallback(() => { + if (!isReposted) playHaptic() + + control.close(() => { + onRepost() + }) + }, [control, isReposted, onRepost, playHaptic]) + + const onPressQuote = useCallback(() => { + playHaptic() + control.close(() => { + onQuote() + }) + }, [control, onQuote, playHaptic]) + + const onPressClose = useCallback(() => control.close(), [control]) + + return ( + + + + + + + + + + ) +} +RepostButtonDialogInner = memo(RepostButtonDialogInner) +export {RepostButtonDialogInner} diff --git a/src/view/com/util/post-embeds/ExternalGifEmbed.tsx b/src/view/com/util/post-embeds/ExternalGifEmbed.tsx index 6db4d6fefb..39c1d109e1 100644 --- a/src/view/com/util/post-embeds/ExternalGifEmbed.tsx +++ b/src/view/com/util/post-embeds/ExternalGifEmbed.tsx @@ -1,16 +1,11 @@ import React from 'react' -import { - ActivityIndicator, - GestureResponderEvent, - LayoutChangeEvent, - Pressable, -} from 'react-native' -import {Image, ImageLoadEventData} from 'expo-image' +import {ActivityIndicator, GestureResponderEvent, Pressable} from 'react-native' +import {Image} from 'expo-image' import {AppBskyEmbedExternal} from '@atproto/api' import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' -import {EmbedPlayerParams, getGifDims} from '#/lib/strings/embed-player' +import {EmbedPlayerParams} from '#/lib/strings/embed-player' import {isIOS, isNative, isWeb} from '#/platform/detection' import {useExternalEmbedsPrefs} from '#/state/preferences' import {atoms as a, useTheme} from '#/alf' @@ -28,20 +23,15 @@ export function ExternalGifEmbed({ }) { const t = useTheme() const externalEmbedsPrefs = useExternalEmbedsPrefs() - const {_} = useLingui() const consentDialogControl = useDialogControl() - const thumbHasLoaded = React.useRef(false) - const viewWidth = React.useRef(0) - // Tracking if the placer has been activated const [isPlayerActive, setIsPlayerActive] = React.useState(false) // Tracking whether the gif has been loaded yet const [isPrefetched, setIsPrefetched] = React.useState(false) // Tracking whether the image is animating const [isAnimating, setIsAnimating] = React.useState(true) - const [imageDims, setImageDims] = React.useState({height: 100, width: 1}) // Used for controlling animation const imageRef = React.useRef(null) @@ -93,16 +83,6 @@ export function ExternalGifEmbed({ ], ) - const onLoad = React.useCallback((e: ImageLoadEventData) => { - if (thumbHasLoaded.current) return - setImageDims(getGifDims(e.source.height, e.source.width, viewWidth.current)) - thumbHasLoaded.current = true - }, []) - - const onLayout = React.useCallback((e: LayoutChangeEvent) => { - viewWidth.current = e.nativeEvent.layout.width - }, []) - return ( <> @@ -135,7 +114,6 @@ export function ExternalGifEmbed({ }} // Web uses the thumb to control playback style={{flex: 1}} ref={imageRef} - onLoad={onLoad} autoplay={isAnimating} contentFit="contain" accessibilityIgnoresInvertColors diff --git a/src/view/com/util/post-embeds/VideoEmbed.tsx b/src/view/com/util/post-embeds/VideoEmbed.tsx index 24802d1882..f268bf8db8 100644 --- a/src/view/com/util/post-embeds/VideoEmbed.tsx +++ b/src/view/com/util/post-embeds/VideoEmbed.tsx @@ -1,5 +1,5 @@ import React, {useCallback, useState} from 'react' -import {View} from 'react-native' +import {ActivityIndicator, View} from 'react-native' import {ImageBackground} from 'expo-image' import {AppBskyEmbedVideo} from '@atproto/api' import {msg, Trans} from '@lingui/macro' @@ -10,7 +10,6 @@ import {VideoEmbedInnerNative} from '#/view/com/util/post-embeds/VideoEmbedInner import {atoms as a} from '#/alf' import {Button} from '#/components/Button' import {useThrottledValue} from '#/components/hooks/useThrottledValue' -import {Loader} from '#/components/Loader' import {PlayButtonIcon} from '#/components/video/PlayButtonIcon' import {ErrorBoundary} from '../ErrorBoundary' import * as VideoFallback from './VideoEmbedInner/VideoFallback' @@ -89,12 +88,9 @@ function InnerWrapper({embed}: Props) { source={{uri: embed.thumbnail}} accessibilityIgnoresInvertColors style={[ + a.absolute, + a.inset_0, { - position: 'absolute', - top: 0, - left: 0, - right: 0, - bottom: 0, backgroundColor: 'transparent', // If you don't add `backgroundColor` to the styles here, // the play button won't show up on the first render on android 🥴😮‍💨 display: showOverlay ? 'flex' : 'none', @@ -102,27 +98,29 @@ function InnerWrapper({embed}: Props) { ]} cachePolicy="memory-disk" // Preferring memory cache helps to avoid flicker when re-displaying on android > - + {showOverlay && ( + + )} ) diff --git a/src/view/com/util/post-embeds/VideoEmbed.web.tsx b/src/view/com/util/post-embeds/VideoEmbed.web.tsx index 3180dd99eb..a1f4652ac7 100644 --- a/src/view/com/util/post-embeds/VideoEmbed.web.tsx +++ b/src/view/com/util/post-embeds/VideoEmbed.web.tsx @@ -24,6 +24,7 @@ export function VideoEmbed({embed}: {embed: AppBskyEmbedVideo.View}) { useActiveVideoWeb() const [onScreen, setOnScreen] = useState(false) const [isFullscreen] = useFullscreen() + const lastKnownTime = useRef() useEffect(() => { if (!ref.current) return @@ -82,6 +83,7 @@ export function VideoEmbed({embed}: {embed: AppBskyEmbedVideo.View}) { active={active} setActive={setActive} onScreen={onScreen} + lastKnownTime={lastKnownTime} /> diff --git a/src/view/com/util/post-embeds/VideoEmbedInner/TimeIndicator.tsx b/src/view/com/util/post-embeds/VideoEmbedInner/TimeIndicator.tsx index 66e1df50dc..e9615fe63c 100644 --- a/src/view/com/util/post-embeds/VideoEmbedInner/TimeIndicator.tsx +++ b/src/view/com/util/post-embeds/VideoEmbedInner/TimeIndicator.tsx @@ -1,8 +1,7 @@ -import React from 'react' import {StyleProp, ViewStyle} from 'react-native' -import Animated, {FadeInDown, FadeOutDown} from 'react-native-reanimated' +import {View} from 'react-native' -import {atoms as a, native, useTheme} from '#/alf' +import {atoms as a, useTheme} from '#/alf' import {Text} from '#/components/Typography' /** @@ -26,9 +25,7 @@ export function TimeIndicator({ const seconds = String(time % 60).padStart(2, '0') return ( - {`${minutes}:${seconds}`} - + ) } diff --git a/src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx b/src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx index 21db54322f..215e4c406f 100644 --- a/src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx +++ b/src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx @@ -1,6 +1,5 @@ import React, {useRef} from 'react' import {Pressable, StyleProp, View, ViewStyle} from 'react-native' -import Animated, {FadeInDown} from 'react-native-reanimated' import {AppBskyEmbedVideo} from '@atproto/api' import {BlueskyVideoView} from '@haileyok/bluesky-video' import {msg} from '@lingui/macro' @@ -182,8 +181,7 @@ function ControlButton({ style?: StyleProp }) { return ( - {children} - + ) } diff --git a/src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx b/src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx index ef989c4a43..fb1860708a 100644 --- a/src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx +++ b/src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb.tsx @@ -13,11 +13,13 @@ export function VideoEmbedInnerWeb({ active, setActive, onScreen, + lastKnownTime, }: { embed: AppBskyEmbedVideo.View active: boolean setActive: () => void onScreen: boolean + lastKnownTime: React.MutableRefObject }) { const containerRef = useRef(null) const videoRef = useRef(null) @@ -40,6 +42,12 @@ export function VideoEmbedInnerWeb({ setHlsLoading, }) + useEffect(() => { + if (lastKnownTime.current && videoRef.current) { + videoRef.current.currentTime = lastKnownTime.current + } + }, [lastKnownTime]) + return (
@@ -52,6 +60,9 @@ export function VideoEmbedInnerWeb({ preload="none" muted={!focused} aria-labelledby={embed.alt ? figId : undefined} + onTimeUpdate={e => { + lastKnownTime.current = e.currentTarget.currentTime + }} /> {embed.alt && (
>[], + refs: HandleRef[], fetchedDims: (Dimensions | null)[], ) => { + const handles = refs.map(r => r.current) runOnUI(() => { 'worklet' - const rects = refs.map(ref => (ref ? measure(ref) : null)) + const rects = handles.map(measureHandle) runOnJS(_openLightbox)(index, rects, fetchedDims) })() } diff --git a/src/view/icons/Logomark.tsx b/src/view/icons/Logomark.tsx index 5715a1a404..b777992d49 100644 --- a/src/view/icons/Logomark.tsx +++ b/src/view/icons/Logomark.tsx @@ -1,4 +1,3 @@ -import React from 'react' import Svg, {Path, PathProps, SvgProps} from 'react-native-svg' import {usePalette} from '#/lib/hooks/usePalette' diff --git a/src/view/icons/Logotype.tsx b/src/view/icons/Logotype.tsx index d6c35f6d9e..8be4980e67 100644 --- a/src/view/icons/Logotype.tsx +++ b/src/view/icons/Logotype.tsx @@ -1,4 +1,3 @@ -import React from 'react' import Svg, {Path, PathProps, SvgProps} from 'react-native-svg' import {usePalette} from '#/lib/hooks/usePalette' diff --git a/src/view/screens/Storybook/Admonitions.tsx b/src/view/screens/Storybook/Admonitions.tsx index ca97ebb231..988342f171 100644 --- a/src/view/screens/Storybook/Admonitions.tsx +++ b/src/view/screens/Storybook/Admonitions.tsx @@ -1,4 +1,3 @@ -import React from 'react' import {View} from 'react-native' import {atoms as a} from '#/alf' diff --git a/src/view/screens/Storybook/Breakpoints.tsx b/src/view/screens/Storybook/Breakpoints.tsx index 5dd8a89fc0..6c79e2c9ea 100644 --- a/src/view/screens/Storybook/Breakpoints.tsx +++ b/src/view/screens/Storybook/Breakpoints.tsx @@ -1,4 +1,3 @@ -import React from 'react' import {View} from 'react-native' import {atoms as a, useBreakpoints, useTheme} from '#/alf' diff --git a/src/view/screens/Storybook/Icons.tsx b/src/view/screens/Storybook/Icons.tsx index 9de126d6b0..97a588a5ab 100644 --- a/src/view/screens/Storybook/Icons.tsx +++ b/src/view/screens/Storybook/Icons.tsx @@ -1,4 +1,3 @@ -import React from 'react' import {View} from 'react-native' import {atoms as a, useTheme} from '#/alf' diff --git a/src/view/screens/Storybook/Links.tsx b/src/view/screens/Storybook/Links.tsx index 465ce0d6f3..37e3164018 100644 --- a/src/view/screens/Storybook/Links.tsx +++ b/src/view/screens/Storybook/Links.tsx @@ -1,4 +1,3 @@ -import React from 'react' import {View} from 'react-native' import {atoms as a, useTheme} from '#/alf' diff --git a/src/view/screens/Storybook/Menus.tsx b/src/view/screens/Storybook/Menus.tsx index 3e5c74d86e..28689b7273 100644 --- a/src/view/screens/Storybook/Menus.tsx +++ b/src/view/screens/Storybook/Menus.tsx @@ -1,4 +1,3 @@ -import React from 'react' import {View} from 'react-native' import {atoms as a, useTheme} from '#/alf' diff --git a/src/view/screens/Storybook/Palette.tsx b/src/view/screens/Storybook/Palette.tsx index 42000aa810..268ce59354 100644 --- a/src/view/screens/Storybook/Palette.tsx +++ b/src/view/screens/Storybook/Palette.tsx @@ -1,4 +1,3 @@ -import React from 'react' import {View} from 'react-native' import {atoms as a, useTheme} from '#/alf' diff --git a/src/view/screens/Storybook/Settings.tsx b/src/view/screens/Storybook/Settings.tsx index 6bc293c73c..fe47b2c744 100644 --- a/src/view/screens/Storybook/Settings.tsx +++ b/src/view/screens/Storybook/Settings.tsx @@ -1,4 +1,3 @@ -import React from 'react' import {View} from 'react-native' import * as Toast from '#/view/com/util/Toast' diff --git a/src/view/screens/Storybook/Shadows.tsx b/src/view/screens/Storybook/Shadows.tsx index f92112395f..e9c23f03e5 100644 --- a/src/view/screens/Storybook/Shadows.tsx +++ b/src/view/screens/Storybook/Shadows.tsx @@ -1,4 +1,3 @@ -import React from 'react' import {View} from 'react-native' import {atoms as a, useTheme} from '#/alf' diff --git a/src/view/screens/Storybook/Spacing.tsx b/src/view/screens/Storybook/Spacing.tsx index 9b97e92adc..94c62d2f97 100644 --- a/src/view/screens/Storybook/Spacing.tsx +++ b/src/view/screens/Storybook/Spacing.tsx @@ -1,4 +1,3 @@ -import React from 'react' import {View} from 'react-native' import {atoms as a, useTheme} from '#/alf' diff --git a/src/view/screens/Storybook/Theming.tsx b/src/view/screens/Storybook/Theming.tsx index 5b6763370d..673425b477 100644 --- a/src/view/screens/Storybook/Theming.tsx +++ b/src/view/screens/Storybook/Theming.tsx @@ -1,4 +1,3 @@ -import React from 'react' import {View} from 'react-native' import {atoms as a, useTheme} from '#/alf' diff --git a/src/view/screens/Storybook/Typography.tsx b/src/view/screens/Storybook/Typography.tsx index 03f86fd467..9286d4b3d5 100644 --- a/src/view/screens/Storybook/Typography.tsx +++ b/src/view/screens/Storybook/Typography.tsx @@ -1,4 +1,3 @@ -import React from 'react' import {View} from 'react-native' import {atoms as a} from '#/alf' diff --git a/src/view/shell/Composer.tsx b/src/view/shell/Composer.tsx index 4c357acc44..21ab9ec21a 100644 --- a/src/view/shell/Composer.tsx +++ b/src/view/shell/Composer.tsx @@ -1,4 +1,4 @@ -import React, {useEffect} from 'react' +import {useEffect} from 'react' import {Animated, Easing, StyleSheet, View} from 'react-native' import {useAnimatedValue} from '#/lib/hooks/useAnimatedValue' diff --git a/src/view/shell/desktop/Feeds.tsx b/src/view/shell/desktop/Feeds.tsx index bb6b8cadd3..383d8f953a 100644 --- a/src/view/shell/desktop/Feeds.tsx +++ b/src/view/shell/desktop/Feeds.tsx @@ -1,4 +1,3 @@ -import React from 'react' import {StyleSheet, View} from 'react-native' import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' diff --git a/src/view/shell/desktop/RightNav.tsx b/src/view/shell/desktop/RightNav.tsx index 5f75c220cc..4f413211f1 100644 --- a/src/view/shell/desktop/RightNav.tsx +++ b/src/view/shell/desktop/RightNav.tsx @@ -1,4 +1,3 @@ -import React from 'react' import {StyleSheet, View} from 'react-native' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' diff --git a/yarn.lock b/yarn.lock index 5f654b7bc6..89a8d86ab5 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1152,7 +1152,7 @@ "@babel/highlight" "^7.24.2" picocolors "^1.0.0" -"@babel/code-frame@^7.25.9": +"@babel/code-frame@^7.25.9", "@babel/code-frame@^7.26.0": version "7.26.2" resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.26.2.tgz#4b5fab97d33338eff916235055f0ebc21e573a85" integrity sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ== @@ -1181,7 +1181,7 @@ resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.26.2.tgz#278b6b13664557de95b8f35b90d96785850bb56e" integrity sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg== -"@babel/core@^7.11.6", "@babel/core@^7.12.3", "@babel/core@^7.13.16", "@babel/core@^7.14.0", "@babel/core@^7.20.0", "@babel/core@^7.20.2": +"@babel/core@^7.11.6", "@babel/core@^7.12.3", "@babel/core@^7.13.16", "@babel/core@^7.20.0", "@babel/core@^7.20.2": version "7.22.10" resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.22.10.tgz#aad442c7bcd1582252cb4576747ace35bc122f35" integrity sha512-fTmqbbUBAwCcre6zPzNngvsI0aNrPZe77AeqvDxWM9Nm+04RrJ3CAmGHA9f7lJQY6ZMhRztNemy4uslDxTX4Qw== @@ -1244,10 +1244,31 @@ json5 "^2.2.3" semver "^6.3.1" -"@babel/eslint-parser@^7.18.2": - version "7.22.10" - resolved "https://registry.yarnpkg.com/@babel/eslint-parser/-/eslint-parser-7.22.10.tgz#bfdf3d1b32ad573fe7c1c3447e0b485e3a41fd09" - integrity sha512-0J8DNPRXQRLeR9rPaUMM3fA+RbixjnVLe/MRMYCkp3hzgsSuxCHQ8NN8xQG1wIHKJ4a1DTROTvFJdW+B5/eOsg== +"@babel/core@^7.25.2": + version "7.26.0" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.26.0.tgz#d78b6023cc8f3114ccf049eb219613f74a747b40" + integrity sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg== + dependencies: + "@ampproject/remapping" "^2.2.0" + "@babel/code-frame" "^7.26.0" + "@babel/generator" "^7.26.0" + "@babel/helper-compilation-targets" "^7.25.9" + "@babel/helper-module-transforms" "^7.26.0" + "@babel/helpers" "^7.26.0" + "@babel/parser" "^7.26.0" + "@babel/template" "^7.25.9" + "@babel/traverse" "^7.25.9" + "@babel/types" "^7.26.0" + convert-source-map "^2.0.0" + debug "^4.1.0" + gensync "^1.0.0-beta.2" + json5 "^2.2.3" + semver "^6.3.1" + +"@babel/eslint-parser@^7.25.1": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/eslint-parser/-/eslint-parser-7.25.9.tgz#603c68a63078796527bc9d0833f5e52dd5f9224c" + integrity sha512-5UXfgpK0j0Xr/xIdgdLEhOFxaDZ0bRPWJJchRpqOSur/3rZoPbqqki5mm0p4NE2cs28krBEiSM2MB7//afRSQQ== dependencies: "@nicolo-ribaudo/eslint-scope-5-internals" "5.1.1-v1" eslint-visitor-keys "^2.1.0" @@ -1293,7 +1314,7 @@ "@jridgewell/trace-mapping" "^0.3.25" jsesc "^2.5.1" -"@babel/generator@^7.25.9": +"@babel/generator@^7.25.9", "@babel/generator@^7.26.0": version "7.26.2" resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.26.2.tgz#87b75813bec87916210e5e01939a4c823d6bb74f" integrity sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw== @@ -1551,6 +1572,14 @@ dependencies: "@babel/types" "^7.24.6" +"@babel/helper-module-imports@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz#e7f8d20602ebdbf9ebbea0a0751fb0f2a4141715" + integrity sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw== + dependencies: + "@babel/traverse" "^7.25.9" + "@babel/types" "^7.25.9" + "@babel/helper-module-transforms@^7.22.5", "@babel/helper-module-transforms@^7.22.9": version "7.22.9" resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.22.9.tgz#92dfcb1fbbb2bc62529024f72d942a8c97142129" @@ -1595,6 +1624,15 @@ "@babel/helper-split-export-declaration" "^7.24.5" "@babel/helper-validator-identifier" "^7.24.5" +"@babel/helper-module-transforms@^7.26.0": + version "7.26.0" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz#8ce54ec9d592695e58d84cd884b7b5c6a2fdeeae" + integrity sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw== + dependencies: + "@babel/helper-module-imports" "^7.25.9" + "@babel/helper-validator-identifier" "^7.25.9" + "@babel/traverse" "^7.25.9" + "@babel/helper-optimise-call-expression@^7.22.5": version "7.22.5" resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz#f21531a9ccbff644fdd156b4077c16ff0c3f609e" @@ -1832,6 +1870,14 @@ "@babel/traverse" "^7.24.5" "@babel/types" "^7.24.5" +"@babel/helpers@^7.26.0": + version "7.26.0" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.26.0.tgz#30e621f1eba5aa45fe6f4868d2e9154d884119a4" + integrity sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw== + dependencies: + "@babel/template" "^7.25.9" + "@babel/types" "^7.26.0" + "@babel/highlight@^7.10.4", "@babel/highlight@^7.22.10": version "7.22.10" resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.22.10.tgz#02a3f6d8c1cb4521b2fd0ab0da8f4739936137d7" @@ -1875,7 +1921,7 @@ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.24.5.tgz#4a4d5ab4315579e5398a82dcf636ca80c3392790" integrity sha512-EOv5IK8arwh3LI47dz1b0tKUb/1uhHAnHJOrjgtQMIpu1uXd9mlFrJg9IUgGUgZ41Ch0K8REPTYpO7B76b4vJg== -"@babel/parser@^7.25.9", "@babel/parser@^7.26.2": +"@babel/parser@^7.25.9", "@babel/parser@^7.26.0", "@babel/parser@^7.26.2": version "7.26.2" resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.26.2.tgz#fd7b6f487cfea09889557ef5d4eeb9ff9a5abd11" integrity sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ== @@ -3242,7 +3288,7 @@ "@gorhom/portal" "1.0.14" invariant "^2.2.4" -"@discoveryjs/json-ext@0.5.7", "@discoveryjs/json-ext@^0.5.0": +"@discoveryjs/json-ext@0.5.7": version "0.5.7" resolved "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz#1d572bfbbe14b7704e0ba0f39b74815b84870d70" integrity sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw== @@ -3381,7 +3427,19 @@ dependencies: eslint-visitor-keys "^3.3.0" -"@eslint-community/regexpp@^4.4.0", "@eslint-community/regexpp@^4.6.1": +"@eslint-community/eslint-utils@^4.4.0": + version "4.4.1" + resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz#d1145bf2c20132d6400495d6df4bf59362fd9d56" + integrity sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA== + dependencies: + eslint-visitor-keys "^3.4.3" + +"@eslint-community/regexpp@^4.10.0": + version "4.12.1" + resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.12.1.tgz#cfc6cffe39df390a3841cde2abccf92eaa7ae0e0" + integrity sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ== + +"@eslint-community/regexpp@^4.6.1": version "4.6.2" resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.6.2.tgz#1816b5f6948029c5eaacb0703b850ee0cb37d8f8" integrity sha512-pPTNuaAG3QMH+buKyBIGJs3g/S5y0caxw0ygM3YyE6yJFySwiGGSzA+mM3KJ8QQvzeLh3blwgSonkFjgQdxzMw== @@ -5469,30 +5527,6 @@ prompts "^2.4.2" semver "^7.5.2" -"@react-native-community/eslint-config@^3.0.0": - version "3.2.0" - resolved "https://registry.yarnpkg.com/@react-native-community/eslint-config/-/eslint-config-3.2.0.tgz#42f677d5fff385bccf1be1d3b8faa8c086cf998d" - integrity sha512-ZjGvoeiBtCbd506hQqwjKmkWPgynGUoJspG8/MuV/EfKnkjCtBmeJvq2n+sWbWEvL9LWXDp2GJmPzmvU5RSvKQ== - dependencies: - "@babel/core" "^7.14.0" - "@babel/eslint-parser" "^7.18.2" - "@react-native-community/eslint-plugin" "^1.1.0" - "@typescript-eslint/eslint-plugin" "^5.30.5" - "@typescript-eslint/parser" "^5.30.5" - eslint-config-prettier "^8.5.0" - eslint-plugin-eslint-comments "^3.2.0" - eslint-plugin-ft-flow "^2.0.1" - eslint-plugin-jest "^26.5.3" - eslint-plugin-prettier "^4.2.1" - eslint-plugin-react "^7.30.1" - eslint-plugin-react-hooks "^4.6.0" - eslint-plugin-react-native "^4.0.0" - -"@react-native-community/eslint-plugin@^1.1.0": - version "1.3.0" - resolved "https://registry.yarnpkg.com/@react-native-community/eslint-plugin/-/eslint-plugin-1.3.0.tgz#9e558170c106bbafaa1ef502bd8e6d4651012bf9" - integrity sha512-+zDZ20NUnSWghj7Ku5aFphMzuM9JulqCW+aPXT6IfIXFbb8tzYTTOSeRFOtuekJ99ibW2fUCSsjuKNlwDIbHFg== - "@react-native-masked-view/masked-view@0.3.0": version "0.3.0" resolved "https://registry.yarnpkg.com/@react-native-masked-view/masked-view/-/masked-view-0.3.0.tgz#bd29fae18d148a685331910a3c7b766ce87eafcc" @@ -5637,6 +5671,30 @@ temp-dir "^2.0.0" ws "^6.2.2" +"@react-native/eslint-config@^0.76.2": + version "0.76.2" + resolved "https://registry.yarnpkg.com/@react-native/eslint-config/-/eslint-config-0.76.2.tgz#2741eee69ff194b8adc15281c0cb9695ba015ef0" + integrity sha512-7w/WkBmBMTu+1i381Wi+XBNINAZaJcvcljShf26u2qXSiSY8pdXL2kb1pS+oZkD7KUDK2AnUbCkSp8hI7+lnyQ== + dependencies: + "@babel/core" "^7.25.2" + "@babel/eslint-parser" "^7.25.1" + "@react-native/eslint-plugin" "0.76.2" + "@typescript-eslint/eslint-plugin" "^7.1.1" + "@typescript-eslint/parser" "^7.1.1" + eslint-config-prettier "^8.5.0" + eslint-plugin-eslint-comments "^3.2.0" + eslint-plugin-ft-flow "^2.0.1" + eslint-plugin-jest "^27.9.0" + eslint-plugin-react "^7.30.1" + eslint-plugin-react-hooks "^4.6.0" + eslint-plugin-react-native "^4.0.0" + hermes-eslint "^0.23.1" + +"@react-native/eslint-plugin@0.76.2": + version "0.76.2" + resolved "https://registry.yarnpkg.com/@react-native/eslint-plugin/-/eslint-plugin-0.76.2.tgz#cc55f7a31a38675fc7f31195d8551872e9243419" + integrity sha512-KHNMyxSNgAY4K1bpeTb7E0iUkqQ3ujAIsBQ0DigAiDVuE2S3j29mq/t1jnuyqBYpw0uwkwGNqIwI7W+vSduEtw== + "@react-native/gradle-plugin@0.74.83": version "0.74.83" resolved "https://registry.yarnpkg.com/@react-native/gradle-plugin/-/gradle-plugin-0.74.83.tgz#4ac60a6d6295d5b920173cbf184ee32e53690810" @@ -6614,11 +6672,6 @@ resolved "https://registry.yarnpkg.com/@tsconfig/node16/-/node16-1.0.4.tgz#0b92dcc0cc1c81f6f306a381f28e31b1a56536e9" integrity sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA== -"@tsconfig/react-native@^2.0.3": - version "2.0.3" - resolved "https://registry.yarnpkg.com/@tsconfig/react-native/-/react-native-2.0.3.tgz#79ad8efc6d3729152da6cb23725b6c364a7349b2" - integrity sha512-jE58snEKBd9DXfyR4+ssZmYJ/W2mOSnNrvljR0aLyQJL9JKX6vlWELHkRjb3HBbcM9Uy0hZGijXbqEAjOERW2A== - "@types/babel__core@^7.1.14": version "7.20.1" resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.20.1.tgz#916ecea274b0c776fec721e333e55762d3a9614b" @@ -6856,41 +6909,6 @@ dependencies: "@types/lodash" "*" -"@types/lodash.omit@^4.5.7": - version "4.5.7" - resolved "https://registry.yarnpkg.com/@types/lodash.omit/-/lodash.omit-4.5.7.tgz#2357ed2412b4164344e8ee41f85bb0b2920304ba" - integrity sha512-6q6cNg0tQ6oTWjSM+BcYMBhan54P/gLqBldG4AuXd3nKr0oeVekWNS4VrNEu3BhCSDXtGapi7zjhnna0s03KpA== - dependencies: - "@types/lodash" "*" - -"@types/lodash.once@^4.1.7": - version "4.1.7" - resolved "https://registry.yarnpkg.com/@types/lodash.once/-/lodash.once-4.1.7.tgz#84bc1f711725f6cd6d8be04365623141e09bc007" - integrity sha512-XWhnXzWkxoleOoXKmzUtep8vT+wiiQQgmPD+wzG0yO0bdlszmnqHRb2WiY5hK/8V0DTet1+z9DJj9cnbdAhWng== - dependencies: - "@types/lodash" "*" - -"@types/lodash.random@^3.2.7": - version "3.2.7" - resolved "https://registry.yarnpkg.com/@types/lodash.random/-/lodash.random-3.2.7.tgz#3100a1b7956ce86ab5adcce2e7b305412b98e3bf" - integrity sha512-gFKkVgWYi1q7RFJ+QNTzaRprdhVIZLpZd6C3MTNehKcujMn9SyFUqf2fTBOmvIYXqNk0RpwfbdOwHf0GnEQB0g== - dependencies: - "@types/lodash" "*" - -"@types/lodash.samplesize@^4.2.7": - version "4.2.7" - resolved "https://registry.yarnpkg.com/@types/lodash.samplesize/-/lodash.samplesize-4.2.7.tgz#15784dd9e54aa1bf043552bdb533b83fcf50b82f" - integrity sha512-l4nPeq7tew/T/4zKvVvjR0r4XyDaeTGGSGrdXsjH64LbWsosZBo9/zGpAIBjAH2nKZwZ8fHZ5alhaIZu5LLwmg== - dependencies: - "@types/lodash" "*" - -"@types/lodash.set@^4.3.7": - version "4.3.7" - resolved "https://registry.yarnpkg.com/@types/lodash.set/-/lodash.set-4.3.7.tgz#784fccea3fbef4d0949d1897a780f592da700942" - integrity sha512-bS5Wkg/nrT82YUfkNYPSccFrNZRL+irl7Yt4iM6OTSQ0VZJED2oUIVm15NkNtUAQ8SRhCe+axqERUV6MJgkeEg== - dependencies: - "@types/lodash" "*" - "@types/lodash.shuffle@^4.2.7": version "4.2.7" resolved "https://registry.yarnpkg.com/@types/lodash.shuffle/-/lodash.shuffle-4.2.7.tgz#b714d829af948a266b0df1477d629c70de2f4c72" @@ -7093,30 +7111,30 @@ dependencies: "@types/yargs-parser" "*" -"@typescript-eslint/eslint-plugin@^5.30.5", "@typescript-eslint/eslint-plugin@^5.48.2": - version "5.62.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz#aeef0328d172b9e37d9bab6dbc13b87ed88977db" - integrity sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag== +"@typescript-eslint/eslint-plugin@^7.1.1", "@typescript-eslint/eslint-plugin@^7.18.0": + version "7.18.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-7.18.0.tgz#b16d3cf3ee76bf572fdf511e79c248bdec619ea3" + integrity sha512-94EQTWZ40mzBc42ATNIBimBEDltSJ9RQHCC8vc/PDbxi4k8dVwUAv4o98dk50M1zB+JGFxp43FP7f8+FP8R6Sw== dependencies: - "@eslint-community/regexpp" "^4.4.0" - "@typescript-eslint/scope-manager" "5.62.0" - "@typescript-eslint/type-utils" "5.62.0" - "@typescript-eslint/utils" "5.62.0" - debug "^4.3.4" + "@eslint-community/regexpp" "^4.10.0" + "@typescript-eslint/scope-manager" "7.18.0" + "@typescript-eslint/type-utils" "7.18.0" + "@typescript-eslint/utils" "7.18.0" + "@typescript-eslint/visitor-keys" "7.18.0" graphemer "^1.4.0" - ignore "^5.2.0" - natural-compare-lite "^1.4.0" - semver "^7.3.7" - tsutils "^3.21.0" + ignore "^5.3.1" + natural-compare "^1.4.0" + ts-api-utils "^1.3.0" -"@typescript-eslint/parser@^5.30.5", "@typescript-eslint/parser@^5.48.2": - version "5.62.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.62.0.tgz#1b63d082d849a2fcae8a569248fbe2ee1b8a56c7" - integrity sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA== +"@typescript-eslint/parser@^7.1.1", "@typescript-eslint/parser@^7.18.0": + version "7.18.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-7.18.0.tgz#83928d0f1b7f4afa974098c64b5ce6f9051f96a0" + integrity sha512-4Z+L8I2OqhZV8qA132M4wNL30ypZGYOQVBfMgxDH/K5UX0PNqTu1c6za9ST5r9+tavvHiTWmBnKzpCJ/GlVFtg== dependencies: - "@typescript-eslint/scope-manager" "5.62.0" - "@typescript-eslint/types" "5.62.0" - "@typescript-eslint/typescript-estree" "5.62.0" + "@typescript-eslint/scope-manager" "7.18.0" + "@typescript-eslint/types" "7.18.0" + "@typescript-eslint/typescript-estree" "7.18.0" + "@typescript-eslint/visitor-keys" "7.18.0" debug "^4.3.4" "@typescript-eslint/scope-manager@5.62.0": @@ -7127,21 +7145,34 @@ "@typescript-eslint/types" "5.62.0" "@typescript-eslint/visitor-keys" "5.62.0" -"@typescript-eslint/type-utils@5.62.0": - version "5.62.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz#286f0389c41681376cdad96b309cedd17d70346a" - integrity sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew== +"@typescript-eslint/scope-manager@7.18.0": + version "7.18.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-7.18.0.tgz#c928e7a9fc2c0b3ed92ab3112c614d6bd9951c83" + integrity sha512-jjhdIE/FPF2B7Z1uzc6i3oWKbGcHb87Qw7AWj6jmEqNOfDFbJWtjt/XfwCpvNkpGWlcJaog5vTR+VV8+w9JflA== dependencies: - "@typescript-eslint/typescript-estree" "5.62.0" - "@typescript-eslint/utils" "5.62.0" + "@typescript-eslint/types" "7.18.0" + "@typescript-eslint/visitor-keys" "7.18.0" + +"@typescript-eslint/type-utils@7.18.0": + version "7.18.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-7.18.0.tgz#2165ffaee00b1fbbdd2d40aa85232dab6998f53b" + integrity sha512-XL0FJXuCLaDuX2sYqZUUSOJ2sG5/i1AAze+axqmLnSkNEVMVYLF+cbwlB2w8D1tinFuSikHmFta+P+HOofrLeA== + dependencies: + "@typescript-eslint/typescript-estree" "7.18.0" + "@typescript-eslint/utils" "7.18.0" debug "^4.3.4" - tsutils "^3.21.0" + ts-api-utils "^1.3.0" "@typescript-eslint/types@5.62.0": version "5.62.0" resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.62.0.tgz#258607e60effa309f067608931c3df6fed41fd2f" integrity sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ== +"@typescript-eslint/types@7.18.0": + version "7.18.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-7.18.0.tgz#b90a57ccdea71797ffffa0321e744f379ec838c9" + integrity sha512-iZqi+Ds1y4EDYUtlOOC+aUmxnE9xS/yCigkjA7XpTKV6nCBd3Hp/PRGGmdwnfkV2ThMyYldP1wRpm/id99spTQ== + "@typescript-eslint/typescript-estree@5.62.0": version "5.62.0" resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz#7d17794b77fabcac615d6a48fb143330d962eb9b" @@ -7155,7 +7186,31 @@ semver "^7.3.7" tsutils "^3.21.0" -"@typescript-eslint/utils@5.62.0", "@typescript-eslint/utils@^5.10.0", "@typescript-eslint/utils@^5.61.0": +"@typescript-eslint/typescript-estree@7.18.0": + version "7.18.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-7.18.0.tgz#b5868d486c51ce8f312309ba79bdb9f331b37931" + integrity sha512-aP1v/BSPnnyhMHts8cf1qQ6Q1IFwwRvAQGRvBFkWlo3/lH29OXA3Pts+c10nxRxIBrDnoMqzhgdwVe5f2D6OzA== + dependencies: + "@typescript-eslint/types" "7.18.0" + "@typescript-eslint/visitor-keys" "7.18.0" + debug "^4.3.4" + globby "^11.1.0" + is-glob "^4.0.3" + minimatch "^9.0.4" + semver "^7.6.0" + ts-api-utils "^1.3.0" + +"@typescript-eslint/utils@7.18.0": + version "7.18.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-7.18.0.tgz#bca01cde77f95fc6a8d5b0dbcbfb3d6ca4be451f" + integrity sha512-kK0/rNa2j74XuHVcoCZxdFBMF+aq/vH83CXAOHieC+2Gis4mF8jJXT5eAfyD3K0sAxtPuwxaIOIOvhwzVDt/kw== + dependencies: + "@eslint-community/eslint-utils" "^4.4.0" + "@typescript-eslint/scope-manager" "7.18.0" + "@typescript-eslint/types" "7.18.0" + "@typescript-eslint/typescript-estree" "7.18.0" + +"@typescript-eslint/utils@^5.10.0", "@typescript-eslint/utils@^5.61.0": version "5.62.0" resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.62.0.tgz#141e809c71636e4a75daa39faed2fb5f4b10df86" integrity sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ== @@ -7177,6 +7232,14 @@ "@typescript-eslint/types" "5.62.0" eslint-visitor-keys "^3.3.0" +"@typescript-eslint/visitor-keys@7.18.0": + version "7.18.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-7.18.0.tgz#0564629b6124d67607378d0f0332a0495b25e7d7" + integrity sha512-cDF0/Gf81QpY3xYyJKDV14Zwdmid5+uuENhjH2EqFaF0ni+yAyq/LzMaIJdhNJXZI7uLzwIlA+V7oWoyn6Curg== + dependencies: + "@typescript-eslint/types" "7.18.0" + eslint-visitor-keys "^3.4.3" + "@urql/core@2.3.6": version "2.3.6" resolved "https://registry.yarnpkg.com/@urql/core/-/core-2.3.6.tgz#ee0a6f8fde02251e9560c5f17dce5cd90f948552" @@ -7322,21 +7385,6 @@ "@webassemblyjs/ast" "1.11.6" "@xtuc/long" "4.2.2" -"@webpack-cli/configtest@^2.1.1": - version "2.1.1" - resolved "https://registry.yarnpkg.com/@webpack-cli/configtest/-/configtest-2.1.1.tgz#3b2f852e91dac6e3b85fb2a314fb8bef46d94646" - integrity sha512-wy0mglZpDSiSS0XHrVR+BAdId2+yxPSoJW8fsna3ZpYSlufjvxnP4YbKTCBZnNIcGN4r6ZPXV55X4mYExOfLmw== - -"@webpack-cli/info@^2.0.2": - version "2.0.2" - resolved "https://registry.yarnpkg.com/@webpack-cli/info/-/info-2.0.2.tgz#cc3fbf22efeb88ff62310cf885c5b09f44ae0fdd" - integrity sha512-zLHQdI/Qs1UyT5UBdWNqsARasIA+AaF8t+4u2aS2nEpBQh2mWIVb8qAklq0eUENnC5mOItrIB4LiS9xMtph18A== - -"@webpack-cli/serve@^2.0.5": - version "2.0.5" - resolved "https://registry.yarnpkg.com/@webpack-cli/serve/-/serve-2.0.5.tgz#325db42395cd49fe6c14057f9a900e427df8810e" - integrity sha512-lqaoKnRYBdo1UgDX8uF24AfGMifWK19TxPmM5FHc2vAGxrJ/qtyUyFBWoY1tISZdelsQ5fBcOusifo5o5wSJxQ== - "@xmldom/xmldom@^0.8.8": version "0.8.10" resolved "https://registry.yarnpkg.com/@xmldom/xmldom/-/xmldom-0.8.10.tgz#a1337ca426aa61cef9fe15b5b28e340a72f6fa99" @@ -7894,14 +7942,6 @@ babel-loader@^8.3.0: make-dir "^3.1.0" schema-utils "^2.6.5" -babel-loader@^9.1.2: - version "9.1.3" - resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-9.1.3.tgz#3d0e01b4e69760cc694ee306fe16d358aa1c6f9a" - integrity sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw== - dependencies: - find-cache-dir "^4.0.0" - schema-utils "^4.0.0" - babel-plugin-istanbul@^6.1.1: version "6.1.1" resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz#fa88ec59232fd9b4e36dbbc540a8ec9a9b47da73" @@ -7974,7 +8014,7 @@ babel-plugin-react-compiler@^19.0.0-beta-a7bf2bd-20241110: dependencies: "@babel/types" "^7.19.0" -babel-plugin-react-native-web@^0.18.12, babel-plugin-react-native-web@~0.18.10: +babel-plugin-react-native-web@~0.18.10: version "0.18.12" resolved "https://registry.yarnpkg.com/babel-plugin-react-native-web/-/babel-plugin-react-native-web-0.18.12.tgz#3e9764484492ea612a16b40135b07c2d05b7969d" integrity sha512-4djr9G6fMdwQoD6LQ7hOKAm39+y12flWgovAqS1k5O8f42YQ3A1FFMyV5kKfetZuGhZO5BmNmOdRRZQ1TixtDw== @@ -8748,7 +8788,7 @@ colorette@^1.0.7: resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.4.0.tgz#5190fbb87276259a86ad700bff2c6d6faa3fca40" integrity sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g== -colorette@^2.0.10, colorette@^2.0.14, colorette@^2.0.20: +colorette@^2.0.10, colorette@^2.0.20: version "2.0.20" resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.20.tgz#9eb793e6833067f7235902fcd3b09917a000a95a" integrity sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w== @@ -8780,7 +8820,7 @@ commander@2.20.0: resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.0.tgz#d58bb2b5c1ee8f87b0d340027e9e94e222c5a422" integrity sha512-7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ== -commander@^10.0.0, commander@^10.0.1: +commander@^10.0.0: version "10.0.1" resolved "https://registry.yarnpkg.com/commander/-/commander-10.0.1.tgz#881ee46b4f77d1c1dccc5823433aa39b022cbe06" integrity sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug== @@ -9730,11 +9770,6 @@ envinfo@^7.10.0: resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.11.0.tgz#c3793f44284a55ff8c82faf1ffd91bc6478ea01f" integrity sha512-G9/6xF1FPbIw0TtalAMaVPpiq2aDEuKLXM314jPVAO9r2fo2a4BLqMNkmRS7O/xPPZ+COAhGIz3ETvHEV3eUcg== -envinfo@^7.7.3: - version "7.10.0" - resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.10.0.tgz#55146e3909cc5fe63c22da63fb15b05aeac35b13" - integrity sha512-ZtUjZO6l5mwTHvc1L9+1q5p/R3wTopcfqMW8r5t8SJSKqeVI/LtajORwRFEKpEFuekjD0VBjwu1HMxL4UalIRw== - eol@^0.9.1: version "0.9.1" resolved "https://registry.yarnpkg.com/eol/-/eol-0.9.1.tgz#f701912f504074be35c6117a5c4ade49cd547acd" @@ -10006,10 +10041,10 @@ eslint-plugin-ft-flow@^2.0.1, eslint-plugin-ft-flow@^2.0.3: lodash "^4.17.21" string-natural-compare "^3.0.1" -eslint-plugin-jest@^26.5.3: - version "26.9.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-26.9.0.tgz#7931c31000b1c19e57dbfb71bbf71b817d1bf949" - integrity sha512-TWJxWGp1J628gxh2KhaH1H1paEdgE2J61BBF1I59c6xWeL5+D1BzMxGDN/nXAfX+aSkR5u80K+XhskK6Gwq9ng== +eslint-plugin-jest@^27.9.0: + version "27.9.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-27.9.0.tgz#7c98a33605e1d8b8442ace092b60e9919730000b" + integrity sha512-QIT7FH7fNmd9n4se7FFKHbsLKGQiw885Ds6Y/sxKgCZ6natwCsXdgPOADnYVxN2QrRweF0FZWbJ6S7Rsn7llug== dependencies: "@typescript-eslint/utils" "^5.10.0" @@ -10020,13 +10055,6 @@ eslint-plugin-lingui@^0.2.0: dependencies: "@typescript-eslint/utils" "^5.61.0" -eslint-plugin-prettier@^4.2.1: - version "4.2.1" - resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.1.tgz#651cbb88b1dab98bfd42f017a12fa6b2d993f94b" - integrity sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ== - dependencies: - prettier-linter-helpers "^1.0.0" - eslint-plugin-react-compiler@^19.0.0-beta-a7bf2bd-20241110: version "19.0.0-beta-a7bf2bd-20241110" resolved "https://registry.yarnpkg.com/eslint-plugin-react-compiler/-/eslint-plugin-react-compiler-19.0.0-beta-a7bf2bd-20241110.tgz#b03c043cc70cc9297e4f79f3370900aacd013d13" @@ -10569,6 +10597,14 @@ expo-structured-headers@~3.8.0: resolved "https://registry.yarnpkg.com/expo-structured-headers/-/expo-structured-headers-3.8.0.tgz#11797a4c3a7a6770b21126cecffcda148030e361" integrity sha512-R+gFGn0x5CWl4OVlk2j1bJTJIz4KO8mPoCHpRHmfqMjmrMvrOM0qQSY3V5NHXwp1yT/L2v8aUmFQsBRIdvi1XA== +expo-system-ui@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/expo-system-ui/-/expo-system-ui-3.0.4.tgz#5ace49d38eb03c09a8041b3b82c581a6b974741a" + integrity sha512-v1n6hBO30k9qw6RE8/au4yNoovs71ExGuXizJUlR5KSo4Ruogpb+0/2q3uRZMDIYWWCANvms8L0UOh6fQJ5TXg== + dependencies: + "@react-native/normalize-colors" "~0.74.83" + debug "^4.3.2" + expo-task-manager@~11.8.1: version "11.8.1" resolved "https://registry.yarnpkg.com/expo-task-manager/-/expo-task-manager-11.8.1.tgz#33089e78ee3fbd83327fb403bce12d69baf7d21b" @@ -10689,11 +10725,6 @@ fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== -fast-diff@^1.1.2: - version "1.3.0" - resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.3.0.tgz#ece407fa550a64d638536cd727e129c61616e0f0" - integrity sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw== - fast-fifo@^1.1.0, fast-fifo@^1.2.0: version "1.3.2" resolved "https://registry.yarnpkg.com/fast-fifo/-/fast-fifo-1.3.2.tgz#286e31de96eb96d38a97899815740ba2a4f3640c" @@ -10791,11 +10822,6 @@ fast-xml-parser@^4.2.4: dependencies: strnum "^1.0.5" -fastest-levenshtein@^1.0.12: - version "1.0.16" - resolved "https://registry.yarnpkg.com/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz#210e61b6ff181de91ea9b3d1b84fdedd47e034e5" - integrity sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg== - fastq@^1.6.0: version "1.15.0" resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.15.0.tgz#d04d07c6a2a68fe4599fea8d2e103a937fae6b3a" @@ -10947,14 +10973,6 @@ find-cache-dir@^3.3.1: make-dir "^3.0.2" pkg-dir "^4.1.0" -find-cache-dir@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-4.0.0.tgz#a30ee0448f81a3990708f6453633c733e2f6eec2" - integrity sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg== - dependencies: - common-path-prefix "^3.0.0" - pkg-dir "^7.0.0" - find-up@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" @@ -10978,14 +10996,6 @@ find-up@^5.0.0, find-up@~5.0.0: locate-path "^6.0.0" path-exists "^4.0.0" -find-up@^6.3.0: - version "6.3.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-6.3.0.tgz#2abab3d3280b2dc7ac10199ef324c4e002c8c790" - integrity sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw== - dependencies: - locate-path "^7.1.0" - path-exists "^5.0.0" - find-yarn-workspace-root@^2.0.0, find-yarn-workspace-root@~2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/find-yarn-workspace-root/-/find-yarn-workspace-root-2.0.0.tgz#f47fb8d239c900eb78179aa81b66673eac88f7bd" @@ -11507,6 +11517,15 @@ he@1.2.0, he@^1.2.0: resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== +hermes-eslint@^0.23.1: + version "0.23.1" + resolved "https://registry.yarnpkg.com/hermes-eslint/-/hermes-eslint-0.23.1.tgz#e0801e58bd4a70f01b0b0659805f315ab7ea6691" + integrity sha512-DaEpbJobK1KwpTSXrPIKkHs2h+B+RTw2F1g9S70tjtJ14a3zM+2gPVUtc8xyffQqRJ6tPfs+/zRKwV17lwDvqA== + dependencies: + esrecurse "^4.3.0" + hermes-estree "0.23.1" + hermes-parser "0.23.1" + hermes-estree@0.18.2: version "0.18.2" resolved "https://registry.yarnpkg.com/hermes-estree/-/hermes-estree-0.18.2.tgz#fd450fa1659cf074ceaa2ddeeb21674f3b2342f3" @@ -11522,6 +11541,11 @@ hermes-estree@0.20.1: resolved "https://registry.yarnpkg.com/hermes-estree/-/hermes-estree-0.20.1.tgz#0b9a544cf883a779a8e1444b915fa365bef7f72d" integrity sha512-SQpZK4BzR48kuOg0v4pb3EAGNclzIlqMj3Opu/mu7bbAoFw6oig6cEt/RAi0zTFW/iW6Iz9X9ggGuZTAZ/yZHg== +hermes-estree@0.23.1: + version "0.23.1" + resolved "https://registry.yarnpkg.com/hermes-estree/-/hermes-estree-0.23.1.tgz#d0bac369a030188120ee7024926aabe5a9f84fdb" + integrity sha512-eT5MU3f5aVhTqsfIReZ6n41X5sYn4IdQL0nvz6yO+MMlPxw49aSARHLg/MSehQftyjnrE8X6bYregzSumqc6cg== + hermes-parser@0.18.2: version "0.18.2" resolved "https://registry.yarnpkg.com/hermes-parser/-/hermes-parser-0.18.2.tgz#50f15e2fcd559a48c68cd7af259d4292298bd14d" @@ -11536,6 +11560,13 @@ hermes-parser@0.19.1: dependencies: hermes-estree "0.19.1" +hermes-parser@0.23.1: + version "0.23.1" + resolved "https://registry.yarnpkg.com/hermes-parser/-/hermes-parser-0.23.1.tgz#e5de648e664f3b3d84d01b48fc7ab164f4b68205" + integrity sha512-oxl5h2DkFW83hT4DAUJorpah8ou4yvmweUzLJmmr6YV2cezduCdlil1AvU/a/xSsAFo4WUcNA4GoV5Bvq6JffA== + dependencies: + hermes-estree "0.23.1" + hermes-parser@^0.20.1: version "0.20.1" resolved "https://registry.yarnpkg.com/hermes-parser/-/hermes-parser-0.20.1.tgz#ad10597b99f718b91e283f81cbe636c50c3cff92" @@ -11914,11 +11945,6 @@ internal-slot@^1.0.3, internal-slot@^1.0.5: has "^1.0.3" side-channel "^1.0.4" -interpret@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/interpret/-/interpret-3.1.1.tgz#5be0ceed67ca79c6c4bc5cf0d7ee843dcea110c4" - integrity sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ== - invariant@2.2.4, invariant@^2.2.4: version "2.2.4" resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" @@ -13454,13 +13480,6 @@ locate-path@^6.0.0: dependencies: p-locate "^5.0.0" -locate-path@^7.1.0: - version "7.2.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-7.2.0.tgz#69cb1779bd90b35ab1e771e1f2f89a202c2a8a8a" - integrity sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA== - dependencies: - p-locate "^6.0.0" - lodash.chunk@^4.2.0: version "4.2.0" resolved "https://registry.yarnpkg.com/lodash.chunk/-/lodash.chunk-4.2.0.tgz#66e5ce1f76ed27b4303d8c6512e8d1216e8106bc" @@ -13506,31 +13525,6 @@ lodash.merge@^4.6.2: resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== -lodash.omit@^4.5.0: - version "4.5.0" - resolved "https://registry.yarnpkg.com/lodash.omit/-/lodash.omit-4.5.0.tgz#6eb19ae5a1ee1dd9df0b969e66ce0b7fa30b5e60" - integrity sha512-XeqSp49hNGmlkj2EJlfrQFIzQ6lXdNro9sddtQzcJY8QaoC2GO0DT7xaIokHeyM+mIT0mPMlPvkYzg2xCuHdZg== - -lodash.once@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/lodash.once/-/lodash.once-4.1.1.tgz#0dd3971213c7c56df880977d504c88fb471a97ac" - integrity sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg== - -lodash.random@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/lodash.random/-/lodash.random-3.2.0.tgz#96e24e763333199130d2c9e2fd57f91703cc262d" - integrity sha512-A6Vn7teN0+qSnhOsE8yx2bGowCS1G7D9e5abq8VhwOP98YHS/KrGMf43yYxA05lvcvloT+W9Z2ffkSajFTcPUA== - -lodash.samplesize@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/lodash.samplesize/-/lodash.samplesize-4.2.0.tgz#460762fbb2b342290517499e90d51586db465ff9" - integrity sha512-1ZhKV7/nuISuaQdxfCqrs4HHxXIYN+0Z4f7NMQn2PHkxFZJGavJQ1j/paxyJnLJmN2ZamNN6SMepneV+dCgQTA== - -lodash.set@^4.3.2: - version "4.3.2" - resolved "https://registry.yarnpkg.com/lodash.set/-/lodash.set-4.3.2.tgz#d8757b1da807dde24816b0d6a84bea1a76230b23" - integrity sha512-4hNPN5jlm/N/HLMCO43v8BXKq9Z7QdAGc/VGrRD61w8gN9g/6jF9A4L1pbUgBLCffi0w9VsXfTOij5x8iTyFvg== - lodash.shuffle@^4.2.0: version "4.2.0" resolved "https://registry.yarnpkg.com/lodash.shuffle/-/lodash.shuffle-4.2.0.tgz#145b5053cf875f6f5c2a33f48b6e9948c6ec7b4b" @@ -14284,11 +14278,6 @@ napi-build-utils@^1.0.1: resolved "https://registry.yarnpkg.com/napi-build-utils/-/napi-build-utils-1.0.2.tgz#b1fddc0b2c46e380a0b7a76f984dd47c41a13806" integrity sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg== -natural-compare-lite@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz#17b09581988979fddafe0201e931ba933c96cbb4" - integrity sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g== - natural-compare@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" @@ -14733,13 +14722,6 @@ p-limit@^3.0.2, p-limit@^3.1.0: dependencies: yocto-queue "^0.1.0" -p-limit@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-4.0.0.tgz#914af6544ed32bfa54670b061cafcbd04984b644" - integrity sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ== - dependencies: - yocto-queue "^1.0.0" - p-locate@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" @@ -14761,13 +14743,6 @@ p-locate@^5.0.0: dependencies: p-limit "^3.0.2" -p-locate@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-6.0.0.tgz#3da9a49d4934b901089dca3302fa65dc5a05c04f" - integrity sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw== - dependencies: - p-limit "^4.0.0" - p-map@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/p-map/-/p-map-2.1.0.tgz#310928feef9c9ecc65b68b17693018a665cea175" @@ -14918,11 +14893,6 @@ path-exists@^4.0.0: resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== -path-exists@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-5.0.0.tgz#a6aad9489200b21fab31e49cf09277e5116fb9e7" - integrity sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ== - path-is-absolute@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" @@ -15183,13 +15153,6 @@ pkg-dir@^4.1.0, pkg-dir@^4.2.0: dependencies: find-up "^4.0.0" -pkg-dir@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-7.0.0.tgz#8f0c08d6df4476756c5ff29b3282d0bab7517d11" - integrity sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA== - dependencies: - find-up "^6.3.0" - pkg-up@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-3.1.0.tgz#100ec235cc150e4fd42519412596a28512a0def5" @@ -15527,13 +15490,6 @@ prelude-ls@^1.2.1: resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== -prettier-linter-helpers@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b" - integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w== - dependencies: - fast-diff "^1.1.2" - prettier@^2.8.3: version "2.8.8" resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.8.tgz#e8c5d7e98a4305ffe3de2e1fc4aca1a71c28b1da" @@ -16409,13 +16365,6 @@ recast@^0.21.0: source-map "~0.6.1" tslib "^2.0.1" -rechoir@^0.8.0: - version "0.8.0" - resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.8.0.tgz#49f866e0d32146142da3ad8f0eff352b3215ff22" - integrity sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ== - dependencies: - resolve "^1.20.0" - redent@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/redent/-/redent-3.0.0.tgz#e557b7998316bb53c9f1f56fa626352c6963059f" @@ -18133,6 +18082,11 @@ traverse@~0.6.6: resolved "https://registry.yarnpkg.com/traverse/-/traverse-0.6.7.tgz#46961cd2d57dd8706c36664acde06a248f1173fe" integrity sha512-/y956gpUo9ZNCb99YjxG7OaslxZWHfCHAUUfshwqOXmxUIvqLjVO581BT+gM59+QV9tFe6/CGG53tsA1Y7RSdg== +ts-api-utils@^1.3.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-1.4.0.tgz#709c6f2076e511a81557f3d07a0cbd566ae8195c" + integrity sha512-032cPxaEKwM+GT3vA5JXNzIaizx388rhsSW79vGRNGXfRRAdEAn2mvk36PvK5HnOchyWZ7afLEXqYCvPCrzuzQ== + ts-interface-checker@^0.1.9: version "0.1.13" resolved "https://registry.yarnpkg.com/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz#784fd3d679722bc103b1b4b8030bcddb5db2a699" @@ -18496,15 +18450,6 @@ url-join@4.0.0: resolved "https://registry.yarnpkg.com/url-join/-/url-join-4.0.0.tgz#4d3340e807d3773bda9991f8305acdcc2a665d2a" integrity sha512-EGXjXJZhIHiQMK2pQukuFcL303nskqIRzWvPvV5O8miOfwoUb9G+a/Cld60kUyeaybEI94wvVClT10DtfeAExA== -url-loader@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/url-loader/-/url-loader-4.1.1.tgz#28505e905cae158cf07c92ca622d7f237e70a4e2" - integrity sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA== - dependencies: - loader-utils "^2.0.0" - mime-types "^2.1.27" - schema-utils "^3.0.0" - url-parse@^1.5.3: version "1.5.10" resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.5.10.tgz#9d3c2f736c1d75dd3bd2be507dcc111f1e2ea9c1" @@ -18729,25 +18674,6 @@ webpack-bundle-analyzer@^4.10.1: sirv "^2.0.3" ws "^7.3.1" -webpack-cli@^5.0.1: - version "5.1.4" - resolved "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-5.1.4.tgz#c8e046ba7eaae4911d7e71e2b25b776fcc35759b" - integrity sha512-pIDJHIEI9LR0yxHXQ+Qh95k2EvXpWzZ5l+d+jIo+RdSm9MiHfzazIxwwni/p7+x4eJZuvG1AJwgC4TNQ7NRgsg== - dependencies: - "@discoveryjs/json-ext" "^0.5.0" - "@webpack-cli/configtest" "^2.1.1" - "@webpack-cli/info" "^2.0.2" - "@webpack-cli/serve" "^2.0.5" - colorette "^2.0.14" - commander "^10.0.1" - cross-spawn "^7.0.3" - envinfo "^7.7.3" - fastest-levenshtein "^1.0.12" - import-local "^3.0.2" - interpret "^3.1.1" - rechoir "^0.8.0" - webpack-merge "^5.7.3" - webpack-dev-middleware@^5.3.1: version "5.3.3" resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz#efae67c2793908e7311f1d9b06f2a08dcc97e51f" @@ -18803,14 +18729,6 @@ webpack-manifest-plugin@^4.1.1: tapable "^2.0.0" webpack-sources "^2.2.0" -webpack-merge@^5.7.3: - version "5.9.0" - resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-5.9.0.tgz#dc160a1c4cf512ceca515cc231669e9ddb133826" - integrity sha512-6NbRQw4+Sy50vYNTw7EyOn41OZItPiXB8GNv3INSoe3PSFaHJEz3SHTrYVaRm2LilNGnFUzh0FAwqPEmU/CwDg== - dependencies: - clone-deep "^4.0.1" - wildcard "^2.0.0" - webpack-sources@^2.2.0: version "2.3.1" resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-2.3.1.tgz#570de0af163949fe272233c2cefe1b56f74511fd" @@ -18824,7 +18742,7 @@ webpack-sources@^3.2.3: resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-3.2.3.tgz#2d4daab8451fd4b240cc27055ff6a0c2ccea0cde" integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w== -webpack@^5.64.4, webpack@^5.75.0: +webpack@^5.64.4: version "5.88.2" resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.88.2.tgz#f62b4b842f1c6ff580f3fcb2ed4f0b579f4c210e" integrity sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ== @@ -19000,11 +18918,6 @@ which@^2.0.1, which@^2.0.2: dependencies: isexe "^2.0.0" -wildcard@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/wildcard/-/wildcard-2.0.1.tgz#5ab10d02487198954836b6349f74fff961e10f67" - integrity sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ== - wonka@^4.0.14: version "4.0.15" resolved "https://registry.yarnpkg.com/wonka/-/wonka-4.0.15.tgz#9aa42046efa424565ab8f8f451fcca955bf80b89" @@ -19234,11 +19147,6 @@ yocto-queue@^0.1.0: resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== -yocto-queue@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-1.0.0.tgz#7f816433fb2cbc511ec8bf7d263c3b58a1a3c251" - integrity sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g== - zeed-dom@0.10.9, zeed-dom@^0.10.9: version "0.10.9" resolved "https://registry.yarnpkg.com/zeed-dom/-/zeed-dom-0.10.9.tgz#b3eb5d9b7cf1be17e1fb3a708379df5edce195be"