diff --git a/packages/core/src/components/Button/Button.tsx b/packages/core/src/components/Button/Button.tsx index 0cb73b5f37..1cbf3ab3f1 100644 --- a/packages/core/src/components/Button/Button.tsx +++ b/packages/core/src/components/Button/Button.tsx @@ -1,5 +1,5 @@ import { alpha, Button as BaseButton, ButtonProps as BaseButtonProps } from '@mui/material'; -import React from 'react'; +import React, { SyntheticEvent } from 'react'; import { useNavigate } from 'react-router-dom'; import styled from 'styled-components'; @@ -53,24 +53,57 @@ export default function Button(props: ButtonProps) { const navigate = useNavigate(); - function handleClick(...args) { - if (to) { - navigate(to); - } + const handleClick = React.useCallback( + (...args: any[]) => { + if (to) { + navigate(to); + } + + if (onClick) { + onClick(...args); + } + }, + [to, navigate, onClick], + ); - if (onClick) { - onClick(...args); + const onAuxClick = React.useMemo(() => { + if (!rest.href) { + return undefined; } - } + return (event: SyntheticEvent, ...restArgs: any[]) => { + event.preventDefault(); + handleClick(...restArgs); + }; + }, [rest.href, handleClick]); switch (color) { case 'danger': - return ; + return ( + + ); case 'primary': - return ; + return ( + + ); case 'secondary': - return ; + return ( + + ); default: - return ; + return ( + + ); } } diff --git a/packages/core/src/components/Link/Link.tsx b/packages/core/src/components/Link/Link.tsx index f4f88d64e8..4f3f6a6d11 100644 --- a/packages/core/src/components/Link/Link.tsx +++ b/packages/core/src/components/Link/Link.tsx @@ -29,19 +29,27 @@ export default function Link(props: Props) { }; function handleClick(event: SyntheticEvent) { + event.preventDefault(); + if (onClick) { - event.preventDefault(); event.stopPropagation(); onClick(event); return; } if (href && target === '_blank') { - event.preventDefault(); event.stopPropagation(); openExternal(href); } } - return ; + // `onAuxClick` is used to handle middle mouse click as well as other mouse buttons. + return ( + + ); } diff --git a/packages/core/src/components/MenuItem/MenuItem.tsx b/packages/core/src/components/MenuItem/MenuItem.tsx index 87d1125938..501f64a7c8 100644 --- a/packages/core/src/components/MenuItem/MenuItem.tsx +++ b/packages/core/src/components/MenuItem/MenuItem.tsx @@ -16,21 +16,34 @@ function MenuItem(props: MenuItemProps, ref: any) { const menuContext: MenuContextInterface | undefined = useContext(MenuContext); - async function handleClick(event: React.MouseEvent) { - event.stopPropagation(); - - if (close === true) { - menuContext?.close(event, 'menuItemClick'); + const handleClick = React.useCallback( + async (event: React.MouseEvent) => { + event.stopPropagation(); + + if (close === true) { + menuContext?.close(event, 'menuItemClick'); + } + + await onClick?.(event); + + if (close === 'after') { + menuContext?.close(event, 'menuItemClick'); + } + }, + [close, menuContext, onClick], + ); + + const onAuxClick = React.useMemo(() => { + if (!rest.href) { + return undefined; } + return (event: React.MouseEvent) => { + event.preventDefault(); + return handleClick(event); + }; + }, [rest.href, handleClick]); - await onClick?.(event); - - if (close === 'after') { - menuContext?.close(event, 'menuItemClick'); - } - } - - const item = ; + const item = ; if (tooltip) { return {item}; diff --git a/packages/gui/src/components/notification/NotificationAnnouncementDialog.tsx b/packages/gui/src/components/notification/NotificationAnnouncementDialog.tsx index 583139cef3..387af1c2b2 100644 --- a/packages/gui/src/components/notification/NotificationAnnouncementDialog.tsx +++ b/packages/gui/src/components/notification/NotificationAnnouncementDialog.tsx @@ -2,6 +2,7 @@ import { Flex, Link, DialogActions } from '@chia-network/core'; import { Trans } from '@lingui/macro'; import { Button, Dialog, DialogContent, DialogTitle, Typography } from '@mui/material'; import React from 'react'; +import isURL from 'validator/es/lib/isURL'; import useOpenUnsafeLink from '../../hooks/useOpenUnsafeLink'; @@ -15,17 +16,30 @@ export default function NotificationAnnouncementDialog(props: NotificationAnnoun const openUnsafeLink = useOpenUnsafeLink(); - function handleClose() { + const handleClose = React.useCallback(() => { onClose?.(false); - } + }, [onClose]); const message = 'message' in notification ? notification.message : undefined; - const url = 'url' in notification ? notification.url : undefined; + const url = 'url' in notification && typeof notification.url === 'string' ? notification.url : undefined; const from = 'from' in notification ? notification.from : undefined; - async function handleURLClick() { + const handleURLClick = React.useCallback(() => { + if (!url) { + return; + } openUnsafeLink(url); - } + }, [url, openUnsafeLink]); + + const urlLabel = React.useMemo(() => { + if (!url) { + return undefined; + } + if (!isURL(url)) { + return ##### Redacted for security reason #####; + } + return url; + }, [url]); return ( @@ -62,9 +76,7 @@ export default function NotificationAnnouncementDialog(props: NotificationAnnoun URL - - {url} - + {urlLabel} ) : null} diff --git a/packages/gui/src/electron/main.tsx b/packages/gui/src/electron/main.tsx index 0f80795d9e..5ef64d4e75 100644 --- a/packages/gui/src/electron/main.tsx +++ b/packages/gui/src/electron/main.tsx @@ -23,6 +23,7 @@ import React from 'react'; // import os from 'os'; import ReactDOMServer from 'react-dom/server'; import { ServerStyleSheet, StyleSheetManager } from 'styled-components'; +import isURL from 'validator/es/lib/isURL'; // handle setupevents as quickly as possible import '../config/env'; @@ -40,6 +41,16 @@ import { readAddressBook, saveAddressBook } from './addressBook'; import installDevTools from './installDevTools.dev'; import { readPrefs, savePrefs, migratePrefs } from './prefs'; +/** + * Open the given external protocol URL in the desktop’s default manner. + */ +function openExternal(urlLocal: string) { + if (!isURL(urlLocal, { protocols: ['http', 'https', 'ipfs'], require_protocol: true })) { + return; + } + shell.openExternal(urlLocal); +} + const isPlaywrightTesting = process.env.PLAYWRIGHT_TESTS === 'true'; const NET = 'mainnet'; @@ -111,7 +122,7 @@ function openAbout() { aboutWindow.loadURL(`data:text/html;charset=utf-8,${about}`); aboutWindow.webContents.setWindowOpenHandler((details) => { - shell.openExternal(details.url); + openExternal(details.url); return { action: 'deny' }; }); @@ -910,10 +921,3 @@ function getMenuTemplate() { return template; } - -/** - * Open the given external protocol URL in the desktop’s default manner. - */ -function openExternal(urlLocal) { - shell.openExternal(urlLocal); -} diff --git a/packages/gui/src/hooks/useOpenUnsafeLink.tsx b/packages/gui/src/hooks/useOpenUnsafeLink.tsx index bfafb6ec2c..3d6cabc93e 100644 --- a/packages/gui/src/hooks/useOpenUnsafeLink.tsx +++ b/packages/gui/src/hooks/useOpenUnsafeLink.tsx @@ -1,13 +1,42 @@ import { usePrefs } from '@chia-network/api-react'; -import { ConfirmDialog, CopyToClipboard, Flex, useOpenDialog, useOpenExternal } from '@chia-network/core'; +import { AlertDialog, ConfirmDialog, CopyToClipboard, Flex, useOpenDialog, useOpenExternal } from '@chia-network/core'; import { Trans } from '@lingui/macro'; import { Checkbox, FormControlLabel, InputAdornment, TextField, Typography } from '@mui/material'; import React from 'react'; +import isURL from 'validator/es/lib/isURL'; /* ========================================================================== */ const SuppressUnsafeLinkWarningLocalStorageKey = 'suppressUnsafeLinkWarning'; +/* ========================================================================== */ +type InvalidURLWarningDialogProps = { + url: string; +}; + +function InvalidURLWarningDialog(props: InvalidURLWarningDialogProps) { + const { url, ...rest } = props; + + return ( + Warning: Invalid URL}> + + + This type of the URL is not allowed to open for security reasons. + + URL} + value={url} + variant="filled" + InputProps={{ + readOnly: true, + }} + fullWidth + /> + + + ); +} + /* ========================================================================== */ type OpenUnsafeLinkConfirmationDialogProps = { @@ -78,6 +107,15 @@ export default function useOpenUnsafeLink() { async function openUnsafeLink(url: string) { let openUrl = false; + if (!url) { + return; + } + + if (!isURL(url)) { + await openDialog(); + return; + } + if (suppressUnsafeLinkWarning) { openUrl = true; } else { diff --git a/packages/gui/src/locales/ar-SA/messages.po b/packages/gui/src/locales/ar-SA/messages.po index 82b52e381e..ab5467c763 100644 --- a/packages/gui/src/locales/ar-SA/messages.po +++ b/packages/gui/src/locales/ar-SA/messages.po @@ -44,134 +44,134 @@ msgid "Would you like to transfer {count} NFTs to a new owner?" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "No" msgstr "لايوجد" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "Yes" msgstr "نعم" #. js-lingui-explicit-id -#: src/electron/main.tsx:511 +#: src/electron/main.tsx:522 msgid "Confirm" msgstr "تأكيد" #. js-lingui-explicit-id -#: src/electron/main.tsx:513 +#: src/electron/main.tsx:524 msgid "Are you sure you want to quit?" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:518 +#: src/electron/main.tsx:529 msgid "Keep service running in the background" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:636 -#: src/electron/main.tsx:844 +#: src/electron/main.tsx:647 +#: src/electron/main.tsx:855 msgid "File" msgstr "الملف" #. js-lingui-explicit-id -#: src/electron/main.tsx:644 +#: src/electron/main.tsx:655 msgid "Edit" msgstr "تعديل" #. js-lingui-explicit-id -#: src/electron/main.tsx:676 +#: src/electron/main.tsx:687 msgid "View" msgstr "عرض" #. js-lingui-explicit-id -#: src/electron/main.tsx:685 +#: src/electron/main.tsx:696 msgid "Developer" msgstr "المطور" #. js-lingui-explicit-id -#: src/electron/main.tsx:688 +#: src/electron/main.tsx:699 msgid "Developer Tools" msgstr "أدوات المطورين" #. js-lingui-explicit-id -#: src/electron/main.tsx:696 +#: src/electron/main.tsx:707 msgid "Trigger Desktop Notification" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:725 +#: src/electron/main.tsx:736 msgid "Full Screen" msgstr "ملء الشاشة" #. js-lingui-explicit-id -#: src/electron/main.tsx:732 +#: src/electron/main.tsx:743 msgid "Window" msgstr "نافذة" #. js-lingui-explicit-id -#: src/electron/main.tsx:746 +#: src/electron/main.tsx:757 msgid "Help" msgstr "المساعدة" #. js-lingui-explicit-id -#: src/electron/main.tsx:750 +#: src/electron/main.tsx:761 msgid "Chia Blockchain Wiki" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:756 +#: src/electron/main.tsx:767 msgid "Frequently Asked Questions" msgstr "الأسئلة المتكررة" #. js-lingui-explicit-id -#: src/electron/main.tsx:762 +#: src/electron/main.tsx:773 msgid "Release Notes" msgstr "كتابة ملاحظات" #. js-lingui-explicit-id -#: src/electron/main.tsx:768 +#: src/electron/main.tsx:779 msgid "Contribute on GitHub" msgstr "المساهمة في GitHub" #. js-lingui-explicit-id -#: src/electron/main.tsx:777 +#: src/electron/main.tsx:788 msgid "Report an Issue..." msgstr "بلغ عن خطأ..." #. js-lingui-explicit-id -#: src/electron/main.tsx:783 +#: src/electron/main.tsx:794 msgid "Chat on Discord" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:789 +#: src/electron/main.tsx:800 msgid "Follow on Twitter" msgstr "تابع على تويتر" #. js-lingui-explicit-id -#: src/electron/main.tsx:801 +#: src/electron/main.tsx:812 msgid "Chia" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:804 -#: src/electron/main.tsx:897 +#: src/electron/main.tsx:815 +#: src/electron/main.tsx:908 msgid "About Chia Blockchain" msgstr "معلومات عن Chia Blockchain" #. js-lingui-explicit-id -#: src/electron/main.tsx:810 +#: src/electron/main.tsx:821 msgid "Check for Updates..." msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:858 +#: src/electron/main.tsx:869 msgid "Speech" msgstr "خطاب" #. js-lingui-explicit-id -#: src/electron/main.tsx:903 +#: src/electron/main.tsx:914 msgid "Check for updates..." msgstr "" @@ -302,6 +302,10 @@ msgstr "" msgid "*Usually it takes seconds to complete restarting." msgstr "" +#: src/components/notification/NotificationAnnouncementDialog.tsx:39 +msgid "##### Redacted for security reason #####" +msgstr "" + #: src/components/plot/overview/PlotOverviewPlots.tsx:42 msgid "+ Add a Plot" msgstr "" @@ -364,7 +368,7 @@ msgstr "إجراء" #: src/components/farm/FarmFullNodeConnections.tsx:54 #: src/components/farm/FarmYourHarvesterNetwork.tsx:54 #: src/components/fullNode/FullNodeConnections.tsx:65 -#: src/components/nfts/NFTContextualActions.tsx:587 +#: src/components/nfts/NFTContextualActions.tsx:590 #: src/components/offers2/OfferIncomingTable.tsx:111 msgid "Actions" msgstr "الإجراءات" @@ -553,7 +557,7 @@ msgstr "" msgid "An NFT's provenance is a complete record of its ownership history. It provides a direct lineage that connects everyone who has owned the NFT, all the way back to the original artist. This helps to verify that the NFT is authentic." msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:35 +#: src/components/notification/NotificationAnnouncementDialog.tsx:49 msgid "Announcement" msgstr "" @@ -779,7 +783,7 @@ msgstr "تصفح" #: src/components/nfts/NFTBurnDialog.tsx:90 #: src/components/nfts/NFTBurnDialog.tsx:185 -#: src/components/nfts/NFTContextualActions.tsx:525 +#: src/components/nfts/NFTContextualActions.tsx:528 msgid "Burn" msgstr "" @@ -834,7 +838,7 @@ msgstr "" #: src/components/signVerify/VerifyMessage.tsx:271 #: src/components/vcs/VCEditTitle.tsx:76 #: src/components/vcs/VCRevokeDialog.tsx:28 -#: src/hooks/useOpenUnsafeLink.tsx:33 +#: src/hooks/useOpenUnsafeLink.tsx:62 msgid "Cancel" msgstr "إلغاء" @@ -996,7 +1000,7 @@ msgstr "" #: src/components/nfts/MultipleDownloadDialog.tsx:116 #: src/components/nfts/NFTMoveToProfileDialog.tsx:328 #: src/components/nfts/NFTTransferAction.tsx:166 -#: src/components/notification/NotificationAnnouncementDialog.tsx:75 +#: src/components/notification/NotificationAnnouncementDialog.tsx:87 #: src/components/notification/NotificationSendDialog.tsx:308 #: src/components/offers/ConfirmOfferCancellation.tsx:126 #: src/components/offers/OfferShareDialog.tsx:373 @@ -1569,7 +1573,7 @@ msgid "Display sharing options after creating a new offer" msgstr "" #: src/components/offers/OfferShareDialog.tsx:945 -#: src/hooks/useOpenUnsafeLink.tsx:64 +#: src/hooks/useOpenUnsafeLink.tsx:93 msgid "Do not show this dialog again" msgstr "" @@ -2112,7 +2116,7 @@ msgstr "" #~ msgid "Frequently Asked Questions" #~ msgstr "Frequently Asked Questions" -#: src/components/notification/NotificationAnnouncementDialog.tsx:44 +#: src/components/notification/NotificationAnnouncementDialog.tsx:58 msgid "From" msgstr "" @@ -2343,7 +2347,7 @@ msgstr "" #~ msgid "Hidden ({0})" #~ msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Hide" msgstr "" @@ -2834,7 +2838,7 @@ msgstr "" msgid "Memos" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:53 +#: src/components/notification/NotificationAnnouncementDialog.tsx:67 #: src/components/signVerify/SignMessage.tsx:200 #: src/components/signVerify/VerifyMessage.tsx:207 #: src/constants/WalletConnectCommands.tsx:184 @@ -3529,7 +3533,7 @@ msgstr "" msgid "Open in Browser" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:31 +#: src/hooks/useOpenUnsafeLink.tsx:60 msgid "Open Link" msgstr "" @@ -3720,7 +3724,7 @@ msgstr "" msgid "Pending removal" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:38 +#: src/hooks/useOpenUnsafeLink.tsx:67 msgid "Please check the following link to verify the site you are going to visit. Proceed at your own risk." msgstr "" @@ -4211,7 +4215,7 @@ msgstr "" msgid "Recursive Plot Scan" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:566 +#: src/components/nfts/NFTContextualActions.tsx:569 msgid "Refresh NFT data" msgstr "" @@ -4685,7 +4689,7 @@ msgstr "" #~ msgid "Share Privately" #~ msgstr "Share Privately" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Show" msgstr "" @@ -5229,6 +5233,10 @@ msgstr "" msgid "This table shows you the last time your farm attempted to win a block challenge. <0>Learn more" msgstr "هذا الجدول يظهر لك آخر مرة حاولت فيها مزرعتك الفوز بتحدي الكتلة. <0>اعرف المزيد" +#: src/hooks/useOpenUnsafeLink.tsx:24 +msgid "This type of the URL is not allowed to open for security reasons." +msgstr "" + #: src/components/settings/SettingsIntegration.tsx:398 msgid "This will reset all previously granted permissions across all Dapps that have been connected to. After resetting you will be asked to grant permission again." msgstr "" @@ -5579,9 +5587,10 @@ msgstr "" msgid "Uris" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:62 +#: src/components/notification/NotificationAnnouncementDialog.tsx:76 #: src/constants/WalletConnectCommands.tsx:964 -#: src/hooks/useOpenUnsafeLink.tsx:43 +#: src/hooks/useOpenUnsafeLink.tsx:27 +#: src/hooks/useOpenUnsafeLink.tsx:72 msgid "URL" msgstr "" @@ -5714,7 +5723,7 @@ msgstr "" #~ msgid "View on Hashgreen DEX" #~ msgstr "View on Hashgreen DEX" -#: src/components/nfts/NFTContextualActions.tsx:643 +#: src/components/nfts/NFTContextualActions.tsx:646 #: src/components/offers/OfferShareDialog.tsx:441 msgid "View on MintGarden" msgstr "" @@ -5727,7 +5736,7 @@ msgstr "" msgid "View on Offerpool" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:651 +#: src/components/nfts/NFTContextualActions.tsx:654 #: src/components/offers/OfferShareDialog.tsx:538 msgid "View on Spacescan.io" msgstr "" @@ -5866,6 +5875,10 @@ msgstr "" msgid "Warning Threshold" msgstr "" +#: src/hooks/useOpenUnsafeLink.tsx:21 +msgid "Warning: Invalid URL" +msgstr "" + #: src/components/app/AppVersionWarning.tsx:30 msgid "Warning: Mismatched Versions" msgstr "" @@ -5875,7 +5888,7 @@ msgstr "" msgid "Warning: Verify that the offered CAT asset IDs match the asset IDs of the tokens you expect to receive." msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:30 +#: src/hooks/useOpenUnsafeLink.tsx:59 msgid "Warning: You're about to visit a website" msgstr "" diff --git a/packages/gui/src/locales/be-BY/messages.po b/packages/gui/src/locales/be-BY/messages.po index ee4fe68a6e..806804502f 100644 --- a/packages/gui/src/locales/be-BY/messages.po +++ b/packages/gui/src/locales/be-BY/messages.po @@ -44,134 +44,134 @@ msgid "Would you like to transfer {count} NFTs to a new owner?" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "No" msgstr "Не" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "Yes" msgstr "Так" #. js-lingui-explicit-id -#: src/electron/main.tsx:511 +#: src/electron/main.tsx:522 msgid "Confirm" msgstr "Пацвердзіць" #. js-lingui-explicit-id -#: src/electron/main.tsx:513 +#: src/electron/main.tsx:524 msgid "Are you sure you want to quit?" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:518 +#: src/electron/main.tsx:529 msgid "Keep service running in the background" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:636 -#: src/electron/main.tsx:844 +#: src/electron/main.tsx:647 +#: src/electron/main.tsx:855 msgid "File" msgstr "Файл" #. js-lingui-explicit-id -#: src/electron/main.tsx:644 +#: src/electron/main.tsx:655 msgid "Edit" msgstr "Рэдагаваць" #. js-lingui-explicit-id -#: src/electron/main.tsx:676 +#: src/electron/main.tsx:687 msgid "View" msgstr "Выгляд" #. js-lingui-explicit-id -#: src/electron/main.tsx:685 +#: src/electron/main.tsx:696 msgid "Developer" msgstr "Распрацоўшчык" #. js-lingui-explicit-id -#: src/electron/main.tsx:688 +#: src/electron/main.tsx:699 msgid "Developer Tools" msgstr "Інструменты для распрацоўшчыкаў" #. js-lingui-explicit-id -#: src/electron/main.tsx:696 +#: src/electron/main.tsx:707 msgid "Trigger Desktop Notification" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:725 +#: src/electron/main.tsx:736 msgid "Full Screen" msgstr "На ўвесь экран" #. js-lingui-explicit-id -#: src/electron/main.tsx:732 +#: src/electron/main.tsx:743 msgid "Window" msgstr "Акно" #. js-lingui-explicit-id -#: src/electron/main.tsx:746 +#: src/electron/main.tsx:757 msgid "Help" msgstr "Даведка" #. js-lingui-explicit-id -#: src/electron/main.tsx:750 +#: src/electron/main.tsx:761 msgid "Chia Blockchain Wiki" msgstr "Вікі блокчэйна Chia" #. js-lingui-explicit-id -#: src/electron/main.tsx:756 +#: src/electron/main.tsx:767 msgid "Frequently Asked Questions" msgstr "Частыя пытанні" #. js-lingui-explicit-id -#: src/electron/main.tsx:762 +#: src/electron/main.tsx:773 msgid "Release Notes" msgstr "Заўвагі да выпуску" #. js-lingui-explicit-id -#: src/electron/main.tsx:768 +#: src/electron/main.tsx:779 msgid "Contribute on GitHub" msgstr "Дапамагчы ў распрацоўцы на GitHub" #. js-lingui-explicit-id -#: src/electron/main.tsx:777 +#: src/electron/main.tsx:788 msgid "Report an Issue..." msgstr "Паведаміць аб праблеме..." #. js-lingui-explicit-id -#: src/electron/main.tsx:783 +#: src/electron/main.tsx:794 msgid "Chat on Discord" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:789 +#: src/electron/main.tsx:800 msgid "Follow on Twitter" msgstr "Падпісацца ў Twitter" #. js-lingui-explicit-id -#: src/electron/main.tsx:801 +#: src/electron/main.tsx:812 msgid "Chia" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:804 -#: src/electron/main.tsx:897 +#: src/electron/main.tsx:815 +#: src/electron/main.tsx:908 msgid "About Chia Blockchain" msgstr "Аб праграме Chia Blockchain" #. js-lingui-explicit-id -#: src/electron/main.tsx:810 +#: src/electron/main.tsx:821 msgid "Check for Updates..." msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:858 +#: src/electron/main.tsx:869 msgid "Speech" msgstr "Маўленне" #. js-lingui-explicit-id -#: src/electron/main.tsx:903 +#: src/electron/main.tsx:914 msgid "Check for updates..." msgstr "" @@ -302,6 +302,10 @@ msgstr "" msgid "*Usually it takes seconds to complete restarting." msgstr "" +#: src/components/notification/NotificationAnnouncementDialog.tsx:39 +msgid "##### Redacted for security reason #####" +msgstr "" + #: src/components/plot/overview/PlotOverviewPlots.tsx:42 msgid "+ Add a Plot" msgstr "" @@ -364,7 +368,7 @@ msgstr "Дзеянне" #: src/components/farm/FarmFullNodeConnections.tsx:54 #: src/components/farm/FarmYourHarvesterNetwork.tsx:54 #: src/components/fullNode/FullNodeConnections.tsx:65 -#: src/components/nfts/NFTContextualActions.tsx:587 +#: src/components/nfts/NFTContextualActions.tsx:590 #: src/components/offers2/OfferIncomingTable.tsx:111 msgid "Actions" msgstr "Дзеянні" @@ -553,7 +557,7 @@ msgstr "" msgid "An NFT's provenance is a complete record of its ownership history. It provides a direct lineage that connects everyone who has owned the NFT, all the way back to the original artist. This helps to verify that the NFT is authentic." msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:35 +#: src/components/notification/NotificationAnnouncementDialog.tsx:49 msgid "Announcement" msgstr "" @@ -779,7 +783,7 @@ msgstr "Агляд" #: src/components/nfts/NFTBurnDialog.tsx:90 #: src/components/nfts/NFTBurnDialog.tsx:185 -#: src/components/nfts/NFTContextualActions.tsx:525 +#: src/components/nfts/NFTContextualActions.tsx:528 msgid "Burn" msgstr "" @@ -834,7 +838,7 @@ msgstr "" #: src/components/signVerify/VerifyMessage.tsx:271 #: src/components/vcs/VCEditTitle.tsx:76 #: src/components/vcs/VCRevokeDialog.tsx:28 -#: src/hooks/useOpenUnsafeLink.tsx:33 +#: src/hooks/useOpenUnsafeLink.tsx:62 msgid "Cancel" msgstr "Скасаваць" @@ -996,7 +1000,7 @@ msgstr "" #: src/components/nfts/MultipleDownloadDialog.tsx:116 #: src/components/nfts/NFTMoveToProfileDialog.tsx:328 #: src/components/nfts/NFTTransferAction.tsx:166 -#: src/components/notification/NotificationAnnouncementDialog.tsx:75 +#: src/components/notification/NotificationAnnouncementDialog.tsx:87 #: src/components/notification/NotificationSendDialog.tsx:308 #: src/components/offers/ConfirmOfferCancellation.tsx:126 #: src/components/offers/OfferShareDialog.tsx:373 @@ -1569,7 +1573,7 @@ msgid "Display sharing options after creating a new offer" msgstr "" #: src/components/offers/OfferShareDialog.tsx:945 -#: src/hooks/useOpenUnsafeLink.tsx:64 +#: src/hooks/useOpenUnsafeLink.tsx:93 msgid "Do not show this dialog again" msgstr "" @@ -2112,7 +2116,7 @@ msgstr "" #~ msgid "Frequently Asked Questions" #~ msgstr "Frequently Asked Questions" -#: src/components/notification/NotificationAnnouncementDialog.tsx:44 +#: src/components/notification/NotificationAnnouncementDialog.tsx:58 msgid "From" msgstr "" @@ -2343,7 +2347,7 @@ msgstr "" #~ msgid "Hidden ({0})" #~ msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Hide" msgstr "" @@ -2834,7 +2838,7 @@ msgstr "" msgid "Memos" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:53 +#: src/components/notification/NotificationAnnouncementDialog.tsx:67 #: src/components/signVerify/SignMessage.tsx:200 #: src/components/signVerify/VerifyMessage.tsx:207 #: src/constants/WalletConnectCommands.tsx:184 @@ -3529,7 +3533,7 @@ msgstr "" msgid "Open in Browser" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:31 +#: src/hooks/useOpenUnsafeLink.tsx:60 msgid "Open Link" msgstr "" @@ -3720,7 +3724,7 @@ msgstr "" msgid "Pending removal" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:38 +#: src/hooks/useOpenUnsafeLink.tsx:67 msgid "Please check the following link to verify the site you are going to visit. Proceed at your own risk." msgstr "" @@ -4211,7 +4215,7 @@ msgstr "" msgid "Recursive Plot Scan" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:566 +#: src/components/nfts/NFTContextualActions.tsx:569 msgid "Refresh NFT data" msgstr "" @@ -4685,7 +4689,7 @@ msgstr "" #~ msgid "Share Privately" #~ msgstr "Share Privately" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Show" msgstr "" @@ -5229,6 +5233,10 @@ msgstr "" msgid "This table shows you the last time your farm attempted to win a block challenge. <0>Learn more" msgstr "У гэтай табліцы паказваецца, калі ваша ферма апошнім разам спрабавала выйграць выпрабаванне блока. <0>Даведацца больш" +#: src/hooks/useOpenUnsafeLink.tsx:24 +msgid "This type of the URL is not allowed to open for security reasons." +msgstr "" + #: src/components/settings/SettingsIntegration.tsx:398 msgid "This will reset all previously granted permissions across all Dapps that have been connected to. After resetting you will be asked to grant permission again." msgstr "" @@ -5579,9 +5587,10 @@ msgstr "" msgid "Uris" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:62 +#: src/components/notification/NotificationAnnouncementDialog.tsx:76 #: src/constants/WalletConnectCommands.tsx:964 -#: src/hooks/useOpenUnsafeLink.tsx:43 +#: src/hooks/useOpenUnsafeLink.tsx:27 +#: src/hooks/useOpenUnsafeLink.tsx:72 msgid "URL" msgstr "" @@ -5714,7 +5723,7 @@ msgstr "" #~ msgid "View on Hashgreen DEX" #~ msgstr "View on Hashgreen DEX" -#: src/components/nfts/NFTContextualActions.tsx:643 +#: src/components/nfts/NFTContextualActions.tsx:646 #: src/components/offers/OfferShareDialog.tsx:441 msgid "View on MintGarden" msgstr "" @@ -5727,7 +5736,7 @@ msgstr "" msgid "View on Offerpool" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:651 +#: src/components/nfts/NFTContextualActions.tsx:654 #: src/components/offers/OfferShareDialog.tsx:538 msgid "View on Spacescan.io" msgstr "" @@ -5866,6 +5875,10 @@ msgstr "" msgid "Warning Threshold" msgstr "" +#: src/hooks/useOpenUnsafeLink.tsx:21 +msgid "Warning: Invalid URL" +msgstr "" + #: src/components/app/AppVersionWarning.tsx:30 msgid "Warning: Mismatched Versions" msgstr "" @@ -5875,7 +5888,7 @@ msgstr "" msgid "Warning: Verify that the offered CAT asset IDs match the asset IDs of the tokens you expect to receive." msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:30 +#: src/hooks/useOpenUnsafeLink.tsx:59 msgid "Warning: You're about to visit a website" msgstr "" diff --git a/packages/gui/src/locales/bg-BG/messages.po b/packages/gui/src/locales/bg-BG/messages.po index 895e2121bc..acea4c88ff 100644 --- a/packages/gui/src/locales/bg-BG/messages.po +++ b/packages/gui/src/locales/bg-BG/messages.po @@ -44,134 +44,134 @@ msgid "Would you like to transfer {count} NFTs to a new owner?" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "No" msgstr "Не" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "Yes" msgstr "Да" #. js-lingui-explicit-id -#: src/electron/main.tsx:511 +#: src/electron/main.tsx:522 msgid "Confirm" msgstr "Потвърждаване" #. js-lingui-explicit-id -#: src/electron/main.tsx:513 +#: src/electron/main.tsx:524 msgid "Are you sure you want to quit?" msgstr "Сигурни ли сте, че искате да излезете?" #. js-lingui-explicit-id -#: src/electron/main.tsx:518 +#: src/electron/main.tsx:529 msgid "Keep service running in the background" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:636 -#: src/electron/main.tsx:844 +#: src/electron/main.tsx:647 +#: src/electron/main.tsx:855 msgid "File" msgstr "Файл" #. js-lingui-explicit-id -#: src/electron/main.tsx:644 +#: src/electron/main.tsx:655 msgid "Edit" msgstr "Редактиране" #. js-lingui-explicit-id -#: src/electron/main.tsx:676 +#: src/electron/main.tsx:687 msgid "View" msgstr "Виж" #. js-lingui-explicit-id -#: src/electron/main.tsx:685 +#: src/electron/main.tsx:696 msgid "Developer" msgstr "Разработчик" #. js-lingui-explicit-id -#: src/electron/main.tsx:688 +#: src/electron/main.tsx:699 msgid "Developer Tools" msgstr "Инструменти за разработчици" #. js-lingui-explicit-id -#: src/electron/main.tsx:696 +#: src/electron/main.tsx:707 msgid "Trigger Desktop Notification" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:725 +#: src/electron/main.tsx:736 msgid "Full Screen" msgstr "Пълен екран" #. js-lingui-explicit-id -#: src/electron/main.tsx:732 +#: src/electron/main.tsx:743 msgid "Window" msgstr "Прозорец" #. js-lingui-explicit-id -#: src/electron/main.tsx:746 +#: src/electron/main.tsx:757 msgid "Help" msgstr "Помощ" #. js-lingui-explicit-id -#: src/electron/main.tsx:750 +#: src/electron/main.tsx:761 msgid "Chia Blockchain Wiki" msgstr "Чиа блокчейн Wiki" #. js-lingui-explicit-id -#: src/electron/main.tsx:756 +#: src/electron/main.tsx:767 msgid "Frequently Asked Questions" msgstr "Често задавани въпроси" #. js-lingui-explicit-id -#: src/electron/main.tsx:762 +#: src/electron/main.tsx:773 msgid "Release Notes" msgstr "Списък с промени" #. js-lingui-explicit-id -#: src/electron/main.tsx:768 +#: src/electron/main.tsx:779 msgid "Contribute on GitHub" msgstr "Помогни в GitHub" #. js-lingui-explicit-id -#: src/electron/main.tsx:777 +#: src/electron/main.tsx:788 msgid "Report an Issue..." msgstr "Съобщете за проблем..." #. js-lingui-explicit-id -#: src/electron/main.tsx:783 +#: src/electron/main.tsx:794 msgid "Chat on Discord" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:789 +#: src/electron/main.tsx:800 msgid "Follow on Twitter" msgstr "Последвай в Twitter" #. js-lingui-explicit-id -#: src/electron/main.tsx:801 +#: src/electron/main.tsx:812 msgid "Chia" msgstr "Чиа" #. js-lingui-explicit-id -#: src/electron/main.tsx:804 -#: src/electron/main.tsx:897 +#: src/electron/main.tsx:815 +#: src/electron/main.tsx:908 msgid "About Chia Blockchain" msgstr "Относно Чиа Блокчейн" #. js-lingui-explicit-id -#: src/electron/main.tsx:810 +#: src/electron/main.tsx:821 msgid "Check for Updates..." msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:858 +#: src/electron/main.tsx:869 msgid "Speech" msgstr "Реч" #. js-lingui-explicit-id -#: src/electron/main.tsx:903 +#: src/electron/main.tsx:914 msgid "Check for updates..." msgstr "" @@ -302,6 +302,10 @@ msgstr "" msgid "*Usually it takes seconds to complete restarting." msgstr "" +#: src/components/notification/NotificationAnnouncementDialog.tsx:39 +msgid "##### Redacted for security reason #####" +msgstr "" + #: src/components/plot/overview/PlotOverviewPlots.tsx:42 msgid "+ Add a Plot" msgstr "" @@ -364,7 +368,7 @@ msgstr "Изпълни" #: src/components/farm/FarmFullNodeConnections.tsx:54 #: src/components/farm/FarmYourHarvesterNetwork.tsx:54 #: src/components/fullNode/FullNodeConnections.tsx:65 -#: src/components/nfts/NFTContextualActions.tsx:587 +#: src/components/nfts/NFTContextualActions.tsx:590 #: src/components/offers2/OfferIncomingTable.tsx:111 msgid "Actions" msgstr "Действие" @@ -553,7 +557,7 @@ msgstr "" msgid "An NFT's provenance is a complete record of its ownership history. It provides a direct lineage that connects everyone who has owned the NFT, all the way back to the original artist. This helps to verify that the NFT is authentic." msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:35 +#: src/components/notification/NotificationAnnouncementDialog.tsx:49 msgid "Announcement" msgstr "" @@ -779,7 +783,7 @@ msgstr "Преглед" #: src/components/nfts/NFTBurnDialog.tsx:90 #: src/components/nfts/NFTBurnDialog.tsx:185 -#: src/components/nfts/NFTContextualActions.tsx:525 +#: src/components/nfts/NFTContextualActions.tsx:528 msgid "Burn" msgstr "" @@ -834,7 +838,7 @@ msgstr "" #: src/components/signVerify/VerifyMessage.tsx:271 #: src/components/vcs/VCEditTitle.tsx:76 #: src/components/vcs/VCRevokeDialog.tsx:28 -#: src/hooks/useOpenUnsafeLink.tsx:33 +#: src/hooks/useOpenUnsafeLink.tsx:62 msgid "Cancel" msgstr "Отмяна" @@ -996,7 +1000,7 @@ msgstr "" #: src/components/nfts/MultipleDownloadDialog.tsx:116 #: src/components/nfts/NFTMoveToProfileDialog.tsx:328 #: src/components/nfts/NFTTransferAction.tsx:166 -#: src/components/notification/NotificationAnnouncementDialog.tsx:75 +#: src/components/notification/NotificationAnnouncementDialog.tsx:87 #: src/components/notification/NotificationSendDialog.tsx:308 #: src/components/offers/ConfirmOfferCancellation.tsx:126 #: src/components/offers/OfferShareDialog.tsx:373 @@ -1569,7 +1573,7 @@ msgid "Display sharing options after creating a new offer" msgstr "" #: src/components/offers/OfferShareDialog.tsx:945 -#: src/hooks/useOpenUnsafeLink.tsx:64 +#: src/hooks/useOpenUnsafeLink.tsx:93 msgid "Do not show this dialog again" msgstr "" @@ -2112,7 +2116,7 @@ msgstr "" #~ msgid "Frequently Asked Questions" #~ msgstr "Frequently Asked Questions" -#: src/components/notification/NotificationAnnouncementDialog.tsx:44 +#: src/components/notification/NotificationAnnouncementDialog.tsx:58 msgid "From" msgstr "" @@ -2343,7 +2347,7 @@ msgstr "" #~ msgid "Hidden ({0})" #~ msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Hide" msgstr "" @@ -2834,7 +2838,7 @@ msgstr "" msgid "Memos" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:53 +#: src/components/notification/NotificationAnnouncementDialog.tsx:67 #: src/components/signVerify/SignMessage.tsx:200 #: src/components/signVerify/VerifyMessage.tsx:207 #: src/constants/WalletConnectCommands.tsx:184 @@ -3529,7 +3533,7 @@ msgstr "" msgid "Open in Browser" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:31 +#: src/hooks/useOpenUnsafeLink.tsx:60 msgid "Open Link" msgstr "" @@ -3720,7 +3724,7 @@ msgstr "" msgid "Pending removal" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:38 +#: src/hooks/useOpenUnsafeLink.tsx:67 msgid "Please check the following link to verify the site you are going to visit. Proceed at your own risk." msgstr "" @@ -4211,7 +4215,7 @@ msgstr "" msgid "Recursive Plot Scan" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:566 +#: src/components/nfts/NFTContextualActions.tsx:569 msgid "Refresh NFT data" msgstr "" @@ -4685,7 +4689,7 @@ msgstr "" #~ msgid "Share Privately" #~ msgstr "Share Privately" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Show" msgstr "" @@ -5229,6 +5233,10 @@ msgstr "" msgid "This table shows you the last time your farm attempted to win a block challenge. <0>Learn more" msgstr "" +#: src/hooks/useOpenUnsafeLink.tsx:24 +msgid "This type of the URL is not allowed to open for security reasons." +msgstr "" + #: src/components/settings/SettingsIntegration.tsx:398 msgid "This will reset all previously granted permissions across all Dapps that have been connected to. After resetting you will be asked to grant permission again." msgstr "" @@ -5579,9 +5587,10 @@ msgstr "" msgid "Uris" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:62 +#: src/components/notification/NotificationAnnouncementDialog.tsx:76 #: src/constants/WalletConnectCommands.tsx:964 -#: src/hooks/useOpenUnsafeLink.tsx:43 +#: src/hooks/useOpenUnsafeLink.tsx:27 +#: src/hooks/useOpenUnsafeLink.tsx:72 msgid "URL" msgstr "" @@ -5714,7 +5723,7 @@ msgstr "" #~ msgid "View on Hashgreen DEX" #~ msgstr "View on Hashgreen DEX" -#: src/components/nfts/NFTContextualActions.tsx:643 +#: src/components/nfts/NFTContextualActions.tsx:646 #: src/components/offers/OfferShareDialog.tsx:441 msgid "View on MintGarden" msgstr "" @@ -5727,7 +5736,7 @@ msgstr "" msgid "View on Offerpool" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:651 +#: src/components/nfts/NFTContextualActions.tsx:654 #: src/components/offers/OfferShareDialog.tsx:538 msgid "View on Spacescan.io" msgstr "" @@ -5866,6 +5875,10 @@ msgstr "" msgid "Warning Threshold" msgstr "" +#: src/hooks/useOpenUnsafeLink.tsx:21 +msgid "Warning: Invalid URL" +msgstr "" + #: src/components/app/AppVersionWarning.tsx:30 msgid "Warning: Mismatched Versions" msgstr "" @@ -5875,7 +5888,7 @@ msgstr "" msgid "Warning: Verify that the offered CAT asset IDs match the asset IDs of the tokens you expect to receive." msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:30 +#: src/hooks/useOpenUnsafeLink.tsx:59 msgid "Warning: You're about to visit a website" msgstr "" diff --git a/packages/gui/src/locales/ca-ES/messages.po b/packages/gui/src/locales/ca-ES/messages.po index d78ecd2875..3cdf84ec92 100644 --- a/packages/gui/src/locales/ca-ES/messages.po +++ b/packages/gui/src/locales/ca-ES/messages.po @@ -44,134 +44,134 @@ msgid "Would you like to transfer {count} NFTs to a new owner?" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "No" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "Yes" msgstr "Sí" #. js-lingui-explicit-id -#: src/electron/main.tsx:511 +#: src/electron/main.tsx:522 msgid "Confirm" msgstr "Confirmar" #. js-lingui-explicit-id -#: src/electron/main.tsx:513 +#: src/electron/main.tsx:524 msgid "Are you sure you want to quit?" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:518 +#: src/electron/main.tsx:529 msgid "Keep service running in the background" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:636 -#: src/electron/main.tsx:844 +#: src/electron/main.tsx:647 +#: src/electron/main.tsx:855 msgid "File" msgstr "Fitxer" #. js-lingui-explicit-id -#: src/electron/main.tsx:644 +#: src/electron/main.tsx:655 msgid "Edit" msgstr "Editar" #. js-lingui-explicit-id -#: src/electron/main.tsx:676 +#: src/electron/main.tsx:687 msgid "View" msgstr "Veure" #. js-lingui-explicit-id -#: src/electron/main.tsx:685 +#: src/electron/main.tsx:696 msgid "Developer" msgstr "Desenvolupador" #. js-lingui-explicit-id -#: src/electron/main.tsx:688 +#: src/electron/main.tsx:699 msgid "Developer Tools" msgstr "Eines de desenvolupament" #. js-lingui-explicit-id -#: src/electron/main.tsx:696 +#: src/electron/main.tsx:707 msgid "Trigger Desktop Notification" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:725 +#: src/electron/main.tsx:736 msgid "Full Screen" msgstr "Pantalla completa" #. js-lingui-explicit-id -#: src/electron/main.tsx:732 +#: src/electron/main.tsx:743 msgid "Window" msgstr "Finestra" #. js-lingui-explicit-id -#: src/electron/main.tsx:746 +#: src/electron/main.tsx:757 msgid "Help" msgstr "Ajuda" #. js-lingui-explicit-id -#: src/electron/main.tsx:750 +#: src/electron/main.tsx:761 msgid "Chia Blockchain Wiki" msgstr "Wiki de la Cadena de Blocs de Chia" #. js-lingui-explicit-id -#: src/electron/main.tsx:756 +#: src/electron/main.tsx:767 msgid "Frequently Asked Questions" msgstr "Preguntes Freqüents" #. js-lingui-explicit-id -#: src/electron/main.tsx:762 +#: src/electron/main.tsx:773 msgid "Release Notes" msgstr "Notes de la versió" #. js-lingui-explicit-id -#: src/electron/main.tsx:768 +#: src/electron/main.tsx:779 msgid "Contribute on GitHub" msgstr "Contribueix a GitHub" #. js-lingui-explicit-id -#: src/electron/main.tsx:777 +#: src/electron/main.tsx:788 msgid "Report an Issue..." msgstr "Informa d'un problema..." #. js-lingui-explicit-id -#: src/electron/main.tsx:783 +#: src/electron/main.tsx:794 msgid "Chat on Discord" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:789 +#: src/electron/main.tsx:800 msgid "Follow on Twitter" msgstr "Segueix a Twitter" #. js-lingui-explicit-id -#: src/electron/main.tsx:801 +#: src/electron/main.tsx:812 msgid "Chia" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:804 -#: src/electron/main.tsx:897 +#: src/electron/main.tsx:815 +#: src/electron/main.tsx:908 msgid "About Chia Blockchain" msgstr "Sobre la cadena de blocs de Chia" #. js-lingui-explicit-id -#: src/electron/main.tsx:810 +#: src/electron/main.tsx:821 msgid "Check for Updates..." msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:858 +#: src/electron/main.tsx:869 msgid "Speech" msgstr "Parlar" #. js-lingui-explicit-id -#: src/electron/main.tsx:903 +#: src/electron/main.tsx:914 msgid "Check for updates..." msgstr "" @@ -302,6 +302,10 @@ msgstr "" msgid "*Usually it takes seconds to complete restarting." msgstr "" +#: src/components/notification/NotificationAnnouncementDialog.tsx:39 +msgid "##### Redacted for security reason #####" +msgstr "" + #: src/components/plot/overview/PlotOverviewPlots.tsx:42 msgid "+ Add a Plot" msgstr "" @@ -364,7 +368,7 @@ msgstr "Acció" #: src/components/farm/FarmFullNodeConnections.tsx:54 #: src/components/farm/FarmYourHarvesterNetwork.tsx:54 #: src/components/fullNode/FullNodeConnections.tsx:65 -#: src/components/nfts/NFTContextualActions.tsx:587 +#: src/components/nfts/NFTContextualActions.tsx:590 #: src/components/offers2/OfferIncomingTable.tsx:111 msgid "Actions" msgstr "Accions" @@ -553,7 +557,7 @@ msgstr "" msgid "An NFT's provenance is a complete record of its ownership history. It provides a direct lineage that connects everyone who has owned the NFT, all the way back to the original artist. This helps to verify that the NFT is authentic." msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:35 +#: src/components/notification/NotificationAnnouncementDialog.tsx:49 msgid "Announcement" msgstr "" @@ -779,7 +783,7 @@ msgstr "Navegar" #: src/components/nfts/NFTBurnDialog.tsx:90 #: src/components/nfts/NFTBurnDialog.tsx:185 -#: src/components/nfts/NFTContextualActions.tsx:525 +#: src/components/nfts/NFTContextualActions.tsx:528 msgid "Burn" msgstr "" @@ -834,7 +838,7 @@ msgstr "" #: src/components/signVerify/VerifyMessage.tsx:271 #: src/components/vcs/VCEditTitle.tsx:76 #: src/components/vcs/VCRevokeDialog.tsx:28 -#: src/hooks/useOpenUnsafeLink.tsx:33 +#: src/hooks/useOpenUnsafeLink.tsx:62 msgid "Cancel" msgstr "Cancel·lar" @@ -996,7 +1000,7 @@ msgstr "" #: src/components/nfts/MultipleDownloadDialog.tsx:116 #: src/components/nfts/NFTMoveToProfileDialog.tsx:328 #: src/components/nfts/NFTTransferAction.tsx:166 -#: src/components/notification/NotificationAnnouncementDialog.tsx:75 +#: src/components/notification/NotificationAnnouncementDialog.tsx:87 #: src/components/notification/NotificationSendDialog.tsx:308 #: src/components/offers/ConfirmOfferCancellation.tsx:126 #: src/components/offers/OfferShareDialog.tsx:373 @@ -1569,7 +1573,7 @@ msgid "Display sharing options after creating a new offer" msgstr "" #: src/components/offers/OfferShareDialog.tsx:945 -#: src/hooks/useOpenUnsafeLink.tsx:64 +#: src/hooks/useOpenUnsafeLink.tsx:93 msgid "Do not show this dialog again" msgstr "" @@ -2112,7 +2116,7 @@ msgstr "" #~ msgid "Frequently Asked Questions" #~ msgstr "Frequently Asked Questions" -#: src/components/notification/NotificationAnnouncementDialog.tsx:44 +#: src/components/notification/NotificationAnnouncementDialog.tsx:58 msgid "From" msgstr "" @@ -2343,7 +2347,7 @@ msgstr "" #~ msgid "Hidden ({0})" #~ msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Hide" msgstr "" @@ -2834,7 +2838,7 @@ msgstr "" msgid "Memos" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:53 +#: src/components/notification/NotificationAnnouncementDialog.tsx:67 #: src/components/signVerify/SignMessage.tsx:200 #: src/components/signVerify/VerifyMessage.tsx:207 #: src/constants/WalletConnectCommands.tsx:184 @@ -3529,7 +3533,7 @@ msgstr "" msgid "Open in Browser" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:31 +#: src/hooks/useOpenUnsafeLink.tsx:60 msgid "Open Link" msgstr "" @@ -3720,7 +3724,7 @@ msgstr "" msgid "Pending removal" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:38 +#: src/hooks/useOpenUnsafeLink.tsx:67 msgid "Please check the following link to verify the site you are going to visit. Proceed at your own risk." msgstr "" @@ -4211,7 +4215,7 @@ msgstr "" msgid "Recursive Plot Scan" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:566 +#: src/components/nfts/NFTContextualActions.tsx:569 msgid "Refresh NFT data" msgstr "" @@ -4685,7 +4689,7 @@ msgstr "" #~ msgid "Share Privately" #~ msgstr "Share Privately" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Show" msgstr "" @@ -5229,6 +5233,10 @@ msgstr "" msgid "This table shows you the last time your farm attempted to win a block challenge. <0>Learn more" msgstr "Aquesta taula mostra l'última vegada que el teu cultiu va intentar guanyar un repte de blocs. <0>Més informació" +#: src/hooks/useOpenUnsafeLink.tsx:24 +msgid "This type of the URL is not allowed to open for security reasons." +msgstr "" + #: src/components/settings/SettingsIntegration.tsx:398 msgid "This will reset all previously granted permissions across all Dapps that have been connected to. After resetting you will be asked to grant permission again." msgstr "" @@ -5579,9 +5587,10 @@ msgstr "" msgid "Uris" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:62 +#: src/components/notification/NotificationAnnouncementDialog.tsx:76 #: src/constants/WalletConnectCommands.tsx:964 -#: src/hooks/useOpenUnsafeLink.tsx:43 +#: src/hooks/useOpenUnsafeLink.tsx:27 +#: src/hooks/useOpenUnsafeLink.tsx:72 msgid "URL" msgstr "" @@ -5714,7 +5723,7 @@ msgstr "" #~ msgid "View on Hashgreen DEX" #~ msgstr "View on Hashgreen DEX" -#: src/components/nfts/NFTContextualActions.tsx:643 +#: src/components/nfts/NFTContextualActions.tsx:646 #: src/components/offers/OfferShareDialog.tsx:441 msgid "View on MintGarden" msgstr "" @@ -5727,7 +5736,7 @@ msgstr "" msgid "View on Offerpool" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:651 +#: src/components/nfts/NFTContextualActions.tsx:654 #: src/components/offers/OfferShareDialog.tsx:538 msgid "View on Spacescan.io" msgstr "" @@ -5866,6 +5875,10 @@ msgstr "" msgid "Warning Threshold" msgstr "" +#: src/hooks/useOpenUnsafeLink.tsx:21 +msgid "Warning: Invalid URL" +msgstr "" + #: src/components/app/AppVersionWarning.tsx:30 msgid "Warning: Mismatched Versions" msgstr "" @@ -5875,7 +5888,7 @@ msgstr "" msgid "Warning: Verify that the offered CAT asset IDs match the asset IDs of the tokens you expect to receive." msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:30 +#: src/hooks/useOpenUnsafeLink.tsx:59 msgid "Warning: You're about to visit a website" msgstr "" diff --git a/packages/gui/src/locales/cs-CZ/messages.po b/packages/gui/src/locales/cs-CZ/messages.po index 97fec4f3f9..72b0eec2dc 100644 --- a/packages/gui/src/locales/cs-CZ/messages.po +++ b/packages/gui/src/locales/cs-CZ/messages.po @@ -44,134 +44,134 @@ msgid "Would you like to transfer {count} NFTs to a new owner?" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "No" msgstr "Ne" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "Yes" msgstr "Ano" #. js-lingui-explicit-id -#: src/electron/main.tsx:511 +#: src/electron/main.tsx:522 msgid "Confirm" msgstr "Potvrdit" #. js-lingui-explicit-id -#: src/electron/main.tsx:513 +#: src/electron/main.tsx:524 msgid "Are you sure you want to quit?" msgstr "Opravdu chcete skončit?" #. js-lingui-explicit-id -#: src/electron/main.tsx:518 +#: src/electron/main.tsx:529 msgid "Keep service running in the background" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:636 -#: src/electron/main.tsx:844 +#: src/electron/main.tsx:647 +#: src/electron/main.tsx:855 msgid "File" msgstr "Soubor" #. js-lingui-explicit-id -#: src/electron/main.tsx:644 +#: src/electron/main.tsx:655 msgid "Edit" msgstr "Upravit" #. js-lingui-explicit-id -#: src/electron/main.tsx:676 +#: src/electron/main.tsx:687 msgid "View" msgstr "Zobrazení" #. js-lingui-explicit-id -#: src/electron/main.tsx:685 +#: src/electron/main.tsx:696 msgid "Developer" msgstr "Vývojář" #. js-lingui-explicit-id -#: src/electron/main.tsx:688 +#: src/electron/main.tsx:699 msgid "Developer Tools" msgstr "Vývojářské nástroje" #. js-lingui-explicit-id -#: src/electron/main.tsx:696 +#: src/electron/main.tsx:707 msgid "Trigger Desktop Notification" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:725 +#: src/electron/main.tsx:736 msgid "Full Screen" msgstr "Celá obrazovka" #. js-lingui-explicit-id -#: src/electron/main.tsx:732 +#: src/electron/main.tsx:743 msgid "Window" msgstr "Okno" #. js-lingui-explicit-id -#: src/electron/main.tsx:746 +#: src/electron/main.tsx:757 msgid "Help" msgstr "Nápověda" #. js-lingui-explicit-id -#: src/electron/main.tsx:750 +#: src/electron/main.tsx:761 msgid "Chia Blockchain Wiki" msgstr "Chia Blockchain Wiki" #. js-lingui-explicit-id -#: src/electron/main.tsx:756 +#: src/electron/main.tsx:767 msgid "Frequently Asked Questions" msgstr "Často kladené otázky" #. js-lingui-explicit-id -#: src/electron/main.tsx:762 +#: src/electron/main.tsx:773 msgid "Release Notes" msgstr "Poznámky k vydání" #. js-lingui-explicit-id -#: src/electron/main.tsx:768 +#: src/electron/main.tsx:779 msgid "Contribute on GitHub" msgstr "Pomoci s vývojem na GitHubu" #. js-lingui-explicit-id -#: src/electron/main.tsx:777 +#: src/electron/main.tsx:788 msgid "Report an Issue..." msgstr "Nahlásit chybu..." #. js-lingui-explicit-id -#: src/electron/main.tsx:783 +#: src/electron/main.tsx:794 msgid "Chat on Discord" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:789 +#: src/electron/main.tsx:800 msgid "Follow on Twitter" msgstr "Sledovat na Twitteru" #. js-lingui-explicit-id -#: src/electron/main.tsx:801 +#: src/electron/main.tsx:812 msgid "Chia" msgstr "Chia" #. js-lingui-explicit-id -#: src/electron/main.tsx:804 -#: src/electron/main.tsx:897 +#: src/electron/main.tsx:815 +#: src/electron/main.tsx:908 msgid "About Chia Blockchain" msgstr "O Chia Blockchainu" #. js-lingui-explicit-id -#: src/electron/main.tsx:810 +#: src/electron/main.tsx:821 msgid "Check for Updates..." msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:858 +#: src/electron/main.tsx:869 msgid "Speech" msgstr "Řeč" #. js-lingui-explicit-id -#: src/electron/main.tsx:903 +#: src/electron/main.tsx:914 msgid "Check for updates..." msgstr "" @@ -302,6 +302,10 @@ msgstr "" msgid "*Usually it takes seconds to complete restarting." msgstr "" +#: src/components/notification/NotificationAnnouncementDialog.tsx:39 +msgid "##### Redacted for security reason #####" +msgstr "" + #: src/components/plot/overview/PlotOverviewPlots.tsx:42 msgid "+ Add a Plot" msgstr "+ Přidat Pole" @@ -364,7 +368,7 @@ msgstr "Akce" #: src/components/farm/FarmFullNodeConnections.tsx:54 #: src/components/farm/FarmYourHarvesterNetwork.tsx:54 #: src/components/fullNode/FullNodeConnections.tsx:65 -#: src/components/nfts/NFTContextualActions.tsx:587 +#: src/components/nfts/NFTContextualActions.tsx:590 #: src/components/offers2/OfferIncomingTable.tsx:111 msgid "Actions" msgstr "Akce" @@ -553,7 +557,7 @@ msgstr "" msgid "An NFT's provenance is a complete record of its ownership history. It provides a direct lineage that connects everyone who has owned the NFT, all the way back to the original artist. This helps to verify that the NFT is authentic." msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:35 +#: src/components/notification/NotificationAnnouncementDialog.tsx:49 msgid "Announcement" msgstr "" @@ -779,7 +783,7 @@ msgstr "Procházet" #: src/components/nfts/NFTBurnDialog.tsx:90 #: src/components/nfts/NFTBurnDialog.tsx:185 -#: src/components/nfts/NFTContextualActions.tsx:525 +#: src/components/nfts/NFTContextualActions.tsx:528 msgid "Burn" msgstr "" @@ -834,7 +838,7 @@ msgstr "Velikost cache (GB)" #: src/components/signVerify/VerifyMessage.tsx:271 #: src/components/vcs/VCEditTitle.tsx:76 #: src/components/vcs/VCRevokeDialog.tsx:28 -#: src/hooks/useOpenUnsafeLink.tsx:33 +#: src/hooks/useOpenUnsafeLink.tsx:62 msgid "Cancel" msgstr "Zrušit" @@ -996,7 +1000,7 @@ msgstr "" #: src/components/nfts/MultipleDownloadDialog.tsx:116 #: src/components/nfts/NFTMoveToProfileDialog.tsx:328 #: src/components/nfts/NFTTransferAction.tsx:166 -#: src/components/notification/NotificationAnnouncementDialog.tsx:75 +#: src/components/notification/NotificationAnnouncementDialog.tsx:87 #: src/components/notification/NotificationSendDialog.tsx:308 #: src/components/offers/ConfirmOfferCancellation.tsx:126 #: src/components/offers/OfferShareDialog.tsx:373 @@ -1569,7 +1573,7 @@ msgid "Display sharing options after creating a new offer" msgstr "" #: src/components/offers/OfferShareDialog.tsx:945 -#: src/hooks/useOpenUnsafeLink.tsx:64 +#: src/hooks/useOpenUnsafeLink.tsx:93 msgid "Do not show this dialog again" msgstr "" @@ -2112,7 +2116,7 @@ msgstr "" #~ msgid "Frequently Asked Questions" #~ msgstr "Frequently Asked Questions" -#: src/components/notification/NotificationAnnouncementDialog.tsx:44 +#: src/components/notification/NotificationAnnouncementDialog.tsx:58 msgid "From" msgstr "" @@ -2343,7 +2347,7 @@ msgstr "" #~ msgid "Hidden ({0})" #~ msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Hide" msgstr "" @@ -2834,7 +2838,7 @@ msgstr "" msgid "Memos" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:53 +#: src/components/notification/NotificationAnnouncementDialog.tsx:67 #: src/components/signVerify/SignMessage.tsx:200 #: src/components/signVerify/VerifyMessage.tsx:207 #: src/constants/WalletConnectCommands.tsx:184 @@ -3529,7 +3533,7 @@ msgstr "" msgid "Open in Browser" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:31 +#: src/hooks/useOpenUnsafeLink.tsx:60 msgid "Open Link" msgstr "" @@ -3720,7 +3724,7 @@ msgstr "" msgid "Pending removal" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:38 +#: src/hooks/useOpenUnsafeLink.tsx:67 msgid "Please check the following link to verify the site you are going to visit. Proceed at your own risk." msgstr "" @@ -4211,7 +4215,7 @@ msgstr "Doporučeno" msgid "Recursive Plot Scan" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:566 +#: src/components/nfts/NFTContextualActions.tsx:569 msgid "Refresh NFT data" msgstr "" @@ -4685,7 +4689,7 @@ msgstr "Sdílet na Spacescan.io" #~ msgid "Share Privately" #~ msgstr "Share Privately" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Show" msgstr "" @@ -5229,6 +5233,10 @@ msgstr "Toto NFT pole je přiřazeno k jinému klíči. Stále můžete vytvář msgid "This table shows you the last time your farm attempted to win a block challenge. <0>Learn more" msgstr "Seznam pokusů vaší farmy o vítězství blokové výzvy. <0>Dozvědět se více" +#: src/hooks/useOpenUnsafeLink.tsx:24 +msgid "This type of the URL is not allowed to open for security reasons." +msgstr "" + #: src/components/settings/SettingsIntegration.tsx:398 msgid "This will reset all previously granted permissions across all Dapps that have been connected to. After resetting you will be asked to grant permission again." msgstr "" @@ -5579,9 +5587,10 @@ msgstr "" msgid "Uris" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:62 +#: src/components/notification/NotificationAnnouncementDialog.tsx:76 #: src/constants/WalletConnectCommands.tsx:964 -#: src/hooks/useOpenUnsafeLink.tsx:43 +#: src/hooks/useOpenUnsafeLink.tsx:27 +#: src/hooks/useOpenUnsafeLink.tsx:72 msgid "URL" msgstr "" @@ -5714,7 +5723,7 @@ msgstr "" #~ msgid "View on Hashgreen DEX" #~ msgstr "View on Hashgreen DEX" -#: src/components/nfts/NFTContextualActions.tsx:643 +#: src/components/nfts/NFTContextualActions.tsx:646 #: src/components/offers/OfferShareDialog.tsx:441 msgid "View on MintGarden" msgstr "" @@ -5727,7 +5736,7 @@ msgstr "" msgid "View on Offerpool" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:651 +#: src/components/nfts/NFTContextualActions.tsx:654 #: src/components/offers/OfferShareDialog.tsx:538 msgid "View on Spacescan.io" msgstr "" @@ -5866,6 +5875,10 @@ msgstr "" msgid "Warning Threshold" msgstr "" +#: src/hooks/useOpenUnsafeLink.tsx:21 +msgid "Warning: Invalid URL" +msgstr "" + #: src/components/app/AppVersionWarning.tsx:30 msgid "Warning: Mismatched Versions" msgstr "" @@ -5875,7 +5888,7 @@ msgstr "" msgid "Warning: Verify that the offered CAT asset IDs match the asset IDs of the tokens you expect to receive." msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:30 +#: src/hooks/useOpenUnsafeLink.tsx:59 msgid "Warning: You're about to visit a website" msgstr "" diff --git a/packages/gui/src/locales/da-DK/messages.po b/packages/gui/src/locales/da-DK/messages.po index a866c096c8..1365d59550 100644 --- a/packages/gui/src/locales/da-DK/messages.po +++ b/packages/gui/src/locales/da-DK/messages.po @@ -44,134 +44,134 @@ msgid "Would you like to transfer {count} NFTs to a new owner?" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "No" msgstr "Nej" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "Yes" msgstr "Ja" #. js-lingui-explicit-id -#: src/electron/main.tsx:511 +#: src/electron/main.tsx:522 msgid "Confirm" msgstr "Bekræft" #. js-lingui-explicit-id -#: src/electron/main.tsx:513 +#: src/electron/main.tsx:524 msgid "Are you sure you want to quit?" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:518 +#: src/electron/main.tsx:529 msgid "Keep service running in the background" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:636 -#: src/electron/main.tsx:844 +#: src/electron/main.tsx:647 +#: src/electron/main.tsx:855 msgid "File" msgstr "Fil" #. js-lingui-explicit-id -#: src/electron/main.tsx:644 +#: src/electron/main.tsx:655 msgid "Edit" msgstr "Rediger" #. js-lingui-explicit-id -#: src/electron/main.tsx:676 +#: src/electron/main.tsx:687 msgid "View" msgstr "Se" #. js-lingui-explicit-id -#: src/electron/main.tsx:685 +#: src/electron/main.tsx:696 msgid "Developer" msgstr "Udvikler" #. js-lingui-explicit-id -#: src/electron/main.tsx:688 +#: src/electron/main.tsx:699 msgid "Developer Tools" msgstr "Udvikler Værktøjer" #. js-lingui-explicit-id -#: src/electron/main.tsx:696 +#: src/electron/main.tsx:707 msgid "Trigger Desktop Notification" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:725 +#: src/electron/main.tsx:736 msgid "Full Screen" msgstr "Fuld Skærm" #. js-lingui-explicit-id -#: src/electron/main.tsx:732 +#: src/electron/main.tsx:743 msgid "Window" msgstr "Vindue" #. js-lingui-explicit-id -#: src/electron/main.tsx:746 +#: src/electron/main.tsx:757 msgid "Help" msgstr "Hjælp" #. js-lingui-explicit-id -#: src/electron/main.tsx:750 +#: src/electron/main.tsx:761 msgid "Chia Blockchain Wiki" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:756 +#: src/electron/main.tsx:767 msgid "Frequently Asked Questions" msgstr "Ofte Stillet Spørgsmål" #. js-lingui-explicit-id -#: src/electron/main.tsx:762 +#: src/electron/main.tsx:773 msgid "Release Notes" msgstr "Udgivelses Noter" #. js-lingui-explicit-id -#: src/electron/main.tsx:768 +#: src/electron/main.tsx:779 msgid "Contribute on GitHub" msgstr "Bidrag på GitHub" #. js-lingui-explicit-id -#: src/electron/main.tsx:777 +#: src/electron/main.tsx:788 msgid "Report an Issue..." msgstr "Raportér et Problem..." #. js-lingui-explicit-id -#: src/electron/main.tsx:783 +#: src/electron/main.tsx:794 msgid "Chat on Discord" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:789 +#: src/electron/main.tsx:800 msgid "Follow on Twitter" msgstr "Følg på Twitter" #. js-lingui-explicit-id -#: src/electron/main.tsx:801 +#: src/electron/main.tsx:812 msgid "Chia" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:804 -#: src/electron/main.tsx:897 +#: src/electron/main.tsx:815 +#: src/electron/main.tsx:908 msgid "About Chia Blockchain" msgstr "Om Chia Blockchain" #. js-lingui-explicit-id -#: src/electron/main.tsx:810 +#: src/electron/main.tsx:821 msgid "Check for Updates..." msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:858 +#: src/electron/main.tsx:869 msgid "Speech" msgstr "Tale" #. js-lingui-explicit-id -#: src/electron/main.tsx:903 +#: src/electron/main.tsx:914 msgid "Check for updates..." msgstr "" @@ -302,6 +302,10 @@ msgstr "" msgid "*Usually it takes seconds to complete restarting." msgstr "" +#: src/components/notification/NotificationAnnouncementDialog.tsx:39 +msgid "##### Redacted for security reason #####" +msgstr "" + #: src/components/plot/overview/PlotOverviewPlots.tsx:42 msgid "+ Add a Plot" msgstr "" @@ -364,7 +368,7 @@ msgstr "Aktion" #: src/components/farm/FarmFullNodeConnections.tsx:54 #: src/components/farm/FarmYourHarvesterNetwork.tsx:54 #: src/components/fullNode/FullNodeConnections.tsx:65 -#: src/components/nfts/NFTContextualActions.tsx:587 +#: src/components/nfts/NFTContextualActions.tsx:590 #: src/components/offers2/OfferIncomingTable.tsx:111 msgid "Actions" msgstr "Fjern" @@ -553,7 +557,7 @@ msgstr "" msgid "An NFT's provenance is a complete record of its ownership history. It provides a direct lineage that connects everyone who has owned the NFT, all the way back to the original artist. This helps to verify that the NFT is authentic." msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:35 +#: src/components/notification/NotificationAnnouncementDialog.tsx:49 msgid "Announcement" msgstr "" @@ -779,7 +783,7 @@ msgstr "Gennemse" #: src/components/nfts/NFTBurnDialog.tsx:90 #: src/components/nfts/NFTBurnDialog.tsx:185 -#: src/components/nfts/NFTContextualActions.tsx:525 +#: src/components/nfts/NFTContextualActions.tsx:528 msgid "Burn" msgstr "" @@ -834,7 +838,7 @@ msgstr "" #: src/components/signVerify/VerifyMessage.tsx:271 #: src/components/vcs/VCEditTitle.tsx:76 #: src/components/vcs/VCRevokeDialog.tsx:28 -#: src/hooks/useOpenUnsafeLink.tsx:33 +#: src/hooks/useOpenUnsafeLink.tsx:62 msgid "Cancel" msgstr "Annuller" @@ -996,7 +1000,7 @@ msgstr "" #: src/components/nfts/MultipleDownloadDialog.tsx:116 #: src/components/nfts/NFTMoveToProfileDialog.tsx:328 #: src/components/nfts/NFTTransferAction.tsx:166 -#: src/components/notification/NotificationAnnouncementDialog.tsx:75 +#: src/components/notification/NotificationAnnouncementDialog.tsx:87 #: src/components/notification/NotificationSendDialog.tsx:308 #: src/components/offers/ConfirmOfferCancellation.tsx:126 #: src/components/offers/OfferShareDialog.tsx:373 @@ -1569,7 +1573,7 @@ msgid "Display sharing options after creating a new offer" msgstr "" #: src/components/offers/OfferShareDialog.tsx:945 -#: src/hooks/useOpenUnsafeLink.tsx:64 +#: src/hooks/useOpenUnsafeLink.tsx:93 msgid "Do not show this dialog again" msgstr "" @@ -2112,7 +2116,7 @@ msgstr "" #~ msgid "Frequently Asked Questions" #~ msgstr "Frequently Asked Questions" -#: src/components/notification/NotificationAnnouncementDialog.tsx:44 +#: src/components/notification/NotificationAnnouncementDialog.tsx:58 msgid "From" msgstr "" @@ -2343,7 +2347,7 @@ msgstr "" #~ msgid "Hidden ({0})" #~ msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Hide" msgstr "" @@ -2834,7 +2838,7 @@ msgstr "" msgid "Memos" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:53 +#: src/components/notification/NotificationAnnouncementDialog.tsx:67 #: src/components/signVerify/SignMessage.tsx:200 #: src/components/signVerify/VerifyMessage.tsx:207 #: src/constants/WalletConnectCommands.tsx:184 @@ -3529,7 +3533,7 @@ msgstr "" msgid "Open in Browser" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:31 +#: src/hooks/useOpenUnsafeLink.tsx:60 msgid "Open Link" msgstr "" @@ -3720,7 +3724,7 @@ msgstr "" msgid "Pending removal" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:38 +#: src/hooks/useOpenUnsafeLink.tsx:67 msgid "Please check the following link to verify the site you are going to visit. Proceed at your own risk." msgstr "" @@ -4211,7 +4215,7 @@ msgstr "" msgid "Recursive Plot Scan" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:566 +#: src/components/nfts/NFTContextualActions.tsx:569 msgid "Refresh NFT data" msgstr "" @@ -4685,7 +4689,7 @@ msgstr "" #~ msgid "Share Privately" #~ msgstr "Share Privately" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Show" msgstr "" @@ -5229,6 +5233,10 @@ msgstr "Denne plot NFT er tildelt en anden nøgle. Du kan stadig oprette plot fi msgid "This table shows you the last time your farm attempted to win a block challenge. <0>Learn more" msgstr "Denne tabel viser hvornår din farmer sidst prøvede at vinde en blok udfordring. <0>Lær mere" +#: src/hooks/useOpenUnsafeLink.tsx:24 +msgid "This type of the URL is not allowed to open for security reasons." +msgstr "" + #: src/components/settings/SettingsIntegration.tsx:398 msgid "This will reset all previously granted permissions across all Dapps that have been connected to. After resetting you will be asked to grant permission again." msgstr "" @@ -5579,9 +5587,10 @@ msgstr "" msgid "Uris" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:62 +#: src/components/notification/NotificationAnnouncementDialog.tsx:76 #: src/constants/WalletConnectCommands.tsx:964 -#: src/hooks/useOpenUnsafeLink.tsx:43 +#: src/hooks/useOpenUnsafeLink.tsx:27 +#: src/hooks/useOpenUnsafeLink.tsx:72 msgid "URL" msgstr "" @@ -5714,7 +5723,7 @@ msgstr "" #~ msgid "View on Hashgreen DEX" #~ msgstr "View on Hashgreen DEX" -#: src/components/nfts/NFTContextualActions.tsx:643 +#: src/components/nfts/NFTContextualActions.tsx:646 #: src/components/offers/OfferShareDialog.tsx:441 msgid "View on MintGarden" msgstr "" @@ -5727,7 +5736,7 @@ msgstr "" msgid "View on Offerpool" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:651 +#: src/components/nfts/NFTContextualActions.tsx:654 #: src/components/offers/OfferShareDialog.tsx:538 msgid "View on Spacescan.io" msgstr "" @@ -5866,6 +5875,10 @@ msgstr "" msgid "Warning Threshold" msgstr "" +#: src/hooks/useOpenUnsafeLink.tsx:21 +msgid "Warning: Invalid URL" +msgstr "" + #: src/components/app/AppVersionWarning.tsx:30 msgid "Warning: Mismatched Versions" msgstr "" @@ -5875,7 +5888,7 @@ msgstr "" msgid "Warning: Verify that the offered CAT asset IDs match the asset IDs of the tokens you expect to receive." msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:30 +#: src/hooks/useOpenUnsafeLink.tsx:59 msgid "Warning: You're about to visit a website" msgstr "" diff --git a/packages/gui/src/locales/de-DE/messages.po b/packages/gui/src/locales/de-DE/messages.po index b844cc4e66..b402bc92e9 100644 --- a/packages/gui/src/locales/de-DE/messages.po +++ b/packages/gui/src/locales/de-DE/messages.po @@ -44,134 +44,134 @@ msgid "Would you like to transfer {count} NFTs to a new owner?" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "No" msgstr "Nein" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "Yes" msgstr "Ja" #. js-lingui-explicit-id -#: src/electron/main.tsx:511 +#: src/electron/main.tsx:522 msgid "Confirm" msgstr "Bestätigen" #. js-lingui-explicit-id -#: src/electron/main.tsx:513 +#: src/electron/main.tsx:524 msgid "Are you sure you want to quit?" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:518 +#: src/electron/main.tsx:529 msgid "Keep service running in the background" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:636 -#: src/electron/main.tsx:844 +#: src/electron/main.tsx:647 +#: src/electron/main.tsx:855 msgid "File" msgstr "Datei" #. js-lingui-explicit-id -#: src/electron/main.tsx:644 +#: src/electron/main.tsx:655 msgid "Edit" msgstr "Ändern" #. js-lingui-explicit-id -#: src/electron/main.tsx:676 +#: src/electron/main.tsx:687 msgid "View" msgstr "Ansicht" #. js-lingui-explicit-id -#: src/electron/main.tsx:685 +#: src/electron/main.tsx:696 msgid "Developer" msgstr "Entwickler" #. js-lingui-explicit-id -#: src/electron/main.tsx:688 +#: src/electron/main.tsx:699 msgid "Developer Tools" msgstr "Entwickler Werkzeuge" #. js-lingui-explicit-id -#: src/electron/main.tsx:696 +#: src/electron/main.tsx:707 msgid "Trigger Desktop Notification" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:725 +#: src/electron/main.tsx:736 msgid "Full Screen" msgstr "Vollbild" #. js-lingui-explicit-id -#: src/electron/main.tsx:732 +#: src/electron/main.tsx:743 msgid "Window" msgstr "Fenster" #. js-lingui-explicit-id -#: src/electron/main.tsx:746 +#: src/electron/main.tsx:757 msgid "Help" msgstr "Hilfe" #. js-lingui-explicit-id -#: src/electron/main.tsx:750 +#: src/electron/main.tsx:761 msgid "Chia Blockchain Wiki" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:756 +#: src/electron/main.tsx:767 msgid "Frequently Asked Questions" msgstr "Häufig gestellte Fragen" #. js-lingui-explicit-id -#: src/electron/main.tsx:762 +#: src/electron/main.tsx:773 msgid "Release Notes" msgstr "Versionshinweise" #. js-lingui-explicit-id -#: src/electron/main.tsx:768 +#: src/electron/main.tsx:779 msgid "Contribute on GitHub" msgstr "Auf GitHub mitwirken" #. js-lingui-explicit-id -#: src/electron/main.tsx:777 +#: src/electron/main.tsx:788 msgid "Report an Issue..." msgstr "Ein Problem melden..." #. js-lingui-explicit-id -#: src/electron/main.tsx:783 +#: src/electron/main.tsx:794 msgid "Chat on Discord" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:789 +#: src/electron/main.tsx:800 msgid "Follow on Twitter" msgstr "Folge auf Twitter" #. js-lingui-explicit-id -#: src/electron/main.tsx:801 +#: src/electron/main.tsx:812 msgid "Chia" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:804 -#: src/electron/main.tsx:897 +#: src/electron/main.tsx:815 +#: src/electron/main.tsx:908 msgid "About Chia Blockchain" msgstr "Mehr über die Chia Blockchain" #. js-lingui-explicit-id -#: src/electron/main.tsx:810 +#: src/electron/main.tsx:821 msgid "Check for Updates..." msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:858 +#: src/electron/main.tsx:869 msgid "Speech" msgstr "Sprache" #. js-lingui-explicit-id -#: src/electron/main.tsx:903 +#: src/electron/main.tsx:914 msgid "Check for updates..." msgstr "" @@ -302,6 +302,10 @@ msgstr "" msgid "*Usually it takes seconds to complete restarting." msgstr "" +#: src/components/notification/NotificationAnnouncementDialog.tsx:39 +msgid "##### Redacted for security reason #####" +msgstr "" + #: src/components/plot/overview/PlotOverviewPlots.tsx:42 msgid "+ Add a Plot" msgstr "" @@ -364,7 +368,7 @@ msgstr "Aktion" #: src/components/farm/FarmFullNodeConnections.tsx:54 #: src/components/farm/FarmYourHarvesterNetwork.tsx:54 #: src/components/fullNode/FullNodeConnections.tsx:65 -#: src/components/nfts/NFTContextualActions.tsx:587 +#: src/components/nfts/NFTContextualActions.tsx:590 #: src/components/offers2/OfferIncomingTable.tsx:111 msgid "Actions" msgstr "Aktionen" @@ -553,7 +557,7 @@ msgstr "" msgid "An NFT's provenance is a complete record of its ownership history. It provides a direct lineage that connects everyone who has owned the NFT, all the way back to the original artist. This helps to verify that the NFT is authentic." msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:35 +#: src/components/notification/NotificationAnnouncementDialog.tsx:49 msgid "Announcement" msgstr "" @@ -779,7 +783,7 @@ msgstr "Durchsuchen" #: src/components/nfts/NFTBurnDialog.tsx:90 #: src/components/nfts/NFTBurnDialog.tsx:185 -#: src/components/nfts/NFTContextualActions.tsx:525 +#: src/components/nfts/NFTContextualActions.tsx:528 msgid "Burn" msgstr "" @@ -834,7 +838,7 @@ msgstr "" #: src/components/signVerify/VerifyMessage.tsx:271 #: src/components/vcs/VCEditTitle.tsx:76 #: src/components/vcs/VCRevokeDialog.tsx:28 -#: src/hooks/useOpenUnsafeLink.tsx:33 +#: src/hooks/useOpenUnsafeLink.tsx:62 msgid "Cancel" msgstr "Abbrechen" @@ -996,7 +1000,7 @@ msgstr "" #: src/components/nfts/MultipleDownloadDialog.tsx:116 #: src/components/nfts/NFTMoveToProfileDialog.tsx:328 #: src/components/nfts/NFTTransferAction.tsx:166 -#: src/components/notification/NotificationAnnouncementDialog.tsx:75 +#: src/components/notification/NotificationAnnouncementDialog.tsx:87 #: src/components/notification/NotificationSendDialog.tsx:308 #: src/components/offers/ConfirmOfferCancellation.tsx:126 #: src/components/offers/OfferShareDialog.tsx:373 @@ -1569,7 +1573,7 @@ msgid "Display sharing options after creating a new offer" msgstr "" #: src/components/offers/OfferShareDialog.tsx:945 -#: src/hooks/useOpenUnsafeLink.tsx:64 +#: src/hooks/useOpenUnsafeLink.tsx:93 msgid "Do not show this dialog again" msgstr "" @@ -2112,7 +2116,7 @@ msgstr "" #~ msgid "Frequently Asked Questions" #~ msgstr "Frequently Asked Questions" -#: src/components/notification/NotificationAnnouncementDialog.tsx:44 +#: src/components/notification/NotificationAnnouncementDialog.tsx:58 msgid "From" msgstr "" @@ -2343,7 +2347,7 @@ msgstr "" #~ msgid "Hidden ({0})" #~ msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Hide" msgstr "" @@ -2834,7 +2838,7 @@ msgstr "" msgid "Memos" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:53 +#: src/components/notification/NotificationAnnouncementDialog.tsx:67 #: src/components/signVerify/SignMessage.tsx:200 #: src/components/signVerify/VerifyMessage.tsx:207 #: src/constants/WalletConnectCommands.tsx:184 @@ -3529,7 +3533,7 @@ msgstr "" msgid "Open in Browser" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:31 +#: src/hooks/useOpenUnsafeLink.tsx:60 msgid "Open Link" msgstr "" @@ -3720,7 +3724,7 @@ msgstr "" msgid "Pending removal" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:38 +#: src/hooks/useOpenUnsafeLink.tsx:67 msgid "Please check the following link to verify the site you are going to visit. Proceed at your own risk." msgstr "" @@ -4213,7 +4217,7 @@ msgstr "" msgid "Recursive Plot Scan" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:566 +#: src/components/nfts/NFTContextualActions.tsx:569 msgid "Refresh NFT data" msgstr "" @@ -4687,7 +4691,7 @@ msgstr "" #~ msgid "Share Privately" #~ msgstr "Share Privately" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Show" msgstr "" @@ -5231,6 +5235,10 @@ msgstr "Dieses Plot-NFT ist einem anderen Schlüssel zugeordnet. Du kannst noch msgid "This table shows you the last time your farm attempted to win a block challenge. <0>Learn more" msgstr "Diese Tabelle zeigt, wann deine Farm das letzte Mal versucht hat eine Blockherausforderung zu gewinnen. <0>Erfahre mehr" +#: src/hooks/useOpenUnsafeLink.tsx:24 +msgid "This type of the URL is not allowed to open for security reasons." +msgstr "" + #: src/components/settings/SettingsIntegration.tsx:398 msgid "This will reset all previously granted permissions across all Dapps that have been connected to. After resetting you will be asked to grant permission again." msgstr "" @@ -5581,9 +5589,10 @@ msgstr "" msgid "Uris" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:62 +#: src/components/notification/NotificationAnnouncementDialog.tsx:76 #: src/constants/WalletConnectCommands.tsx:964 -#: src/hooks/useOpenUnsafeLink.tsx:43 +#: src/hooks/useOpenUnsafeLink.tsx:27 +#: src/hooks/useOpenUnsafeLink.tsx:72 msgid "URL" msgstr "" @@ -5716,7 +5725,7 @@ msgstr "" #~ msgid "View on Hashgreen DEX" #~ msgstr "View on Hashgreen DEX" -#: src/components/nfts/NFTContextualActions.tsx:643 +#: src/components/nfts/NFTContextualActions.tsx:646 #: src/components/offers/OfferShareDialog.tsx:441 msgid "View on MintGarden" msgstr "" @@ -5729,7 +5738,7 @@ msgstr "" msgid "View on Offerpool" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:651 +#: src/components/nfts/NFTContextualActions.tsx:654 #: src/components/offers/OfferShareDialog.tsx:538 msgid "View on Spacescan.io" msgstr "" @@ -5868,6 +5877,10 @@ msgstr "" msgid "Warning Threshold" msgstr "" +#: src/hooks/useOpenUnsafeLink.tsx:21 +msgid "Warning: Invalid URL" +msgstr "" + #: src/components/app/AppVersionWarning.tsx:30 msgid "Warning: Mismatched Versions" msgstr "" @@ -5877,7 +5890,7 @@ msgstr "" msgid "Warning: Verify that the offered CAT asset IDs match the asset IDs of the tokens you expect to receive." msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:30 +#: src/hooks/useOpenUnsafeLink.tsx:59 msgid "Warning: You're about to visit a website" msgstr "" diff --git a/packages/gui/src/locales/el-GR/messages.po b/packages/gui/src/locales/el-GR/messages.po index 7ed85d708b..5f3c54c959 100644 --- a/packages/gui/src/locales/el-GR/messages.po +++ b/packages/gui/src/locales/el-GR/messages.po @@ -44,134 +44,134 @@ msgid "Would you like to transfer {count} NFTs to a new owner?" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "No" msgstr "Όχι" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "Yes" msgstr "Ναι" #. js-lingui-explicit-id -#: src/electron/main.tsx:511 +#: src/electron/main.tsx:522 msgid "Confirm" msgstr "Επιβεβαίωση" #. js-lingui-explicit-id -#: src/electron/main.tsx:513 +#: src/electron/main.tsx:524 msgid "Are you sure you want to quit?" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:518 +#: src/electron/main.tsx:529 msgid "Keep service running in the background" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:636 -#: src/electron/main.tsx:844 +#: src/electron/main.tsx:647 +#: src/electron/main.tsx:855 msgid "File" msgstr "Αρχείο" #. js-lingui-explicit-id -#: src/electron/main.tsx:644 +#: src/electron/main.tsx:655 msgid "Edit" msgstr "Επεξεργασία" #. js-lingui-explicit-id -#: src/electron/main.tsx:676 +#: src/electron/main.tsx:687 msgid "View" msgstr "Εμφάνιση" #. js-lingui-explicit-id -#: src/electron/main.tsx:685 +#: src/electron/main.tsx:696 msgid "Developer" msgstr "Προγραμματιστής" #. js-lingui-explicit-id -#: src/electron/main.tsx:688 +#: src/electron/main.tsx:699 msgid "Developer Tools" msgstr "Εργαλεία Προγραμματιστή" #. js-lingui-explicit-id -#: src/electron/main.tsx:696 +#: src/electron/main.tsx:707 msgid "Trigger Desktop Notification" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:725 +#: src/electron/main.tsx:736 msgid "Full Screen" msgstr "Πλήρης Οθόνη" #. js-lingui-explicit-id -#: src/electron/main.tsx:732 +#: src/electron/main.tsx:743 msgid "Window" msgstr "Παράθυρο" #. js-lingui-explicit-id -#: src/electron/main.tsx:746 +#: src/electron/main.tsx:757 msgid "Help" msgstr "Βοήθεια" #. js-lingui-explicit-id -#: src/electron/main.tsx:750 +#: src/electron/main.tsx:761 msgid "Chia Blockchain Wiki" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:756 +#: src/electron/main.tsx:767 msgid "Frequently Asked Questions" msgstr "Συχνές ερωτήσεις" #. js-lingui-explicit-id -#: src/electron/main.tsx:762 +#: src/electron/main.tsx:773 msgid "Release Notes" msgstr "Τι νέο υπάρχει" #. js-lingui-explicit-id -#: src/electron/main.tsx:768 +#: src/electron/main.tsx:779 msgid "Contribute on GitHub" msgstr "Συμβάλετε στο GitHub" #. js-lingui-explicit-id -#: src/electron/main.tsx:777 +#: src/electron/main.tsx:788 msgid "Report an Issue..." msgstr "Αναφορά προβλήματος..." #. js-lingui-explicit-id -#: src/electron/main.tsx:783 +#: src/electron/main.tsx:794 msgid "Chat on Discord" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:789 +#: src/electron/main.tsx:800 msgid "Follow on Twitter" msgstr "Ακολουθήστε μας στο Τwitter" #. js-lingui-explicit-id -#: src/electron/main.tsx:801 +#: src/electron/main.tsx:812 msgid "Chia" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:804 -#: src/electron/main.tsx:897 +#: src/electron/main.tsx:815 +#: src/electron/main.tsx:908 msgid "About Chia Blockchain" msgstr "Περί Chia Blockchain" #. js-lingui-explicit-id -#: src/electron/main.tsx:810 +#: src/electron/main.tsx:821 msgid "Check for Updates..." msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:858 +#: src/electron/main.tsx:869 msgid "Speech" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:903 +#: src/electron/main.tsx:914 msgid "Check for updates..." msgstr "" @@ -302,6 +302,10 @@ msgstr "" msgid "*Usually it takes seconds to complete restarting." msgstr "" +#: src/components/notification/NotificationAnnouncementDialog.tsx:39 +msgid "##### Redacted for security reason #####" +msgstr "" + #: src/components/plot/overview/PlotOverviewPlots.tsx:42 msgid "+ Add a Plot" msgstr "" @@ -364,7 +368,7 @@ msgstr "Ενέργεια" #: src/components/farm/FarmFullNodeConnections.tsx:54 #: src/components/farm/FarmYourHarvesterNetwork.tsx:54 #: src/components/fullNode/FullNodeConnections.tsx:65 -#: src/components/nfts/NFTContextualActions.tsx:587 +#: src/components/nfts/NFTContextualActions.tsx:590 #: src/components/offers2/OfferIncomingTable.tsx:111 msgid "Actions" msgstr "Ενέργειες" @@ -553,7 +557,7 @@ msgstr "" msgid "An NFT's provenance is a complete record of its ownership history. It provides a direct lineage that connects everyone who has owned the NFT, all the way back to the original artist. This helps to verify that the NFT is authentic." msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:35 +#: src/components/notification/NotificationAnnouncementDialog.tsx:49 msgid "Announcement" msgstr "" @@ -779,7 +783,7 @@ msgstr "Εξερεύνηση" #: src/components/nfts/NFTBurnDialog.tsx:90 #: src/components/nfts/NFTBurnDialog.tsx:185 -#: src/components/nfts/NFTContextualActions.tsx:525 +#: src/components/nfts/NFTContextualActions.tsx:528 msgid "Burn" msgstr "" @@ -834,7 +838,7 @@ msgstr "" #: src/components/signVerify/VerifyMessage.tsx:271 #: src/components/vcs/VCEditTitle.tsx:76 #: src/components/vcs/VCRevokeDialog.tsx:28 -#: src/hooks/useOpenUnsafeLink.tsx:33 +#: src/hooks/useOpenUnsafeLink.tsx:62 msgid "Cancel" msgstr "Ακύρωση" @@ -996,7 +1000,7 @@ msgstr "" #: src/components/nfts/MultipleDownloadDialog.tsx:116 #: src/components/nfts/NFTMoveToProfileDialog.tsx:328 #: src/components/nfts/NFTTransferAction.tsx:166 -#: src/components/notification/NotificationAnnouncementDialog.tsx:75 +#: src/components/notification/NotificationAnnouncementDialog.tsx:87 #: src/components/notification/NotificationSendDialog.tsx:308 #: src/components/offers/ConfirmOfferCancellation.tsx:126 #: src/components/offers/OfferShareDialog.tsx:373 @@ -1569,7 +1573,7 @@ msgid "Display sharing options after creating a new offer" msgstr "" #: src/components/offers/OfferShareDialog.tsx:945 -#: src/hooks/useOpenUnsafeLink.tsx:64 +#: src/hooks/useOpenUnsafeLink.tsx:93 msgid "Do not show this dialog again" msgstr "" @@ -2112,7 +2116,7 @@ msgstr "" #~ msgid "Frequently Asked Questions" #~ msgstr "Frequently Asked Questions" -#: src/components/notification/NotificationAnnouncementDialog.tsx:44 +#: src/components/notification/NotificationAnnouncementDialog.tsx:58 msgid "From" msgstr "" @@ -2343,7 +2347,7 @@ msgstr "" #~ msgid "Hidden ({0})" #~ msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Hide" msgstr "" @@ -2834,7 +2838,7 @@ msgstr "" msgid "Memos" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:53 +#: src/components/notification/NotificationAnnouncementDialog.tsx:67 #: src/components/signVerify/SignMessage.tsx:200 #: src/components/signVerify/VerifyMessage.tsx:207 #: src/constants/WalletConnectCommands.tsx:184 @@ -3529,7 +3533,7 @@ msgstr "" msgid "Open in Browser" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:31 +#: src/hooks/useOpenUnsafeLink.tsx:60 msgid "Open Link" msgstr "" @@ -3720,7 +3724,7 @@ msgstr "" msgid "Pending removal" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:38 +#: src/hooks/useOpenUnsafeLink.tsx:67 msgid "Please check the following link to verify the site you are going to visit. Proceed at your own risk." msgstr "" @@ -4211,7 +4215,7 @@ msgstr "" msgid "Recursive Plot Scan" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:566 +#: src/components/nfts/NFTContextualActions.tsx:569 msgid "Refresh NFT data" msgstr "" @@ -4685,7 +4689,7 @@ msgstr "" #~ msgid "Share Privately" #~ msgstr "Share Privately" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Show" msgstr "" @@ -5229,6 +5233,10 @@ msgstr "" msgid "This table shows you the last time your farm attempted to win a block challenge. <0>Learn more" msgstr "Αυτός ο πίνακας σας δείχνει την τελευταία φορά που το farm σας προσπάθησε να κερδίσει ένα block challenge. <0>Μάθετε περισσότερα" +#: src/hooks/useOpenUnsafeLink.tsx:24 +msgid "This type of the URL is not allowed to open for security reasons." +msgstr "" + #: src/components/settings/SettingsIntegration.tsx:398 msgid "This will reset all previously granted permissions across all Dapps that have been connected to. After resetting you will be asked to grant permission again." msgstr "" @@ -5579,9 +5587,10 @@ msgstr "" msgid "Uris" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:62 +#: src/components/notification/NotificationAnnouncementDialog.tsx:76 #: src/constants/WalletConnectCommands.tsx:964 -#: src/hooks/useOpenUnsafeLink.tsx:43 +#: src/hooks/useOpenUnsafeLink.tsx:27 +#: src/hooks/useOpenUnsafeLink.tsx:72 msgid "URL" msgstr "" @@ -5714,7 +5723,7 @@ msgstr "" #~ msgid "View on Hashgreen DEX" #~ msgstr "View on Hashgreen DEX" -#: src/components/nfts/NFTContextualActions.tsx:643 +#: src/components/nfts/NFTContextualActions.tsx:646 #: src/components/offers/OfferShareDialog.tsx:441 msgid "View on MintGarden" msgstr "" @@ -5727,7 +5736,7 @@ msgstr "" msgid "View on Offerpool" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:651 +#: src/components/nfts/NFTContextualActions.tsx:654 #: src/components/offers/OfferShareDialog.tsx:538 msgid "View on Spacescan.io" msgstr "" @@ -5866,6 +5875,10 @@ msgstr "" msgid "Warning Threshold" msgstr "" +#: src/hooks/useOpenUnsafeLink.tsx:21 +msgid "Warning: Invalid URL" +msgstr "" + #: src/components/app/AppVersionWarning.tsx:30 msgid "Warning: Mismatched Versions" msgstr "" @@ -5875,7 +5888,7 @@ msgstr "" msgid "Warning: Verify that the offered CAT asset IDs match the asset IDs of the tokens you expect to receive." msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:30 +#: src/hooks/useOpenUnsafeLink.tsx:59 msgid "Warning: You're about to visit a website" msgstr "" diff --git a/packages/gui/src/locales/en-AU/messages.po b/packages/gui/src/locales/en-AU/messages.po index 20be310532..8c14266f91 100644 --- a/packages/gui/src/locales/en-AU/messages.po +++ b/packages/gui/src/locales/en-AU/messages.po @@ -44,134 +44,134 @@ msgid "Would you like to transfer {count} NFTs to a new owner?" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "No" msgstr "Yeh nah" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "Yes" msgstr "You ripper" #. js-lingui-explicit-id -#: src/electron/main.tsx:511 +#: src/electron/main.tsx:522 msgid "Confirm" msgstr "You ripper" #. js-lingui-explicit-id -#: src/electron/main.tsx:513 +#: src/electron/main.tsx:524 msgid "Are you sure you want to quit?" msgstr "Are you sure you want to be a quitter?" #. js-lingui-explicit-id -#: src/electron/main.tsx:518 +#: src/electron/main.tsx:529 msgid "Keep service running in the background" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:636 -#: src/electron/main.tsx:844 +#: src/electron/main.tsx:647 +#: src/electron/main.tsx:855 msgid "File" msgstr "File" #. js-lingui-explicit-id -#: src/electron/main.tsx:644 +#: src/electron/main.tsx:655 msgid "Edit" msgstr "Edit" #. js-lingui-explicit-id -#: src/electron/main.tsx:676 +#: src/electron/main.tsx:687 msgid "View" msgstr "View" #. js-lingui-explicit-id -#: src/electron/main.tsx:685 +#: src/electron/main.tsx:696 msgid "Developer" msgstr "Developer" #. js-lingui-explicit-id -#: src/electron/main.tsx:688 +#: src/electron/main.tsx:699 msgid "Developer Tools" msgstr "Developer Tools" #. js-lingui-explicit-id -#: src/electron/main.tsx:696 +#: src/electron/main.tsx:707 msgid "Trigger Desktop Notification" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:725 +#: src/electron/main.tsx:736 msgid "Full Screen" msgstr "Full Screen" #. js-lingui-explicit-id -#: src/electron/main.tsx:732 +#: src/electron/main.tsx:743 msgid "Window" msgstr "Window" #. js-lingui-explicit-id -#: src/electron/main.tsx:746 +#: src/electron/main.tsx:757 msgid "Help" msgstr "Help me Jebus" #. js-lingui-explicit-id -#: src/electron/main.tsx:750 +#: src/electron/main.tsx:761 msgid "Chia Blockchain Wiki" msgstr "Chia Blockchain Wiki" #. js-lingui-explicit-id -#: src/electron/main.tsx:756 +#: src/electron/main.tsx:767 msgid "Frequently Asked Questions" msgstr "Frequently Asked Questions because people can't read" #. js-lingui-explicit-id -#: src/electron/main.tsx:762 +#: src/electron/main.tsx:773 msgid "Release Notes" msgstr "Release Notes" #. js-lingui-explicit-id -#: src/electron/main.tsx:768 +#: src/electron/main.tsx:779 msgid "Contribute on GitHub" msgstr "Contribute on GitHub" #. js-lingui-explicit-id -#: src/electron/main.tsx:777 +#: src/electron/main.tsx:788 msgid "Report an Issue..." msgstr "Report an Issue..." #. js-lingui-explicit-id -#: src/electron/main.tsx:783 +#: src/electron/main.tsx:794 msgid "Chat on Discord" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:789 +#: src/electron/main.tsx:800 msgid "Follow on Twitter" msgstr "Follow on Twitter" #. js-lingui-explicit-id -#: src/electron/main.tsx:801 +#: src/electron/main.tsx:812 msgid "Chia" msgstr "Chia" #. js-lingui-explicit-id -#: src/electron/main.tsx:804 -#: src/electron/main.tsx:897 +#: src/electron/main.tsx:815 +#: src/electron/main.tsx:908 msgid "About Chia Blockchain" msgstr "Some stuff about Chia" #. js-lingui-explicit-id -#: src/electron/main.tsx:810 +#: src/electron/main.tsx:821 msgid "Check for Updates..." msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:858 +#: src/electron/main.tsx:869 msgid "Speech" msgstr "Speech" #. js-lingui-explicit-id -#: src/electron/main.tsx:903 +#: src/electron/main.tsx:914 msgid "Check for updates..." msgstr "" @@ -302,6 +302,10 @@ msgstr "" msgid "*Usually it takes seconds to complete restarting." msgstr "" +#: src/components/notification/NotificationAnnouncementDialog.tsx:39 +msgid "##### Redacted for security reason #####" +msgstr "" + #: src/components/plot/overview/PlotOverviewPlots.tsx:42 msgid "+ Add a Plot" msgstr "+ Add a Plot to get more beer money" @@ -364,7 +368,7 @@ msgstr "Action" #: src/components/farm/FarmFullNodeConnections.tsx:54 #: src/components/farm/FarmYourHarvesterNetwork.tsx:54 #: src/components/fullNode/FullNodeConnections.tsx:65 -#: src/components/nfts/NFTContextualActions.tsx:587 +#: src/components/nfts/NFTContextualActions.tsx:590 #: src/components/offers2/OfferIncomingTable.tsx:111 msgid "Actions" msgstr "Actions" @@ -553,7 +557,7 @@ msgstr "" msgid "An NFT's provenance is a complete record of its ownership history. It provides a direct lineage that connects everyone who has owned the NFT, all the way back to the original artist. This helps to verify that the NFT is authentic." msgstr "An NFT's provenance is a complete record of its ownership history. It provides a direct lineage that connects everyone who has owned the NFT, all the way back to the original artist. This helps to verify that the NFT is authentic." -#: src/components/notification/NotificationAnnouncementDialog.tsx:35 +#: src/components/notification/NotificationAnnouncementDialog.tsx:49 msgid "Announcement" msgstr "" @@ -779,7 +783,7 @@ msgstr "Browse" #: src/components/nfts/NFTBurnDialog.tsx:90 #: src/components/nfts/NFTBurnDialog.tsx:185 -#: src/components/nfts/NFTContextualActions.tsx:525 +#: src/components/nfts/NFTContextualActions.tsx:528 msgid "Burn" msgstr "Burn" @@ -834,7 +838,7 @@ msgstr "" #: src/components/signVerify/VerifyMessage.tsx:271 #: src/components/vcs/VCEditTitle.tsx:76 #: src/components/vcs/VCRevokeDialog.tsx:28 -#: src/hooks/useOpenUnsafeLink.tsx:33 +#: src/hooks/useOpenUnsafeLink.tsx:62 msgid "Cancel" msgstr "Yeh Nah" @@ -996,7 +1000,7 @@ msgstr "" #: src/components/nfts/MultipleDownloadDialog.tsx:116 #: src/components/nfts/NFTMoveToProfileDialog.tsx:328 #: src/components/nfts/NFTTransferAction.tsx:166 -#: src/components/notification/NotificationAnnouncementDialog.tsx:75 +#: src/components/notification/NotificationAnnouncementDialog.tsx:87 #: src/components/notification/NotificationSendDialog.tsx:308 #: src/components/offers/ConfirmOfferCancellation.tsx:126 #: src/components/offers/OfferShareDialog.tsx:373 @@ -1569,7 +1573,7 @@ msgid "Display sharing options after creating a new offer" msgstr "" #: src/components/offers/OfferShareDialog.tsx:945 -#: src/hooks/useOpenUnsafeLink.tsx:64 +#: src/hooks/useOpenUnsafeLink.tsx:93 msgid "Do not show this dialog again" msgstr "Do not show this dialog again" @@ -2112,7 +2116,7 @@ msgstr "" #~ msgid "Frequently Asked Questions" #~ msgstr "Frequently Asked Questions" -#: src/components/notification/NotificationAnnouncementDialog.tsx:44 +#: src/components/notification/NotificationAnnouncementDialog.tsx:58 msgid "From" msgstr "" @@ -2343,7 +2347,7 @@ msgstr "" #~ msgid "Hidden ({0})" #~ msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Hide" msgstr "Hide" @@ -2838,7 +2842,7 @@ msgstr "" msgid "Memos" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:53 +#: src/components/notification/NotificationAnnouncementDialog.tsx:67 #: src/components/signVerify/SignMessage.tsx:200 #: src/components/signVerify/VerifyMessage.tsx:207 #: src/constants/WalletConnectCommands.tsx:184 @@ -3533,7 +3537,7 @@ msgstr "" msgid "Open in Browser" msgstr "Open in Browser" -#: src/hooks/useOpenUnsafeLink.tsx:31 +#: src/hooks/useOpenUnsafeLink.tsx:60 msgid "Open Link" msgstr "Open Link" @@ -3724,7 +3728,7 @@ msgstr "Pending Confirm" msgid "Pending removal" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:38 +#: src/hooks/useOpenUnsafeLink.tsx:67 msgid "Please check the following link to verify the site you are going to visit. Proceed at your own risk." msgstr "Please check the following link to verify the site you are going to visit. Proceed at your own risk." @@ -4215,7 +4219,7 @@ msgstr "Recommended" msgid "Recursive Plot Scan" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:566 +#: src/components/nfts/NFTContextualActions.tsx:569 msgid "Refresh NFT data" msgstr "" @@ -4689,7 +4693,7 @@ msgstr "" #~ msgid "Share Privately" #~ msgstr "Share Privately" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Show" msgstr "Show" @@ -5233,6 +5237,10 @@ msgstr "This plot NFT is assigned to a different key. You can still create plots msgid "This table shows you the last time your farm attempted to win a block challenge. <0>Learn more" msgstr "This table shows you the last time your farm attempted to win a block challenge. <0>Learn more" +#: src/hooks/useOpenUnsafeLink.tsx:24 +msgid "This type of the URL is not allowed to open for security reasons." +msgstr "" + #: src/components/settings/SettingsIntegration.tsx:398 msgid "This will reset all previously granted permissions across all Dapps that have been connected to. After resetting you will be asked to grant permission again." msgstr "" @@ -5583,9 +5591,10 @@ msgstr "Update Pending" msgid "Uris" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:62 +#: src/components/notification/NotificationAnnouncementDialog.tsx:76 #: src/constants/WalletConnectCommands.tsx:964 -#: src/hooks/useOpenUnsafeLink.tsx:43 +#: src/hooks/useOpenUnsafeLink.tsx:27 +#: src/hooks/useOpenUnsafeLink.tsx:72 msgid "URL" msgstr "URL" @@ -5718,7 +5727,7 @@ msgstr "View on Dexie" #~ msgid "View on Hashgreen DEX" #~ msgstr "View on Hashgreen DEX" -#: src/components/nfts/NFTContextualActions.tsx:643 +#: src/components/nfts/NFTContextualActions.tsx:646 #: src/components/offers/OfferShareDialog.tsx:441 msgid "View on MintGarden" msgstr "View on MintGarden" @@ -5731,7 +5740,7 @@ msgstr "View on MintGarden" msgid "View on Offerpool" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:651 +#: src/components/nfts/NFTContextualActions.tsx:654 #: src/components/offers/OfferShareDialog.tsx:538 msgid "View on Spacescan.io" msgstr "View on Spacescan.io" @@ -5870,6 +5879,10 @@ msgstr "Warning" msgid "Warning Threshold" msgstr "" +#: src/hooks/useOpenUnsafeLink.tsx:21 +msgid "Warning: Invalid URL" +msgstr "" + #: src/components/app/AppVersionWarning.tsx:30 msgid "Warning: Mismatched Versions" msgstr "" @@ -5879,7 +5892,7 @@ msgstr "" msgid "Warning: Verify that the offered CAT asset IDs match the asset IDs of the tokens you expect to receive." msgstr "Warning: Verify that the offered CAT asset IDs match the asset IDs of the tokens you expect to receive." -#: src/hooks/useOpenUnsafeLink.tsx:30 +#: src/hooks/useOpenUnsafeLink.tsx:59 msgid "Warning: You're about to visit a website" msgstr "Warning: You're about to visit a website" diff --git a/packages/gui/src/locales/en-NZ/messages.po b/packages/gui/src/locales/en-NZ/messages.po index c053502376..bbd268190f 100644 --- a/packages/gui/src/locales/en-NZ/messages.po +++ b/packages/gui/src/locales/en-NZ/messages.po @@ -44,134 +44,134 @@ msgid "Would you like to transfer {count} NFTs to a new owner?" msgstr "Would you like to transfer {count} NFTs to a new owner?" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "No" msgstr "No" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "Yes" msgstr "Yes" #. js-lingui-explicit-id -#: src/electron/main.tsx:511 +#: src/electron/main.tsx:522 msgid "Confirm" msgstr "Confirm" #. js-lingui-explicit-id -#: src/electron/main.tsx:513 +#: src/electron/main.tsx:524 msgid "Are you sure you want to quit?" msgstr "Are you sure you want to quit?" #. js-lingui-explicit-id -#: src/electron/main.tsx:518 +#: src/electron/main.tsx:529 msgid "Keep service running in the background" msgstr "Keep service running in the background" #. js-lingui-explicit-id -#: src/electron/main.tsx:636 -#: src/electron/main.tsx:844 +#: src/electron/main.tsx:647 +#: src/electron/main.tsx:855 msgid "File" msgstr "File" #. js-lingui-explicit-id -#: src/electron/main.tsx:644 +#: src/electron/main.tsx:655 msgid "Edit" msgstr "Edit" #. js-lingui-explicit-id -#: src/electron/main.tsx:676 +#: src/electron/main.tsx:687 msgid "View" msgstr "View" #. js-lingui-explicit-id -#: src/electron/main.tsx:685 +#: src/electron/main.tsx:696 msgid "Developer" msgstr "Developer" #. js-lingui-explicit-id -#: src/electron/main.tsx:688 +#: src/electron/main.tsx:699 msgid "Developer Tools" msgstr "Developer Tools" #. js-lingui-explicit-id -#: src/electron/main.tsx:696 +#: src/electron/main.tsx:707 msgid "Trigger Desktop Notification" msgstr "Trigger Desktop Notification" #. js-lingui-explicit-id -#: src/electron/main.tsx:725 +#: src/electron/main.tsx:736 msgid "Full Screen" msgstr "Full Screen" #. js-lingui-explicit-id -#: src/electron/main.tsx:732 +#: src/electron/main.tsx:743 msgid "Window" msgstr "Window" #. js-lingui-explicit-id -#: src/electron/main.tsx:746 +#: src/electron/main.tsx:757 msgid "Help" msgstr "Help" #. js-lingui-explicit-id -#: src/electron/main.tsx:750 +#: src/electron/main.tsx:761 msgid "Chia Blockchain Wiki" msgstr "Chia Blockchain Wiki" #. js-lingui-explicit-id -#: src/electron/main.tsx:756 +#: src/electron/main.tsx:767 msgid "Frequently Asked Questions" msgstr "Frequently Asked Questions" #. js-lingui-explicit-id -#: src/electron/main.tsx:762 +#: src/electron/main.tsx:773 msgid "Release Notes" msgstr "Release Notes" #. js-lingui-explicit-id -#: src/electron/main.tsx:768 +#: src/electron/main.tsx:779 msgid "Contribute on GitHub" msgstr "Contribute on GitHub" #. js-lingui-explicit-id -#: src/electron/main.tsx:777 +#: src/electron/main.tsx:788 msgid "Report an Issue..." msgstr "Report an Issue..." #. js-lingui-explicit-id -#: src/electron/main.tsx:783 +#: src/electron/main.tsx:794 msgid "Chat on Discord" msgstr "Chat on Discord" #. js-lingui-explicit-id -#: src/electron/main.tsx:789 +#: src/electron/main.tsx:800 msgid "Follow on Twitter" msgstr "Follow on Twitter" #. js-lingui-explicit-id -#: src/electron/main.tsx:801 +#: src/electron/main.tsx:812 msgid "Chia" msgstr "Chia" #. js-lingui-explicit-id -#: src/electron/main.tsx:804 -#: src/electron/main.tsx:897 +#: src/electron/main.tsx:815 +#: src/electron/main.tsx:908 msgid "About Chia Blockchain" msgstr "About Chia Blockchain" #. js-lingui-explicit-id -#: src/electron/main.tsx:810 +#: src/electron/main.tsx:821 msgid "Check for Updates..." msgstr "Check for Updates..." #. js-lingui-explicit-id -#: src/electron/main.tsx:858 +#: src/electron/main.tsx:869 msgid "Speech" msgstr "Speech" #. js-lingui-explicit-id -#: src/electron/main.tsx:903 +#: src/electron/main.tsx:914 msgid "Check for updates..." msgstr "Check for updates..." @@ -302,6 +302,10 @@ msgstr "* Enabled - use device at specified index if available; else error" msgid "*Usually it takes seconds to complete restarting." msgstr "*Usually it takes seconds to complete restarting." +#: src/components/notification/NotificationAnnouncementDialog.tsx:39 +msgid "##### Redacted for security reason #####" +msgstr "" + #: src/components/plot/overview/PlotOverviewPlots.tsx:42 msgid "+ Add a Plot" msgstr "+ Add a Plot" @@ -364,7 +368,7 @@ msgstr "Action" #: src/components/farm/FarmFullNodeConnections.tsx:54 #: src/components/farm/FarmYourHarvesterNetwork.tsx:54 #: src/components/fullNode/FullNodeConnections.tsx:65 -#: src/components/nfts/NFTContextualActions.tsx:587 +#: src/components/nfts/NFTContextualActions.tsx:590 #: src/components/offers2/OfferIncomingTable.tsx:111 msgid "Actions" msgstr "Actions" @@ -553,7 +557,7 @@ msgstr "" msgid "An NFT's provenance is a complete record of its ownership history. It provides a direct lineage that connects everyone who has owned the NFT, all the way back to the original artist. This helps to verify that the NFT is authentic." msgstr "An NFT's provenance is a complete record of its ownership history. It provides a direct lineage that connects everyone who has owned the NFT, all the way back to the original artist. This helps to verify that the NFT is authentic." -#: src/components/notification/NotificationAnnouncementDialog.tsx:35 +#: src/components/notification/NotificationAnnouncementDialog.tsx:49 msgid "Announcement" msgstr "" @@ -779,7 +783,7 @@ msgstr "Browse" #: src/components/nfts/NFTBurnDialog.tsx:90 #: src/components/nfts/NFTBurnDialog.tsx:185 -#: src/components/nfts/NFTContextualActions.tsx:525 +#: src/components/nfts/NFTContextualActions.tsx:528 msgid "Burn" msgstr "Burn" @@ -834,7 +838,7 @@ msgstr "" #: src/components/signVerify/VerifyMessage.tsx:271 #: src/components/vcs/VCEditTitle.tsx:76 #: src/components/vcs/VCRevokeDialog.tsx:28 -#: src/hooks/useOpenUnsafeLink.tsx:33 +#: src/hooks/useOpenUnsafeLink.tsx:62 msgid "Cancel" msgstr "Cancel" @@ -996,7 +1000,7 @@ msgstr "" #: src/components/nfts/MultipleDownloadDialog.tsx:116 #: src/components/nfts/NFTMoveToProfileDialog.tsx:328 #: src/components/nfts/NFTTransferAction.tsx:166 -#: src/components/notification/NotificationAnnouncementDialog.tsx:75 +#: src/components/notification/NotificationAnnouncementDialog.tsx:87 #: src/components/notification/NotificationSendDialog.tsx:308 #: src/components/offers/ConfirmOfferCancellation.tsx:126 #: src/components/offers/OfferShareDialog.tsx:373 @@ -1569,7 +1573,7 @@ msgid "Display sharing options after creating a new offer" msgstr "" #: src/components/offers/OfferShareDialog.tsx:945 -#: src/hooks/useOpenUnsafeLink.tsx:64 +#: src/hooks/useOpenUnsafeLink.tsx:93 msgid "Do not show this dialog again" msgstr "Do not show this dialog again" @@ -2112,7 +2116,7 @@ msgstr "" #~ msgid "Frequently Asked Questions" #~ msgstr "Frequently Asked Questions" -#: src/components/notification/NotificationAnnouncementDialog.tsx:44 +#: src/components/notification/NotificationAnnouncementDialog.tsx:58 msgid "From" msgstr "" @@ -2343,7 +2347,7 @@ msgstr "" #~ msgid "Hidden ({0})" #~ msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Hide" msgstr "Hide" @@ -2838,7 +2842,7 @@ msgstr "" msgid "Memos" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:53 +#: src/components/notification/NotificationAnnouncementDialog.tsx:67 #: src/components/signVerify/SignMessage.tsx:200 #: src/components/signVerify/VerifyMessage.tsx:207 #: src/constants/WalletConnectCommands.tsx:184 @@ -3533,7 +3537,7 @@ msgstr "" msgid "Open in Browser" msgstr "Open in Browser" -#: src/hooks/useOpenUnsafeLink.tsx:31 +#: src/hooks/useOpenUnsafeLink.tsx:60 msgid "Open Link" msgstr "Open Link" @@ -3724,7 +3728,7 @@ msgstr "Pending Confirm" msgid "Pending removal" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:38 +#: src/hooks/useOpenUnsafeLink.tsx:67 msgid "Please check the following link to verify the site you are going to visit. Proceed at your own risk." msgstr "Please check the following link to verify the site you are going to visit. Proceed at your own risk." @@ -4215,7 +4219,7 @@ msgstr "Recommended" msgid "Recursive Plot Scan" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:566 +#: src/components/nfts/NFTContextualActions.tsx:569 msgid "Refresh NFT data" msgstr "" @@ -4689,7 +4693,7 @@ msgstr "" #~ msgid "Share Privately" #~ msgstr "Share Privately" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Show" msgstr "Show" @@ -5233,6 +5237,10 @@ msgstr "This plot NFT is assigned to a different key. You can still create plots msgid "This table shows you the last time your farm attempted to win a block challenge. <0>Learn more" msgstr "This table shows you the last time your farm attempted to win a block challenge. <0>Learn more" +#: src/hooks/useOpenUnsafeLink.tsx:24 +msgid "This type of the URL is not allowed to open for security reasons." +msgstr "" + #: src/components/settings/SettingsIntegration.tsx:398 msgid "This will reset all previously granted permissions across all Dapps that have been connected to. After resetting you will be asked to grant permission again." msgstr "" @@ -5583,9 +5591,10 @@ msgstr "Update Pending" msgid "Uris" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:62 +#: src/components/notification/NotificationAnnouncementDialog.tsx:76 #: src/constants/WalletConnectCommands.tsx:964 -#: src/hooks/useOpenUnsafeLink.tsx:43 +#: src/hooks/useOpenUnsafeLink.tsx:27 +#: src/hooks/useOpenUnsafeLink.tsx:72 msgid "URL" msgstr "URL" @@ -5718,7 +5727,7 @@ msgstr "View on Dexie" #~ msgid "View on Hashgreen DEX" #~ msgstr "View on Hashgreen DEX" -#: src/components/nfts/NFTContextualActions.tsx:643 +#: src/components/nfts/NFTContextualActions.tsx:646 #: src/components/offers/OfferShareDialog.tsx:441 msgid "View on MintGarden" msgstr "View on MintGarden" @@ -5731,7 +5740,7 @@ msgstr "View on MintGarden" msgid "View on Offerpool" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:651 +#: src/components/nfts/NFTContextualActions.tsx:654 #: src/components/offers/OfferShareDialog.tsx:538 msgid "View on Spacescan.io" msgstr "View on Spacescan.io" @@ -5870,6 +5879,10 @@ msgstr "Warning" msgid "Warning Threshold" msgstr "" +#: src/hooks/useOpenUnsafeLink.tsx:21 +msgid "Warning: Invalid URL" +msgstr "" + #: src/components/app/AppVersionWarning.tsx:30 msgid "Warning: Mismatched Versions" msgstr "" @@ -5879,7 +5892,7 @@ msgstr "" msgid "Warning: Verify that the offered CAT asset IDs match the asset IDs of the tokens you expect to receive." msgstr "Warning: Verify that the offered CAT asset IDs match the asset IDs of the tokens you expect to receive." -#: src/hooks/useOpenUnsafeLink.tsx:30 +#: src/hooks/useOpenUnsafeLink.tsx:59 msgid "Warning: You're about to visit a website" msgstr "Warning: You're about to visit a website" diff --git a/packages/gui/src/locales/en-PT/messages.po b/packages/gui/src/locales/en-PT/messages.po index a6367589bc..7e911578e2 100644 --- a/packages/gui/src/locales/en-PT/messages.po +++ b/packages/gui/src/locales/en-PT/messages.po @@ -44,134 +44,134 @@ msgid "Would you like to transfer {count} NFTs to a new owner?" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "No" msgstr "Nay" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "Yes" msgstr "Aye" #. js-lingui-explicit-id -#: src/electron/main.tsx:511 +#: src/electron/main.tsx:522 msgid "Confirm" msgstr "Yarr" #. js-lingui-explicit-id -#: src/electron/main.tsx:513 +#: src/electron/main.tsx:524 msgid "Are you sure you want to quit?" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:518 +#: src/electron/main.tsx:529 msgid "Keep service running in the background" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:636 -#: src/electron/main.tsx:844 +#: src/electron/main.tsx:647 +#: src/electron/main.tsx:855 msgid "File" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:644 +#: src/electron/main.tsx:655 msgid "Edit" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:676 +#: src/electron/main.tsx:687 msgid "View" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:685 +#: src/electron/main.tsx:696 msgid "Developer" msgstr "Builder" #. js-lingui-explicit-id -#: src/electron/main.tsx:688 +#: src/electron/main.tsx:699 msgid "Developer Tools" msgstr "Builder Tools" #. js-lingui-explicit-id -#: src/electron/main.tsx:696 +#: src/electron/main.tsx:707 msgid "Trigger Desktop Notification" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:725 +#: src/electron/main.tsx:736 msgid "Full Screen" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:732 +#: src/electron/main.tsx:743 msgid "Window" msgstr "Porthole" #. js-lingui-explicit-id -#: src/electron/main.tsx:746 +#: src/electron/main.tsx:757 msgid "Help" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:750 +#: src/electron/main.tsx:761 msgid "Chia Blockchain Wiki" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:756 +#: src/electron/main.tsx:767 msgid "Frequently Asked Questions" msgstr "Oftentimes Asked Questions" #. js-lingui-explicit-id -#: src/electron/main.tsx:762 +#: src/electron/main.tsx:773 msgid "Release Notes" msgstr "Builder's Notes" #. js-lingui-explicit-id -#: src/electron/main.tsx:768 +#: src/electron/main.tsx:779 msgid "Contribute on GitHub" msgstr "Get yerself busy on GitHub" #. js-lingui-explicit-id -#: src/electron/main.tsx:777 +#: src/electron/main.tsx:788 msgid "Report an Issue..." msgstr "Speak up fer somethin'..." #. js-lingui-explicit-id -#: src/electron/main.tsx:783 +#: src/electron/main.tsx:794 msgid "Chat on Discord" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:789 +#: src/electron/main.tsx:800 msgid "Follow on Twitter" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:801 +#: src/electron/main.tsx:812 msgid "Chia" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:804 -#: src/electron/main.tsx:897 +#: src/electron/main.tsx:815 +#: src/electron/main.tsx:908 msgid "About Chia Blockchain" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:810 +#: src/electron/main.tsx:821 msgid "Check for Updates..." msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:858 +#: src/electron/main.tsx:869 msgid "Speech" msgstr "Parler" #. js-lingui-explicit-id -#: src/electron/main.tsx:903 +#: src/electron/main.tsx:914 msgid "Check for updates..." msgstr "" @@ -302,6 +302,10 @@ msgstr "" msgid "*Usually it takes seconds to complete restarting." msgstr "" +#: src/components/notification/NotificationAnnouncementDialog.tsx:39 +msgid "##### Redacted for security reason #####" +msgstr "" + #: src/components/plot/overview/PlotOverviewPlots.tsx:42 msgid "+ Add a Plot" msgstr "" @@ -364,7 +368,7 @@ msgstr "Order" #: src/components/farm/FarmFullNodeConnections.tsx:54 #: src/components/farm/FarmYourHarvesterNetwork.tsx:54 #: src/components/fullNode/FullNodeConnections.tsx:65 -#: src/components/nfts/NFTContextualActions.tsx:587 +#: src/components/nfts/NFTContextualActions.tsx:590 #: src/components/offers2/OfferIncomingTable.tsx:111 msgid "Actions" msgstr "Orders" @@ -553,7 +557,7 @@ msgstr "" msgid "An NFT's provenance is a complete record of its ownership history. It provides a direct lineage that connects everyone who has owned the NFT, all the way back to the original artist. This helps to verify that the NFT is authentic." msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:35 +#: src/components/notification/NotificationAnnouncementDialog.tsx:49 msgid "Announcement" msgstr "" @@ -779,7 +783,7 @@ msgstr "Look up" #: src/components/nfts/NFTBurnDialog.tsx:90 #: src/components/nfts/NFTBurnDialog.tsx:185 -#: src/components/nfts/NFTContextualActions.tsx:525 +#: src/components/nfts/NFTContextualActions.tsx:528 msgid "Burn" msgstr "" @@ -834,7 +838,7 @@ msgstr "" #: src/components/signVerify/VerifyMessage.tsx:271 #: src/components/vcs/VCEditTitle.tsx:76 #: src/components/vcs/VCRevokeDialog.tsx:28 -#: src/hooks/useOpenUnsafeLink.tsx:33 +#: src/hooks/useOpenUnsafeLink.tsx:62 msgid "Cancel" msgstr "Abandon" @@ -996,7 +1000,7 @@ msgstr "" #: src/components/nfts/MultipleDownloadDialog.tsx:116 #: src/components/nfts/NFTMoveToProfileDialog.tsx:328 #: src/components/nfts/NFTTransferAction.tsx:166 -#: src/components/notification/NotificationAnnouncementDialog.tsx:75 +#: src/components/notification/NotificationAnnouncementDialog.tsx:87 #: src/components/notification/NotificationSendDialog.tsx:308 #: src/components/offers/ConfirmOfferCancellation.tsx:126 #: src/components/offers/OfferShareDialog.tsx:373 @@ -1569,7 +1573,7 @@ msgid "Display sharing options after creating a new offer" msgstr "" #: src/components/offers/OfferShareDialog.tsx:945 -#: src/hooks/useOpenUnsafeLink.tsx:64 +#: src/hooks/useOpenUnsafeLink.tsx:93 msgid "Do not show this dialog again" msgstr "" @@ -2112,7 +2116,7 @@ msgstr "" #~ msgid "Frequently Asked Questions" #~ msgstr "Frequently Asked Questions" -#: src/components/notification/NotificationAnnouncementDialog.tsx:44 +#: src/components/notification/NotificationAnnouncementDialog.tsx:58 msgid "From" msgstr "" @@ -2343,7 +2347,7 @@ msgstr "" #~ msgid "Hidden ({0})" #~ msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Hide" msgstr "" @@ -2834,7 +2838,7 @@ msgstr "" msgid "Memos" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:53 +#: src/components/notification/NotificationAnnouncementDialog.tsx:67 #: src/components/signVerify/SignMessage.tsx:200 #: src/components/signVerify/VerifyMessage.tsx:207 #: src/constants/WalletConnectCommands.tsx:184 @@ -3529,7 +3533,7 @@ msgstr "" msgid "Open in Browser" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:31 +#: src/hooks/useOpenUnsafeLink.tsx:60 msgid "Open Link" msgstr "" @@ -3720,7 +3724,7 @@ msgstr "" msgid "Pending removal" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:38 +#: src/hooks/useOpenUnsafeLink.tsx:67 msgid "Please check the following link to verify the site you are going to visit. Proceed at your own risk." msgstr "" @@ -4211,7 +4215,7 @@ msgstr "" msgid "Recursive Plot Scan" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:566 +#: src/components/nfts/NFTContextualActions.tsx:569 msgid "Refresh NFT data" msgstr "" @@ -4685,7 +4689,7 @@ msgstr "" #~ msgid "Share Privately" #~ msgstr "Share Privately" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Show" msgstr "" @@ -5229,6 +5233,10 @@ msgstr "" msgid "This table shows you the last time your farm attempted to win a block challenge. <0>Learn more" msgstr "Here it shows the last time yer plunderer attempted t' take a ship fer booty. <0>Look fer more" +#: src/hooks/useOpenUnsafeLink.tsx:24 +msgid "This type of the URL is not allowed to open for security reasons." +msgstr "" + #: src/components/settings/SettingsIntegration.tsx:398 msgid "This will reset all previously granted permissions across all Dapps that have been connected to. After resetting you will be asked to grant permission again." msgstr "" @@ -5579,9 +5587,10 @@ msgstr "" msgid "Uris" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:62 +#: src/components/notification/NotificationAnnouncementDialog.tsx:76 #: src/constants/WalletConnectCommands.tsx:964 -#: src/hooks/useOpenUnsafeLink.tsx:43 +#: src/hooks/useOpenUnsafeLink.tsx:27 +#: src/hooks/useOpenUnsafeLink.tsx:72 msgid "URL" msgstr "" @@ -5714,7 +5723,7 @@ msgstr "" #~ msgid "View on Hashgreen DEX" #~ msgstr "View on Hashgreen DEX" -#: src/components/nfts/NFTContextualActions.tsx:643 +#: src/components/nfts/NFTContextualActions.tsx:646 #: src/components/offers/OfferShareDialog.tsx:441 msgid "View on MintGarden" msgstr "" @@ -5727,7 +5736,7 @@ msgstr "" msgid "View on Offerpool" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:651 +#: src/components/nfts/NFTContextualActions.tsx:654 #: src/components/offers/OfferShareDialog.tsx:538 msgid "View on Spacescan.io" msgstr "" @@ -5866,6 +5875,10 @@ msgstr "" msgid "Warning Threshold" msgstr "" +#: src/hooks/useOpenUnsafeLink.tsx:21 +msgid "Warning: Invalid URL" +msgstr "" + #: src/components/app/AppVersionWarning.tsx:30 msgid "Warning: Mismatched Versions" msgstr "" @@ -5875,7 +5888,7 @@ msgstr "" msgid "Warning: Verify that the offered CAT asset IDs match the asset IDs of the tokens you expect to receive." msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:30 +#: src/hooks/useOpenUnsafeLink.tsx:59 msgid "Warning: You're about to visit a website" msgstr "" diff --git a/packages/gui/src/locales/en-US/messages.po b/packages/gui/src/locales/en-US/messages.po index bf1e072335..a943566638 100644 --- a/packages/gui/src/locales/en-US/messages.po +++ b/packages/gui/src/locales/en-US/messages.po @@ -44,134 +44,134 @@ msgid "Would you like to transfer {count} NFTs to a new owner?" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "No" msgstr "No" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "Yes" msgstr "Yes" #. js-lingui-explicit-id -#: src/electron/main.tsx:511 +#: src/electron/main.tsx:522 msgid "Confirm" msgstr "Confirm" #. js-lingui-explicit-id -#: src/electron/main.tsx:513 +#: src/electron/main.tsx:524 msgid "Are you sure you want to quit?" msgstr "Are you sure you want to quit?" #. js-lingui-explicit-id -#: src/electron/main.tsx:518 +#: src/electron/main.tsx:529 msgid "Keep service running in the background" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:636 -#: src/electron/main.tsx:844 +#: src/electron/main.tsx:647 +#: src/electron/main.tsx:855 msgid "File" msgstr "File" #. js-lingui-explicit-id -#: src/electron/main.tsx:644 +#: src/electron/main.tsx:655 msgid "Edit" msgstr "Edit" #. js-lingui-explicit-id -#: src/electron/main.tsx:676 +#: src/electron/main.tsx:687 msgid "View" msgstr "View" #. js-lingui-explicit-id -#: src/electron/main.tsx:685 +#: src/electron/main.tsx:696 msgid "Developer" msgstr "Developer" #. js-lingui-explicit-id -#: src/electron/main.tsx:688 +#: src/electron/main.tsx:699 msgid "Developer Tools" msgstr "Developer Tools" #. js-lingui-explicit-id -#: src/electron/main.tsx:696 +#: src/electron/main.tsx:707 msgid "Trigger Desktop Notification" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:725 +#: src/electron/main.tsx:736 msgid "Full Screen" msgstr "Full Screen" #. js-lingui-explicit-id -#: src/electron/main.tsx:732 +#: src/electron/main.tsx:743 msgid "Window" msgstr "Window" #. js-lingui-explicit-id -#: src/electron/main.tsx:746 +#: src/electron/main.tsx:757 msgid "Help" msgstr "Help" #. js-lingui-explicit-id -#: src/electron/main.tsx:750 +#: src/electron/main.tsx:761 msgid "Chia Blockchain Wiki" msgstr "Chia Blockchain Wiki" #. js-lingui-explicit-id -#: src/electron/main.tsx:756 +#: src/electron/main.tsx:767 msgid "Frequently Asked Questions" msgstr "Frequently Asked Questions" #. js-lingui-explicit-id -#: src/electron/main.tsx:762 +#: src/electron/main.tsx:773 msgid "Release Notes" msgstr "Release Notes" #. js-lingui-explicit-id -#: src/electron/main.tsx:768 +#: src/electron/main.tsx:779 msgid "Contribute on GitHub" msgstr "Contribute on GitHub" #. js-lingui-explicit-id -#: src/electron/main.tsx:777 +#: src/electron/main.tsx:788 msgid "Report an Issue..." msgstr "Report an Issue..." #. js-lingui-explicit-id -#: src/electron/main.tsx:783 +#: src/electron/main.tsx:794 msgid "Chat on Discord" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:789 +#: src/electron/main.tsx:800 msgid "Follow on Twitter" msgstr "Follow on Twitter" #. js-lingui-explicit-id -#: src/electron/main.tsx:801 +#: src/electron/main.tsx:812 msgid "Chia" msgstr "Chia" #. js-lingui-explicit-id -#: src/electron/main.tsx:804 -#: src/electron/main.tsx:897 +#: src/electron/main.tsx:815 +#: src/electron/main.tsx:908 msgid "About Chia Blockchain" msgstr "About Chia Blockchain" #. js-lingui-explicit-id -#: src/electron/main.tsx:810 +#: src/electron/main.tsx:821 msgid "Check for Updates..." msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:858 +#: src/electron/main.tsx:869 msgid "Speech" msgstr "Speech" #. js-lingui-explicit-id -#: src/electron/main.tsx:903 +#: src/electron/main.tsx:914 msgid "Check for updates..." msgstr "" @@ -302,6 +302,10 @@ msgstr "" msgid "*Usually it takes seconds to complete restarting." msgstr "" +#: src/components/notification/NotificationAnnouncementDialog.tsx:39 +msgid "##### Redacted for security reason #####" +msgstr "##### Redacted for security reason #####" + #: src/components/plot/overview/PlotOverviewPlots.tsx:42 msgid "+ Add a Plot" msgstr "+ Add a Plot" @@ -364,7 +368,7 @@ msgstr "Action" #: src/components/farm/FarmFullNodeConnections.tsx:54 #: src/components/farm/FarmYourHarvesterNetwork.tsx:54 #: src/components/fullNode/FullNodeConnections.tsx:65 -#: src/components/nfts/NFTContextualActions.tsx:587 +#: src/components/nfts/NFTContextualActions.tsx:590 #: src/components/offers2/OfferIncomingTable.tsx:111 msgid "Actions" msgstr "Actions" @@ -553,7 +557,7 @@ msgstr "" msgid "An NFT's provenance is a complete record of its ownership history. It provides a direct lineage that connects everyone who has owned the NFT, all the way back to the original artist. This helps to verify that the NFT is authentic." msgstr "An NFT's provenance is a complete record of its ownership history. It provides a direct lineage that connects everyone who has owned the NFT, all the way back to the original artist. This helps to verify that the NFT is authentic." -#: src/components/notification/NotificationAnnouncementDialog.tsx:35 +#: src/components/notification/NotificationAnnouncementDialog.tsx:49 msgid "Announcement" msgstr "" @@ -779,7 +783,7 @@ msgstr "Browse" #: src/components/nfts/NFTBurnDialog.tsx:90 #: src/components/nfts/NFTBurnDialog.tsx:185 -#: src/components/nfts/NFTContextualActions.tsx:525 +#: src/components/nfts/NFTContextualActions.tsx:528 msgid "Burn" msgstr "Burn" @@ -834,7 +838,7 @@ msgstr "" #: src/components/signVerify/VerifyMessage.tsx:271 #: src/components/vcs/VCEditTitle.tsx:76 #: src/components/vcs/VCRevokeDialog.tsx:28 -#: src/hooks/useOpenUnsafeLink.tsx:33 +#: src/hooks/useOpenUnsafeLink.tsx:62 msgid "Cancel" msgstr "Cancel" @@ -996,7 +1000,7 @@ msgstr "" #: src/components/nfts/MultipleDownloadDialog.tsx:116 #: src/components/nfts/NFTMoveToProfileDialog.tsx:328 #: src/components/nfts/NFTTransferAction.tsx:166 -#: src/components/notification/NotificationAnnouncementDialog.tsx:75 +#: src/components/notification/NotificationAnnouncementDialog.tsx:87 #: src/components/notification/NotificationSendDialog.tsx:308 #: src/components/offers/ConfirmOfferCancellation.tsx:126 #: src/components/offers/OfferShareDialog.tsx:373 @@ -1569,7 +1573,7 @@ msgid "Display sharing options after creating a new offer" msgstr "" #: src/components/offers/OfferShareDialog.tsx:945 -#: src/hooks/useOpenUnsafeLink.tsx:64 +#: src/hooks/useOpenUnsafeLink.tsx:93 msgid "Do not show this dialog again" msgstr "Do not show this dialog again" @@ -2112,7 +2116,7 @@ msgstr "" #~ msgid "Frequently Asked Questions" #~ msgstr "Frequently Asked Questions" -#: src/components/notification/NotificationAnnouncementDialog.tsx:44 +#: src/components/notification/NotificationAnnouncementDialog.tsx:58 msgid "From" msgstr "" @@ -2343,7 +2347,7 @@ msgstr "" #~ msgid "Hidden ({0})" #~ msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Hide" msgstr "Hide" @@ -2838,7 +2842,7 @@ msgstr "" msgid "Memos" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:53 +#: src/components/notification/NotificationAnnouncementDialog.tsx:67 #: src/components/signVerify/SignMessage.tsx:200 #: src/components/signVerify/VerifyMessage.tsx:207 #: src/constants/WalletConnectCommands.tsx:184 @@ -3533,7 +3537,7 @@ msgstr "" msgid "Open in Browser" msgstr "Open in Browser" -#: src/hooks/useOpenUnsafeLink.tsx:31 +#: src/hooks/useOpenUnsafeLink.tsx:60 msgid "Open Link" msgstr "Open Link" @@ -3724,7 +3728,7 @@ msgstr "Pending Confirm" msgid "Pending removal" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:38 +#: src/hooks/useOpenUnsafeLink.tsx:67 msgid "Please check the following link to verify the site you are going to visit. Proceed at your own risk." msgstr "Please check the following link to verify the site you are going to visit. Proceed at your own risk." @@ -4215,7 +4219,7 @@ msgstr "Recommended" msgid "Recursive Plot Scan" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:566 +#: src/components/nfts/NFTContextualActions.tsx:569 msgid "Refresh NFT data" msgstr "" @@ -4689,7 +4693,7 @@ msgstr "" #~ msgid "Share Privately" #~ msgstr "Share Privately" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Show" msgstr "Show" @@ -5233,6 +5237,10 @@ msgstr "This plot NFT is assigned to a different key. You can still create plots msgid "This table shows you the last time your farm attempted to win a block challenge. <0>Learn more" msgstr "This table shows you the last time your farm attempted to win a block challenge. <0>Learn more" +#: src/hooks/useOpenUnsafeLink.tsx:24 +msgid "This type of the URL is not allowed to open for security reasons." +msgstr "This type of the URL is not allowed to open for security reasons." + #: src/components/settings/SettingsIntegration.tsx:398 msgid "This will reset all previously granted permissions across all Dapps that have been connected to. After resetting you will be asked to grant permission again." msgstr "" @@ -5583,9 +5591,10 @@ msgstr "Update Pending" msgid "Uris" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:62 +#: src/components/notification/NotificationAnnouncementDialog.tsx:76 #: src/constants/WalletConnectCommands.tsx:964 -#: src/hooks/useOpenUnsafeLink.tsx:43 +#: src/hooks/useOpenUnsafeLink.tsx:27 +#: src/hooks/useOpenUnsafeLink.tsx:72 msgid "URL" msgstr "URL" @@ -5718,7 +5727,7 @@ msgstr "View on Dexie" #~ msgid "View on Hashgreen DEX" #~ msgstr "View on Hashgreen DEX" -#: src/components/nfts/NFTContextualActions.tsx:643 +#: src/components/nfts/NFTContextualActions.tsx:646 #: src/components/offers/OfferShareDialog.tsx:441 msgid "View on MintGarden" msgstr "View on MintGarden" @@ -5731,7 +5740,7 @@ msgstr "View on MintGarden" msgid "View on Offerpool" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:651 +#: src/components/nfts/NFTContextualActions.tsx:654 #: src/components/offers/OfferShareDialog.tsx:538 msgid "View on Spacescan.io" msgstr "View on Spacescan.io" @@ -5870,6 +5879,10 @@ msgstr "Warning" msgid "Warning Threshold" msgstr "" +#: src/hooks/useOpenUnsafeLink.tsx:21 +msgid "Warning: Invalid URL" +msgstr "Warning: Invalid URL" + #: src/components/app/AppVersionWarning.tsx:30 msgid "Warning: Mismatched Versions" msgstr "" @@ -5879,7 +5892,7 @@ msgstr "" msgid "Warning: Verify that the offered CAT asset IDs match the asset IDs of the tokens you expect to receive." msgstr "Warning: Verify that the offered CAT asset IDs match the asset IDs of the tokens you expect to receive." -#: src/hooks/useOpenUnsafeLink.tsx:30 +#: src/hooks/useOpenUnsafeLink.tsx:59 msgid "Warning: You're about to visit a website" msgstr "Warning: You're about to visit a website" diff --git a/packages/gui/src/locales/es-AR/messages.po b/packages/gui/src/locales/es-AR/messages.po index baa5da0cb6..c6afc3d5f5 100644 --- a/packages/gui/src/locales/es-AR/messages.po +++ b/packages/gui/src/locales/es-AR/messages.po @@ -44,134 +44,134 @@ msgid "Would you like to transfer {count} NFTs to a new owner?" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "No" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "Yes" msgstr "Sí" #. js-lingui-explicit-id -#: src/electron/main.tsx:511 +#: src/electron/main.tsx:522 msgid "Confirm" msgstr "Confirmar" #. js-lingui-explicit-id -#: src/electron/main.tsx:513 +#: src/electron/main.tsx:524 msgid "Are you sure you want to quit?" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:518 +#: src/electron/main.tsx:529 msgid "Keep service running in the background" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:636 -#: src/electron/main.tsx:844 +#: src/electron/main.tsx:647 +#: src/electron/main.tsx:855 msgid "File" msgstr "Archivo" #. js-lingui-explicit-id -#: src/electron/main.tsx:644 +#: src/electron/main.tsx:655 msgid "Edit" msgstr "Editar" #. js-lingui-explicit-id -#: src/electron/main.tsx:676 +#: src/electron/main.tsx:687 msgid "View" msgstr "Vista" #. js-lingui-explicit-id -#: src/electron/main.tsx:685 +#: src/electron/main.tsx:696 msgid "Developer" msgstr "Desarrollador" #. js-lingui-explicit-id -#: src/electron/main.tsx:688 +#: src/electron/main.tsx:699 msgid "Developer Tools" msgstr "Herramientas de Desarrollador" #. js-lingui-explicit-id -#: src/electron/main.tsx:696 +#: src/electron/main.tsx:707 msgid "Trigger Desktop Notification" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:725 +#: src/electron/main.tsx:736 msgid "Full Screen" msgstr "Pantalla Completa" #. js-lingui-explicit-id -#: src/electron/main.tsx:732 +#: src/electron/main.tsx:743 msgid "Window" msgstr "Ventana" #. js-lingui-explicit-id -#: src/electron/main.tsx:746 +#: src/electron/main.tsx:757 msgid "Help" msgstr "Ayuda" #. js-lingui-explicit-id -#: src/electron/main.tsx:750 +#: src/electron/main.tsx:761 msgid "Chia Blockchain Wiki" msgstr "Wiki de la Blockchain de Chia" #. js-lingui-explicit-id -#: src/electron/main.tsx:756 +#: src/electron/main.tsx:767 msgid "Frequently Asked Questions" msgstr "Preguntas Frecuentes" #. js-lingui-explicit-id -#: src/electron/main.tsx:762 +#: src/electron/main.tsx:773 msgid "Release Notes" msgstr "Notas de la versión" #. js-lingui-explicit-id -#: src/electron/main.tsx:768 +#: src/electron/main.tsx:779 msgid "Contribute on GitHub" msgstr "Contribuir en GitHub" #. js-lingui-explicit-id -#: src/electron/main.tsx:777 +#: src/electron/main.tsx:788 msgid "Report an Issue..." msgstr "Reportar un problema..." #. js-lingui-explicit-id -#: src/electron/main.tsx:783 +#: src/electron/main.tsx:794 msgid "Chat on Discord" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:789 +#: src/electron/main.tsx:800 msgid "Follow on Twitter" msgstr "Seguinos en Twitter" #. js-lingui-explicit-id -#: src/electron/main.tsx:801 +#: src/electron/main.tsx:812 msgid "Chia" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:804 -#: src/electron/main.tsx:897 +#: src/electron/main.tsx:815 +#: src/electron/main.tsx:908 msgid "About Chia Blockchain" msgstr "Acerca de Chia Blockchain" #. js-lingui-explicit-id -#: src/electron/main.tsx:810 +#: src/electron/main.tsx:821 msgid "Check for Updates..." msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:858 +#: src/electron/main.tsx:869 msgid "Speech" msgstr "Habla" #. js-lingui-explicit-id -#: src/electron/main.tsx:903 +#: src/electron/main.tsx:914 msgid "Check for updates..." msgstr "" @@ -302,6 +302,10 @@ msgstr "" msgid "*Usually it takes seconds to complete restarting." msgstr "" +#: src/components/notification/NotificationAnnouncementDialog.tsx:39 +msgid "##### Redacted for security reason #####" +msgstr "" + #: src/components/plot/overview/PlotOverviewPlots.tsx:42 msgid "+ Add a Plot" msgstr "+ Agregar una Parcela" @@ -364,7 +368,7 @@ msgstr "Acción" #: src/components/farm/FarmFullNodeConnections.tsx:54 #: src/components/farm/FarmYourHarvesterNetwork.tsx:54 #: src/components/fullNode/FullNodeConnections.tsx:65 -#: src/components/nfts/NFTContextualActions.tsx:587 +#: src/components/nfts/NFTContextualActions.tsx:590 #: src/components/offers2/OfferIncomingTable.tsx:111 msgid "Actions" msgstr "Acciones" @@ -553,7 +557,7 @@ msgstr "" msgid "An NFT's provenance is a complete record of its ownership history. It provides a direct lineage that connects everyone who has owned the NFT, all the way back to the original artist. This helps to verify that the NFT is authentic." msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:35 +#: src/components/notification/NotificationAnnouncementDialog.tsx:49 msgid "Announcement" msgstr "" @@ -779,7 +783,7 @@ msgstr "Explorar" #: src/components/nfts/NFTBurnDialog.tsx:90 #: src/components/nfts/NFTBurnDialog.tsx:185 -#: src/components/nfts/NFTContextualActions.tsx:525 +#: src/components/nfts/NFTContextualActions.tsx:528 msgid "Burn" msgstr "" @@ -834,7 +838,7 @@ msgstr "" #: src/components/signVerify/VerifyMessage.tsx:271 #: src/components/vcs/VCEditTitle.tsx:76 #: src/components/vcs/VCRevokeDialog.tsx:28 -#: src/hooks/useOpenUnsafeLink.tsx:33 +#: src/hooks/useOpenUnsafeLink.tsx:62 msgid "Cancel" msgstr "Cancelar" @@ -996,7 +1000,7 @@ msgstr "" #: src/components/nfts/MultipleDownloadDialog.tsx:116 #: src/components/nfts/NFTMoveToProfileDialog.tsx:328 #: src/components/nfts/NFTTransferAction.tsx:166 -#: src/components/notification/NotificationAnnouncementDialog.tsx:75 +#: src/components/notification/NotificationAnnouncementDialog.tsx:87 #: src/components/notification/NotificationSendDialog.tsx:308 #: src/components/offers/ConfirmOfferCancellation.tsx:126 #: src/components/offers/OfferShareDialog.tsx:373 @@ -1569,7 +1573,7 @@ msgid "Display sharing options after creating a new offer" msgstr "" #: src/components/offers/OfferShareDialog.tsx:945 -#: src/hooks/useOpenUnsafeLink.tsx:64 +#: src/hooks/useOpenUnsafeLink.tsx:93 msgid "Do not show this dialog again" msgstr "" @@ -2112,7 +2116,7 @@ msgstr "" #~ msgid "Frequently Asked Questions" #~ msgstr "Frequently Asked Questions" -#: src/components/notification/NotificationAnnouncementDialog.tsx:44 +#: src/components/notification/NotificationAnnouncementDialog.tsx:58 msgid "From" msgstr "" @@ -2343,7 +2347,7 @@ msgstr "" #~ msgid "Hidden ({0})" #~ msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Hide" msgstr "" @@ -2834,7 +2838,7 @@ msgstr "" msgid "Memos" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:53 +#: src/components/notification/NotificationAnnouncementDialog.tsx:67 #: src/components/signVerify/SignMessage.tsx:200 #: src/components/signVerify/VerifyMessage.tsx:207 #: src/constants/WalletConnectCommands.tsx:184 @@ -3529,7 +3533,7 @@ msgstr "" msgid "Open in Browser" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:31 +#: src/hooks/useOpenUnsafeLink.tsx:60 msgid "Open Link" msgstr "" @@ -3720,7 +3724,7 @@ msgstr "" msgid "Pending removal" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:38 +#: src/hooks/useOpenUnsafeLink.tsx:67 msgid "Please check the following link to verify the site you are going to visit. Proceed at your own risk." msgstr "" @@ -4211,7 +4215,7 @@ msgstr "" msgid "Recursive Plot Scan" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:566 +#: src/components/nfts/NFTContextualActions.tsx:569 msgid "Refresh NFT data" msgstr "" @@ -4685,7 +4689,7 @@ msgstr "" #~ msgid "Share Privately" #~ msgstr "Share Privately" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Show" msgstr "" @@ -5229,6 +5233,10 @@ msgstr "" msgid "This table shows you the last time your farm attempted to win a block challenge. <0>Learn more" msgstr "Está tabla muestra la última vez que su granja intentó ganar un desafío de bloque. <0>Aprenda más" +#: src/hooks/useOpenUnsafeLink.tsx:24 +msgid "This type of the URL is not allowed to open for security reasons." +msgstr "" + #: src/components/settings/SettingsIntegration.tsx:398 msgid "This will reset all previously granted permissions across all Dapps that have been connected to. After resetting you will be asked to grant permission again." msgstr "" @@ -5579,9 +5587,10 @@ msgstr "" msgid "Uris" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:62 +#: src/components/notification/NotificationAnnouncementDialog.tsx:76 #: src/constants/WalletConnectCommands.tsx:964 -#: src/hooks/useOpenUnsafeLink.tsx:43 +#: src/hooks/useOpenUnsafeLink.tsx:27 +#: src/hooks/useOpenUnsafeLink.tsx:72 msgid "URL" msgstr "" @@ -5714,7 +5723,7 @@ msgstr "" #~ msgid "View on Hashgreen DEX" #~ msgstr "View on Hashgreen DEX" -#: src/components/nfts/NFTContextualActions.tsx:643 +#: src/components/nfts/NFTContextualActions.tsx:646 #: src/components/offers/OfferShareDialog.tsx:441 msgid "View on MintGarden" msgstr "" @@ -5727,7 +5736,7 @@ msgstr "" msgid "View on Offerpool" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:651 +#: src/components/nfts/NFTContextualActions.tsx:654 #: src/components/offers/OfferShareDialog.tsx:538 msgid "View on Spacescan.io" msgstr "" @@ -5866,6 +5875,10 @@ msgstr "" msgid "Warning Threshold" msgstr "" +#: src/hooks/useOpenUnsafeLink.tsx:21 +msgid "Warning: Invalid URL" +msgstr "" + #: src/components/app/AppVersionWarning.tsx:30 msgid "Warning: Mismatched Versions" msgstr "" @@ -5875,7 +5888,7 @@ msgstr "" msgid "Warning: Verify that the offered CAT asset IDs match the asset IDs of the tokens you expect to receive." msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:30 +#: src/hooks/useOpenUnsafeLink.tsx:59 msgid "Warning: You're about to visit a website" msgstr "" diff --git a/packages/gui/src/locales/es-ES/messages.po b/packages/gui/src/locales/es-ES/messages.po index f612ceab77..9538dc49da 100644 --- a/packages/gui/src/locales/es-ES/messages.po +++ b/packages/gui/src/locales/es-ES/messages.po @@ -44,134 +44,134 @@ msgid "Would you like to transfer {count} NFTs to a new owner?" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "No" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "Yes" msgstr "Sí" #. js-lingui-explicit-id -#: src/electron/main.tsx:511 +#: src/electron/main.tsx:522 msgid "Confirm" msgstr "Confirmar" #. js-lingui-explicit-id -#: src/electron/main.tsx:513 +#: src/electron/main.tsx:524 msgid "Are you sure you want to quit?" msgstr "¿Estás seguro de que deseas salir?" #. js-lingui-explicit-id -#: src/electron/main.tsx:518 +#: src/electron/main.tsx:529 msgid "Keep service running in the background" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:636 -#: src/electron/main.tsx:844 +#: src/electron/main.tsx:647 +#: src/electron/main.tsx:855 msgid "File" msgstr "Archivo" #. js-lingui-explicit-id -#: src/electron/main.tsx:644 +#: src/electron/main.tsx:655 msgid "Edit" msgstr "Editar" #. js-lingui-explicit-id -#: src/electron/main.tsx:676 +#: src/electron/main.tsx:687 msgid "View" msgstr "Vista" #. js-lingui-explicit-id -#: src/electron/main.tsx:685 +#: src/electron/main.tsx:696 msgid "Developer" msgstr "Desarrollador" #. js-lingui-explicit-id -#: src/electron/main.tsx:688 +#: src/electron/main.tsx:699 msgid "Developer Tools" msgstr "Herramientas de Desarrollador" #. js-lingui-explicit-id -#: src/electron/main.tsx:696 +#: src/electron/main.tsx:707 msgid "Trigger Desktop Notification" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:725 +#: src/electron/main.tsx:736 msgid "Full Screen" msgstr "Pantalla Completa" #. js-lingui-explicit-id -#: src/electron/main.tsx:732 +#: src/electron/main.tsx:743 msgid "Window" msgstr "Ventana" #. js-lingui-explicit-id -#: src/electron/main.tsx:746 +#: src/electron/main.tsx:757 msgid "Help" msgstr "Ayuda" #. js-lingui-explicit-id -#: src/electron/main.tsx:750 +#: src/electron/main.tsx:761 msgid "Chia Blockchain Wiki" msgstr "Wiki de la Blockchain de Chia" #. js-lingui-explicit-id -#: src/electron/main.tsx:756 +#: src/electron/main.tsx:767 msgid "Frequently Asked Questions" msgstr "Preguntas Frecuentes" #. js-lingui-explicit-id -#: src/electron/main.tsx:762 +#: src/electron/main.tsx:773 msgid "Release Notes" msgstr "Notas de lanzamiento" #. js-lingui-explicit-id -#: src/electron/main.tsx:768 +#: src/electron/main.tsx:779 msgid "Contribute on GitHub" msgstr "Contribuir en GitHub" #. js-lingui-explicit-id -#: src/electron/main.tsx:777 +#: src/electron/main.tsx:788 msgid "Report an Issue..." msgstr "Reportar un problema..." #. js-lingui-explicit-id -#: src/electron/main.tsx:783 +#: src/electron/main.tsx:794 msgid "Chat on Discord" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:789 +#: src/electron/main.tsx:800 msgid "Follow on Twitter" msgstr "Seguir en Twitter" #. js-lingui-explicit-id -#: src/electron/main.tsx:801 +#: src/electron/main.tsx:812 msgid "Chia" msgstr "Chía" #. js-lingui-explicit-id -#: src/electron/main.tsx:804 -#: src/electron/main.tsx:897 +#: src/electron/main.tsx:815 +#: src/electron/main.tsx:908 msgid "About Chia Blockchain" msgstr "Acerca de la Blockchain de Chía" #. js-lingui-explicit-id -#: src/electron/main.tsx:810 +#: src/electron/main.tsx:821 msgid "Check for Updates..." msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:858 +#: src/electron/main.tsx:869 msgid "Speech" msgstr "Habla" #. js-lingui-explicit-id -#: src/electron/main.tsx:903 +#: src/electron/main.tsx:914 msgid "Check for updates..." msgstr "" @@ -302,6 +302,10 @@ msgstr "" msgid "*Usually it takes seconds to complete restarting." msgstr "" +#: src/components/notification/NotificationAnnouncementDialog.tsx:39 +msgid "##### Redacted for security reason #####" +msgstr "" + #: src/components/plot/overview/PlotOverviewPlots.tsx:42 msgid "+ Add a Plot" msgstr "+ Agregar una Parcela" @@ -364,7 +368,7 @@ msgstr "Acción" #: src/components/farm/FarmFullNodeConnections.tsx:54 #: src/components/farm/FarmYourHarvesterNetwork.tsx:54 #: src/components/fullNode/FullNodeConnections.tsx:65 -#: src/components/nfts/NFTContextualActions.tsx:587 +#: src/components/nfts/NFTContextualActions.tsx:590 #: src/components/offers2/OfferIncomingTable.tsx:111 msgid "Actions" msgstr "Acciones" @@ -553,7 +557,7 @@ msgstr "" msgid "An NFT's provenance is a complete record of its ownership history. It provides a direct lineage that connects everyone who has owned the NFT, all the way back to the original artist. This helps to verify that the NFT is authentic." msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:35 +#: src/components/notification/NotificationAnnouncementDialog.tsx:49 msgid "Announcement" msgstr "" @@ -779,7 +783,7 @@ msgstr "Navegar" #: src/components/nfts/NFTBurnDialog.tsx:90 #: src/components/nfts/NFTBurnDialog.tsx:185 -#: src/components/nfts/NFTContextualActions.tsx:525 +#: src/components/nfts/NFTContextualActions.tsx:528 msgid "Burn" msgstr "" @@ -834,7 +838,7 @@ msgstr "" #: src/components/signVerify/VerifyMessage.tsx:271 #: src/components/vcs/VCEditTitle.tsx:76 #: src/components/vcs/VCRevokeDialog.tsx:28 -#: src/hooks/useOpenUnsafeLink.tsx:33 +#: src/hooks/useOpenUnsafeLink.tsx:62 msgid "Cancel" msgstr "Cancelar" @@ -996,7 +1000,7 @@ msgstr "" #: src/components/nfts/MultipleDownloadDialog.tsx:116 #: src/components/nfts/NFTMoveToProfileDialog.tsx:328 #: src/components/nfts/NFTTransferAction.tsx:166 -#: src/components/notification/NotificationAnnouncementDialog.tsx:75 +#: src/components/notification/NotificationAnnouncementDialog.tsx:87 #: src/components/notification/NotificationSendDialog.tsx:308 #: src/components/offers/ConfirmOfferCancellation.tsx:126 #: src/components/offers/OfferShareDialog.tsx:373 @@ -1569,7 +1573,7 @@ msgid "Display sharing options after creating a new offer" msgstr "" #: src/components/offers/OfferShareDialog.tsx:945 -#: src/hooks/useOpenUnsafeLink.tsx:64 +#: src/hooks/useOpenUnsafeLink.tsx:93 msgid "Do not show this dialog again" msgstr "" @@ -2112,7 +2116,7 @@ msgstr "" #~ msgid "Frequently Asked Questions" #~ msgstr "Frequently Asked Questions" -#: src/components/notification/NotificationAnnouncementDialog.tsx:44 +#: src/components/notification/NotificationAnnouncementDialog.tsx:58 msgid "From" msgstr "" @@ -2343,7 +2347,7 @@ msgstr "" #~ msgid "Hidden ({0})" #~ msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Hide" msgstr "" @@ -2834,7 +2838,7 @@ msgstr "" msgid "Memos" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:53 +#: src/components/notification/NotificationAnnouncementDialog.tsx:67 #: src/components/signVerify/SignMessage.tsx:200 #: src/components/signVerify/VerifyMessage.tsx:207 #: src/constants/WalletConnectCommands.tsx:184 @@ -3529,7 +3533,7 @@ msgstr "" msgid "Open in Browser" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:31 +#: src/hooks/useOpenUnsafeLink.tsx:60 msgid "Open Link" msgstr "" @@ -3720,7 +3724,7 @@ msgstr "" msgid "Pending removal" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:38 +#: src/hooks/useOpenUnsafeLink.tsx:67 msgid "Please check the following link to verify the site you are going to visit. Proceed at your own risk." msgstr "" @@ -4211,7 +4215,7 @@ msgstr "" msgid "Recursive Plot Scan" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:566 +#: src/components/nfts/NFTContextualActions.tsx:569 msgid "Refresh NFT data" msgstr "" @@ -4685,7 +4689,7 @@ msgstr "" #~ msgid "Share Privately" #~ msgstr "Share Privately" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Show" msgstr "" @@ -5229,6 +5233,10 @@ msgstr "Esta parcela NFT está asignada a una llave diferente. Todavía puede cr msgid "This table shows you the last time your farm attempted to win a block challenge. <0>Learn more" msgstr "Está tabla muestra la última vez que su granja intentó ganar un desafío de bloque. <0>Aprenda más" +#: src/hooks/useOpenUnsafeLink.tsx:24 +msgid "This type of the URL is not allowed to open for security reasons." +msgstr "" + #: src/components/settings/SettingsIntegration.tsx:398 msgid "This will reset all previously granted permissions across all Dapps that have been connected to. After resetting you will be asked to grant permission again." msgstr "" @@ -5579,9 +5587,10 @@ msgstr "" msgid "Uris" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:62 +#: src/components/notification/NotificationAnnouncementDialog.tsx:76 #: src/constants/WalletConnectCommands.tsx:964 -#: src/hooks/useOpenUnsafeLink.tsx:43 +#: src/hooks/useOpenUnsafeLink.tsx:27 +#: src/hooks/useOpenUnsafeLink.tsx:72 msgid "URL" msgstr "" @@ -5714,7 +5723,7 @@ msgstr "" #~ msgid "View on Hashgreen DEX" #~ msgstr "View on Hashgreen DEX" -#: src/components/nfts/NFTContextualActions.tsx:643 +#: src/components/nfts/NFTContextualActions.tsx:646 #: src/components/offers/OfferShareDialog.tsx:441 msgid "View on MintGarden" msgstr "" @@ -5727,7 +5736,7 @@ msgstr "" msgid "View on Offerpool" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:651 +#: src/components/nfts/NFTContextualActions.tsx:654 #: src/components/offers/OfferShareDialog.tsx:538 msgid "View on Spacescan.io" msgstr "" @@ -5866,6 +5875,10 @@ msgstr "" msgid "Warning Threshold" msgstr "" +#: src/hooks/useOpenUnsafeLink.tsx:21 +msgid "Warning: Invalid URL" +msgstr "" + #: src/components/app/AppVersionWarning.tsx:30 msgid "Warning: Mismatched Versions" msgstr "" @@ -5875,7 +5888,7 @@ msgstr "" msgid "Warning: Verify that the offered CAT asset IDs match the asset IDs of the tokens you expect to receive." msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:30 +#: src/hooks/useOpenUnsafeLink.tsx:59 msgid "Warning: You're about to visit a website" msgstr "" diff --git a/packages/gui/src/locales/es-MX/messages.po b/packages/gui/src/locales/es-MX/messages.po index 91bf37af54..bb8f850be1 100644 --- a/packages/gui/src/locales/es-MX/messages.po +++ b/packages/gui/src/locales/es-MX/messages.po @@ -44,134 +44,134 @@ msgid "Would you like to transfer {count} NFTs to a new owner?" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "No" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "Yes" msgstr "Sí" #. js-lingui-explicit-id -#: src/electron/main.tsx:511 +#: src/electron/main.tsx:522 msgid "Confirm" msgstr "Confirmar" #. js-lingui-explicit-id -#: src/electron/main.tsx:513 +#: src/electron/main.tsx:524 msgid "Are you sure you want to quit?" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:518 +#: src/electron/main.tsx:529 msgid "Keep service running in the background" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:636 -#: src/electron/main.tsx:844 +#: src/electron/main.tsx:647 +#: src/electron/main.tsx:855 msgid "File" msgstr "Archivo" #. js-lingui-explicit-id -#: src/electron/main.tsx:644 +#: src/electron/main.tsx:655 msgid "Edit" msgstr "Editar" #. js-lingui-explicit-id -#: src/electron/main.tsx:676 +#: src/electron/main.tsx:687 msgid "View" msgstr "Vista" #. js-lingui-explicit-id -#: src/electron/main.tsx:685 +#: src/electron/main.tsx:696 msgid "Developer" msgstr "Desarrollador" #. js-lingui-explicit-id -#: src/electron/main.tsx:688 +#: src/electron/main.tsx:699 msgid "Developer Tools" msgstr "Herramientas de Desarrollador" #. js-lingui-explicit-id -#: src/electron/main.tsx:696 +#: src/electron/main.tsx:707 msgid "Trigger Desktop Notification" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:725 +#: src/electron/main.tsx:736 msgid "Full Screen" msgstr "Pantalla Completa" #. js-lingui-explicit-id -#: src/electron/main.tsx:732 +#: src/electron/main.tsx:743 msgid "Window" msgstr "Ventana" #. js-lingui-explicit-id -#: src/electron/main.tsx:746 +#: src/electron/main.tsx:757 msgid "Help" msgstr "Ayuda" #. js-lingui-explicit-id -#: src/electron/main.tsx:750 +#: src/electron/main.tsx:761 msgid "Chia Blockchain Wiki" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:756 +#: src/electron/main.tsx:767 msgid "Frequently Asked Questions" msgstr "Preguntas Frecuentes" #. js-lingui-explicit-id -#: src/electron/main.tsx:762 +#: src/electron/main.tsx:773 msgid "Release Notes" msgstr "Notas de Versión" #. js-lingui-explicit-id -#: src/electron/main.tsx:768 +#: src/electron/main.tsx:779 msgid "Contribute on GitHub" msgstr "Contribuir en GitHub" #. js-lingui-explicit-id -#: src/electron/main.tsx:777 +#: src/electron/main.tsx:788 msgid "Report an Issue..." msgstr "Reportar un problema..." #. js-lingui-explicit-id -#: src/electron/main.tsx:783 +#: src/electron/main.tsx:794 msgid "Chat on Discord" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:789 +#: src/electron/main.tsx:800 msgid "Follow on Twitter" msgstr "Seguir en Twitter" #. js-lingui-explicit-id -#: src/electron/main.tsx:801 +#: src/electron/main.tsx:812 msgid "Chia" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:804 -#: src/electron/main.tsx:897 +#: src/electron/main.tsx:815 +#: src/electron/main.tsx:908 msgid "About Chia Blockchain" msgstr "Acerca de Chia Blockchain" #. js-lingui-explicit-id -#: src/electron/main.tsx:810 +#: src/electron/main.tsx:821 msgid "Check for Updates..." msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:858 +#: src/electron/main.tsx:869 msgid "Speech" msgstr "Habla" #. js-lingui-explicit-id -#: src/electron/main.tsx:903 +#: src/electron/main.tsx:914 msgid "Check for updates..." msgstr "" @@ -302,6 +302,10 @@ msgstr "" msgid "*Usually it takes seconds to complete restarting." msgstr "" +#: src/components/notification/NotificationAnnouncementDialog.tsx:39 +msgid "##### Redacted for security reason #####" +msgstr "" + #: src/components/plot/overview/PlotOverviewPlots.tsx:42 msgid "+ Add a Plot" msgstr "" @@ -364,7 +368,7 @@ msgstr "Acción" #: src/components/farm/FarmFullNodeConnections.tsx:54 #: src/components/farm/FarmYourHarvesterNetwork.tsx:54 #: src/components/fullNode/FullNodeConnections.tsx:65 -#: src/components/nfts/NFTContextualActions.tsx:587 +#: src/components/nfts/NFTContextualActions.tsx:590 #: src/components/offers2/OfferIncomingTable.tsx:111 msgid "Actions" msgstr "Acciones" @@ -553,7 +557,7 @@ msgstr "" msgid "An NFT's provenance is a complete record of its ownership history. It provides a direct lineage that connects everyone who has owned the NFT, all the way back to the original artist. This helps to verify that the NFT is authentic." msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:35 +#: src/components/notification/NotificationAnnouncementDialog.tsx:49 msgid "Announcement" msgstr "" @@ -779,7 +783,7 @@ msgstr "Navegar" #: src/components/nfts/NFTBurnDialog.tsx:90 #: src/components/nfts/NFTBurnDialog.tsx:185 -#: src/components/nfts/NFTContextualActions.tsx:525 +#: src/components/nfts/NFTContextualActions.tsx:528 msgid "Burn" msgstr "" @@ -834,7 +838,7 @@ msgstr "" #: src/components/signVerify/VerifyMessage.tsx:271 #: src/components/vcs/VCEditTitle.tsx:76 #: src/components/vcs/VCRevokeDialog.tsx:28 -#: src/hooks/useOpenUnsafeLink.tsx:33 +#: src/hooks/useOpenUnsafeLink.tsx:62 msgid "Cancel" msgstr "Cancelar" @@ -996,7 +1000,7 @@ msgstr "" #: src/components/nfts/MultipleDownloadDialog.tsx:116 #: src/components/nfts/NFTMoveToProfileDialog.tsx:328 #: src/components/nfts/NFTTransferAction.tsx:166 -#: src/components/notification/NotificationAnnouncementDialog.tsx:75 +#: src/components/notification/NotificationAnnouncementDialog.tsx:87 #: src/components/notification/NotificationSendDialog.tsx:308 #: src/components/offers/ConfirmOfferCancellation.tsx:126 #: src/components/offers/OfferShareDialog.tsx:373 @@ -1569,7 +1573,7 @@ msgid "Display sharing options after creating a new offer" msgstr "" #: src/components/offers/OfferShareDialog.tsx:945 -#: src/hooks/useOpenUnsafeLink.tsx:64 +#: src/hooks/useOpenUnsafeLink.tsx:93 msgid "Do not show this dialog again" msgstr "" @@ -2112,7 +2116,7 @@ msgstr "" #~ msgid "Frequently Asked Questions" #~ msgstr "Frequently Asked Questions" -#: src/components/notification/NotificationAnnouncementDialog.tsx:44 +#: src/components/notification/NotificationAnnouncementDialog.tsx:58 msgid "From" msgstr "" @@ -2343,7 +2347,7 @@ msgstr "" #~ msgid "Hidden ({0})" #~ msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Hide" msgstr "" @@ -2834,7 +2838,7 @@ msgstr "" msgid "Memos" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:53 +#: src/components/notification/NotificationAnnouncementDialog.tsx:67 #: src/components/signVerify/SignMessage.tsx:200 #: src/components/signVerify/VerifyMessage.tsx:207 #: src/constants/WalletConnectCommands.tsx:184 @@ -3529,7 +3533,7 @@ msgstr "" msgid "Open in Browser" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:31 +#: src/hooks/useOpenUnsafeLink.tsx:60 msgid "Open Link" msgstr "" @@ -3720,7 +3724,7 @@ msgstr "" msgid "Pending removal" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:38 +#: src/hooks/useOpenUnsafeLink.tsx:67 msgid "Please check the following link to verify the site you are going to visit. Proceed at your own risk." msgstr "" @@ -4211,7 +4215,7 @@ msgstr "" msgid "Recursive Plot Scan" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:566 +#: src/components/nfts/NFTContextualActions.tsx:569 msgid "Refresh NFT data" msgstr "" @@ -4685,7 +4689,7 @@ msgstr "" #~ msgid "Share Privately" #~ msgstr "Share Privately" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Show" msgstr "" @@ -5229,6 +5233,10 @@ msgstr "Esta parcela NFT está asignada a una llave diferente. Todavía puede cr msgid "This table shows you the last time your farm attempted to win a block challenge. <0>Learn more" msgstr "Está tabla muestra la última vez que su granja intentó ganar un desafío de bloque. <0>Aprenda más" +#: src/hooks/useOpenUnsafeLink.tsx:24 +msgid "This type of the URL is not allowed to open for security reasons." +msgstr "" + #: src/components/settings/SettingsIntegration.tsx:398 msgid "This will reset all previously granted permissions across all Dapps that have been connected to. After resetting you will be asked to grant permission again." msgstr "" @@ -5579,9 +5587,10 @@ msgstr "" msgid "Uris" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:62 +#: src/components/notification/NotificationAnnouncementDialog.tsx:76 #: src/constants/WalletConnectCommands.tsx:964 -#: src/hooks/useOpenUnsafeLink.tsx:43 +#: src/hooks/useOpenUnsafeLink.tsx:27 +#: src/hooks/useOpenUnsafeLink.tsx:72 msgid "URL" msgstr "" @@ -5714,7 +5723,7 @@ msgstr "" #~ msgid "View on Hashgreen DEX" #~ msgstr "View on Hashgreen DEX" -#: src/components/nfts/NFTContextualActions.tsx:643 +#: src/components/nfts/NFTContextualActions.tsx:646 #: src/components/offers/OfferShareDialog.tsx:441 msgid "View on MintGarden" msgstr "" @@ -5727,7 +5736,7 @@ msgstr "" msgid "View on Offerpool" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:651 +#: src/components/nfts/NFTContextualActions.tsx:654 #: src/components/offers/OfferShareDialog.tsx:538 msgid "View on Spacescan.io" msgstr "" @@ -5866,6 +5875,10 @@ msgstr "" msgid "Warning Threshold" msgstr "" +#: src/hooks/useOpenUnsafeLink.tsx:21 +msgid "Warning: Invalid URL" +msgstr "" + #: src/components/app/AppVersionWarning.tsx:30 msgid "Warning: Mismatched Versions" msgstr "" @@ -5875,7 +5888,7 @@ msgstr "" msgid "Warning: Verify that the offered CAT asset IDs match the asset IDs of the tokens you expect to receive." msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:30 +#: src/hooks/useOpenUnsafeLink.tsx:59 msgid "Warning: You're about to visit a website" msgstr "" diff --git a/packages/gui/src/locales/fa-IR/messages.po b/packages/gui/src/locales/fa-IR/messages.po index 668e6a4c01..f30d3ceabc 100644 --- a/packages/gui/src/locales/fa-IR/messages.po +++ b/packages/gui/src/locales/fa-IR/messages.po @@ -44,134 +44,134 @@ msgid "Would you like to transfer {count} NFTs to a new owner?" msgstr "از ان اف تی ها را به مالک جدیدی انتقال دهید؟ {count} آیا میخواهید" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "No" msgstr "خیر" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "Yes" msgstr "بله" #. js-lingui-explicit-id -#: src/electron/main.tsx:511 +#: src/electron/main.tsx:522 msgid "Confirm" msgstr "تایید" #. js-lingui-explicit-id -#: src/electron/main.tsx:513 +#: src/electron/main.tsx:524 msgid "Are you sure you want to quit?" msgstr "آیا مطمئن هستید که میخواهید خارج شوید؟" #. js-lingui-explicit-id -#: src/electron/main.tsx:518 +#: src/electron/main.tsx:529 msgid "Keep service running in the background" msgstr "بگدارید سرویس در پس‌زمینه اجرا شود" #. js-lingui-explicit-id -#: src/electron/main.tsx:636 -#: src/electron/main.tsx:844 +#: src/electron/main.tsx:647 +#: src/electron/main.tsx:855 msgid "File" msgstr "فایل" #. js-lingui-explicit-id -#: src/electron/main.tsx:644 +#: src/electron/main.tsx:655 msgid "Edit" msgstr "ويرايش" #. js-lingui-explicit-id -#: src/electron/main.tsx:676 +#: src/electron/main.tsx:687 msgid "View" msgstr "مشاهده" #. js-lingui-explicit-id -#: src/electron/main.tsx:685 +#: src/electron/main.tsx:696 msgid "Developer" msgstr "توسعه دهنده" #. js-lingui-explicit-id -#: src/electron/main.tsx:688 +#: src/electron/main.tsx:699 msgid "Developer Tools" msgstr "ابزارهای توسعه دهنده" #. js-lingui-explicit-id -#: src/electron/main.tsx:696 +#: src/electron/main.tsx:707 msgid "Trigger Desktop Notification" msgstr "راه‌اندازی اعلان دسکتاپ" #. js-lingui-explicit-id -#: src/electron/main.tsx:725 +#: src/electron/main.tsx:736 msgid "Full Screen" msgstr "نمایش تمام صفحه" #. js-lingui-explicit-id -#: src/electron/main.tsx:732 +#: src/electron/main.tsx:743 msgid "Window" msgstr "پنجره" #. js-lingui-explicit-id -#: src/electron/main.tsx:746 +#: src/electron/main.tsx:757 msgid "Help" msgstr "راهنما" #. js-lingui-explicit-id -#: src/electron/main.tsx:750 +#: src/electron/main.tsx:761 msgid "Chia Blockchain Wiki" msgstr "بلاکچین چیا در ویکیپدیا" #. js-lingui-explicit-id -#: src/electron/main.tsx:756 +#: src/electron/main.tsx:767 msgid "Frequently Asked Questions" msgstr "پرسش ها و پاسخ های متداول" #. js-lingui-explicit-id -#: src/electron/main.tsx:762 +#: src/electron/main.tsx:773 msgid "Release Notes" msgstr "یادداشت‌های انتشار" #. js-lingui-explicit-id -#: src/electron/main.tsx:768 +#: src/electron/main.tsx:779 msgid "Contribute on GitHub" msgstr "مشارکت در GitHub" #. js-lingui-explicit-id -#: src/electron/main.tsx:777 +#: src/electron/main.tsx:788 msgid "Report an Issue..." msgstr "گزارش یک خطا..." #. js-lingui-explicit-id -#: src/electron/main.tsx:783 +#: src/electron/main.tsx:794 msgid "Chat on Discord" msgstr "اشتراک گداری در Discord" #. js-lingui-explicit-id -#: src/electron/main.tsx:789 +#: src/electron/main.tsx:800 msgid "Follow on Twitter" msgstr "در ایکس دنبال کنید" #. js-lingui-explicit-id -#: src/electron/main.tsx:801 +#: src/electron/main.tsx:812 msgid "Chia" msgstr "چیا" #. js-lingui-explicit-id -#: src/electron/main.tsx:804 -#: src/electron/main.tsx:897 +#: src/electron/main.tsx:815 +#: src/electron/main.tsx:908 msgid "About Chia Blockchain" msgstr "درباره بلاکچین چیا" #. js-lingui-explicit-id -#: src/electron/main.tsx:810 +#: src/electron/main.tsx:821 msgid "Check for Updates..." msgstr "بروز رسانی را بررسی کنید..." #. js-lingui-explicit-id -#: src/electron/main.tsx:858 +#: src/electron/main.tsx:869 msgid "Speech" msgstr "سخن" #. js-lingui-explicit-id -#: src/electron/main.tsx:903 +#: src/electron/main.tsx:914 msgid "Check for updates..." msgstr "بروز رسانی را بررسی کنید..." @@ -302,6 +302,10 @@ msgstr "* فعال - در صورت موجود بودن از دستگاه در ف msgid "*Usually it takes seconds to complete restarting." msgstr "*معمولاً چند ثانیه طول میکشد تا راه اندازی مجدد کامل شود." +#: src/components/notification/NotificationAnnouncementDialog.tsx:39 +msgid "##### Redacted for security reason #####" +msgstr "" + #: src/components/plot/overview/PlotOverviewPlots.tsx:42 msgid "+ Add a Plot" msgstr "+ افزودن یک پلات" @@ -364,7 +368,7 @@ msgstr "اقدام" #: src/components/farm/FarmFullNodeConnections.tsx:54 #: src/components/farm/FarmYourHarvesterNetwork.tsx:54 #: src/components/fullNode/FullNodeConnections.tsx:65 -#: src/components/nfts/NFTContextualActions.tsx:587 +#: src/components/nfts/NFTContextualActions.tsx:590 #: src/components/offers2/OfferIncomingTable.tsx:111 msgid "Actions" msgstr "اقدامات" @@ -553,7 +557,7 @@ msgstr "افزایش تعداد نقاط علامت گمشده (اس پی) نش msgid "An NFT's provenance is a complete record of its ownership history. It provides a direct lineage that connects everyone who has owned the NFT, all the way back to the original artist. This helps to verify that the NFT is authentic." msgstr "منشأ یک ان اف تی رکورد کامل از تاریخچه مالکیت آن است. این یک اصل و نسب مستقیم را فراهم میکند تا همه کسانی که ان اف تی دارند، را به هنرمند اصلی متصل کند. این به تأیید اعتبار ان اف تی کمک میکند." -#: src/components/notification/NotificationAnnouncementDialog.tsx:35 +#: src/components/notification/NotificationAnnouncementDialog.tsx:49 msgid "Announcement" msgstr "اعلان" @@ -779,7 +783,7 @@ msgstr "دیدن در سایت" #: src/components/nfts/NFTBurnDialog.tsx:90 #: src/components/nfts/NFTBurnDialog.tsx:185 -#: src/components/nfts/NFTContextualActions.tsx:525 +#: src/components/nfts/NFTContextualActions.tsx:528 msgid "Burn" msgstr "سوزاندن" @@ -834,7 +838,7 @@ msgstr "(GB) مقدار حافظه پنهان" #: src/components/signVerify/VerifyMessage.tsx:271 #: src/components/vcs/VCEditTitle.tsx:76 #: src/components/vcs/VCRevokeDialog.tsx:28 -#: src/hooks/useOpenUnsafeLink.tsx:33 +#: src/hooks/useOpenUnsafeLink.tsx:62 msgid "Cancel" msgstr "لغو" @@ -996,7 +1000,7 @@ msgstr "با کلیک بر روی نماد حذف فقط یک پوشه از ای #: src/components/nfts/MultipleDownloadDialog.tsx:116 #: src/components/nfts/NFTMoveToProfileDialog.tsx:328 #: src/components/nfts/NFTTransferAction.tsx:166 -#: src/components/notification/NotificationAnnouncementDialog.tsx:75 +#: src/components/notification/NotificationAnnouncementDialog.tsx:87 #: src/components/notification/NotificationSendDialog.tsx:308 #: src/components/offers/ConfirmOfferCancellation.tsx:126 #: src/components/offers/OfferShareDialog.tsx:373 @@ -1569,7 +1573,7 @@ msgid "Display sharing options after creating a new offer" msgstr "نمایش گزینه های اشتراک گذاری پس از ایجاد یک پیشنهاد جدید" #: src/components/offers/OfferShareDialog.tsx:945 -#: src/hooks/useOpenUnsafeLink.tsx:64 +#: src/hooks/useOpenUnsafeLink.tsx:93 msgid "Do not show this dialog again" msgstr "این مباحثه را دیگر نشان ندهید" @@ -2112,7 +2116,7 @@ msgstr "قراردادن تصاویر روی کارتها" #~ msgid "Frequently Asked Questions" #~ msgstr "Frequently Asked Questions" -#: src/components/notification/NotificationAnnouncementDialog.tsx:44 +#: src/components/notification/NotificationAnnouncementDialog.tsx:58 msgid "From" msgstr "از" @@ -2343,7 +2347,7 @@ msgstr "<0/> پنهان شده" #~ msgid "Hidden ({0})" #~ msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Hide" msgstr "مخفی" @@ -2838,7 +2842,7 @@ msgstr "عضویت ها" msgid "Memos" msgstr "یادداشت ها" -#: src/components/notification/NotificationAnnouncementDialog.tsx:53 +#: src/components/notification/NotificationAnnouncementDialog.tsx:67 #: src/components/signVerify/SignMessage.tsx:200 #: src/components/signVerify/VerifyMessage.tsx:207 #: src/constants/WalletConnectCommands.tsx:184 @@ -3533,7 +3537,7 @@ msgstr "دارایی های کلکسیونی منحصر به فرد" msgid "Open in Browser" msgstr "بازکردن در مرورگر" -#: src/hooks/useOpenUnsafeLink.tsx:31 +#: src/hooks/useOpenUnsafeLink.tsx:60 msgid "Open Link" msgstr "بازکردن لینک" @@ -3724,7 +3728,7 @@ msgstr "در انتظار تایید" msgid "Pending removal" msgstr "در انتظار حذف" -#: src/hooks/useOpenUnsafeLink.tsx:38 +#: src/hooks/useOpenUnsafeLink.tsx:67 msgid "Please check the following link to verify the site you are going to visit. Proceed at your own risk." msgstr "لطفا لینک زیر را بررسی کنید تا از سایتی که میخواهید ببینید مطمن شوید. با مسئولیت خود ادامه دهید." @@ -4215,7 +4219,7 @@ msgstr "توصیه شده" msgid "Recursive Plot Scan" msgstr "بازنگری پلات برگشتی" -#: src/components/nfts/NFTContextualActions.tsx:566 +#: src/components/nfts/NFTContextualActions.tsx:569 msgid "Refresh NFT data" msgstr "اطلاعات ان اف تی را تازه کنید" @@ -4689,7 +4693,7 @@ msgstr "Spacescan.io اشتراک در " #~ msgid "Share Privately" #~ msgstr "Share Privately" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Show" msgstr "نمایش" @@ -5233,6 +5237,10 @@ msgstr "این پلات ان اف تی به کلید دیگری اختصاص د msgid "This table shows you the last time your farm attempted to win a block challenge. <0>Learn more" msgstr "این جدول به شما نشان میدهد که آخرین بار چه زمانی فارم شما در چالش فارم یک بلاک برنده شد. <0>بیشتر بدانید" +#: src/hooks/useOpenUnsafeLink.tsx:24 +msgid "This type of the URL is not allowed to open for security reasons." +msgstr "" + #: src/components/settings/SettingsIntegration.tsx:398 msgid "This will reset all previously granted permissions across all Dapps that have been connected to. After resetting you will be asked to grant permission again." msgstr "هایی که به آنها متصل شده اند بتنظیم مجدد میشود. پس از تنظیم مجدد، از شما خواسته میشود که دوباره مجوز بدهید. Dapp با این کار همه مجوزهای قبلاً اعطا شده در همه" @@ -5583,9 +5591,10 @@ msgstr "منتظر بروزرسانی" msgid "Uris" msgstr "Uris" -#: src/components/notification/NotificationAnnouncementDialog.tsx:62 +#: src/components/notification/NotificationAnnouncementDialog.tsx:76 #: src/constants/WalletConnectCommands.tsx:964 -#: src/hooks/useOpenUnsafeLink.tsx:43 +#: src/hooks/useOpenUnsafeLink.tsx:27 +#: src/hooks/useOpenUnsafeLink.tsx:72 msgid "URL" msgstr "آدرس سایت" @@ -5718,7 +5727,7 @@ msgstr "دیدن در دکسی" #~ msgid "View on Hashgreen DEX" #~ msgstr "View on Hashgreen DEX" -#: src/components/nfts/NFTContextualActions.tsx:643 +#: src/components/nfts/NFTContextualActions.tsx:646 #: src/components/offers/OfferShareDialog.tsx:441 msgid "View on MintGarden" msgstr "MintGarden دیدن در" @@ -5731,7 +5740,7 @@ msgstr "MintGarden دیدن در" msgid "View on Offerpool" msgstr "Offerpool دیدن در" -#: src/components/nfts/NFTContextualActions.tsx:651 +#: src/components/nfts/NFTContextualActions.tsx:654 #: src/components/offers/OfferShareDialog.tsx:538 msgid "View on Spacescan.io" msgstr "Spacescan.io دیدن در" @@ -5870,6 +5879,10 @@ msgstr "اخطار" msgid "Warning Threshold" msgstr "آستانه هشدار" +#: src/hooks/useOpenUnsafeLink.tsx:21 +msgid "Warning: Invalid URL" +msgstr "" + #: src/components/app/AppVersionWarning.tsx:30 msgid "Warning: Mismatched Versions" msgstr "هشدار: نسخه های نامتناسب" @@ -5879,7 +5892,7 @@ msgstr "هشدار: نسخه های نامتناسب" msgid "Warning: Verify that the offered CAT asset IDs match the asset IDs of the tokens you expect to receive." msgstr "اخطار: بررسی کنید که شناسه‌های دارایی CAT ارائه شده با شناسه‌های دارایی توکن‌هایی که انتظار دریافت آنرا دارید، مطابقت داشته باشد." -#: src/hooks/useOpenUnsafeLink.tsx:30 +#: src/hooks/useOpenUnsafeLink.tsx:59 msgid "Warning: You're about to visit a website" msgstr "اخطار: شما در شرف بازدید از یک وب سایت هستید" diff --git a/packages/gui/src/locales/fi-FI/messages.po b/packages/gui/src/locales/fi-FI/messages.po index 21cbb72b7b..d3e91144aa 100644 --- a/packages/gui/src/locales/fi-FI/messages.po +++ b/packages/gui/src/locales/fi-FI/messages.po @@ -44,134 +44,134 @@ msgid "Would you like to transfer {count} NFTs to a new owner?" msgstr "Haluatko siirtää {count} NFT:tä uudelle omistajalle?" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "No" msgstr "Ei" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "Yes" msgstr "Kyllä" #. js-lingui-explicit-id -#: src/electron/main.tsx:511 +#: src/electron/main.tsx:522 msgid "Confirm" msgstr "Vahvista" #. js-lingui-explicit-id -#: src/electron/main.tsx:513 +#: src/electron/main.tsx:524 msgid "Are you sure you want to quit?" msgstr "Oletko varma että haluat lopettaa?" #. js-lingui-explicit-id -#: src/electron/main.tsx:518 +#: src/electron/main.tsx:529 msgid "Keep service running in the background" msgstr "Pidä palvelu käynnissä taustalla" #. js-lingui-explicit-id -#: src/electron/main.tsx:636 -#: src/electron/main.tsx:844 +#: src/electron/main.tsx:647 +#: src/electron/main.tsx:855 msgid "File" msgstr "Tiedosto" #. js-lingui-explicit-id -#: src/electron/main.tsx:644 +#: src/electron/main.tsx:655 msgid "Edit" msgstr "Muokkaa" #. js-lingui-explicit-id -#: src/electron/main.tsx:676 +#: src/electron/main.tsx:687 msgid "View" msgstr "Näkymä" #. js-lingui-explicit-id -#: src/electron/main.tsx:685 +#: src/electron/main.tsx:696 msgid "Developer" msgstr "Kehittäjä" #. js-lingui-explicit-id -#: src/electron/main.tsx:688 +#: src/electron/main.tsx:699 msgid "Developer Tools" msgstr "Kehitystyökalut" #. js-lingui-explicit-id -#: src/electron/main.tsx:696 +#: src/electron/main.tsx:707 msgid "Trigger Desktop Notification" msgstr "Käynnistä Työpöytä-ilmoitus" #. js-lingui-explicit-id -#: src/electron/main.tsx:725 +#: src/electron/main.tsx:736 msgid "Full Screen" msgstr "Kokoruutu" #. js-lingui-explicit-id -#: src/electron/main.tsx:732 +#: src/electron/main.tsx:743 msgid "Window" msgstr "Ikkuna" #. js-lingui-explicit-id -#: src/electron/main.tsx:746 +#: src/electron/main.tsx:757 msgid "Help" msgstr "Apuja" #. js-lingui-explicit-id -#: src/electron/main.tsx:750 +#: src/electron/main.tsx:761 msgid "Chia Blockchain Wiki" msgstr "Chia Wiki" #. js-lingui-explicit-id -#: src/electron/main.tsx:756 +#: src/electron/main.tsx:767 msgid "Frequently Asked Questions" msgstr "Usein Kysytyt Kysymykset" #. js-lingui-explicit-id -#: src/electron/main.tsx:762 +#: src/electron/main.tsx:773 msgid "Release Notes" msgstr "Version Muutokset" #. js-lingui-explicit-id -#: src/electron/main.tsx:768 +#: src/electron/main.tsx:779 msgid "Contribute on GitHub" msgstr "Anna panoksesi GitHubissa" #. js-lingui-explicit-id -#: src/electron/main.tsx:777 +#: src/electron/main.tsx:788 msgid "Report an Issue..." msgstr "Raportoi Ongelma..." #. js-lingui-explicit-id -#: src/electron/main.tsx:783 +#: src/electron/main.tsx:794 msgid "Chat on Discord" msgstr "Chattaa Discordissa" #. js-lingui-explicit-id -#: src/electron/main.tsx:789 +#: src/electron/main.tsx:800 msgid "Follow on Twitter" msgstr "Seuraa Twitterissä" #. js-lingui-explicit-id -#: src/electron/main.tsx:801 +#: src/electron/main.tsx:812 msgid "Chia" msgstr "Chia" #. js-lingui-explicit-id -#: src/electron/main.tsx:804 -#: src/electron/main.tsx:897 +#: src/electron/main.tsx:815 +#: src/electron/main.tsx:908 msgid "About Chia Blockchain" msgstr "Chia Lohkoketjusta" #. js-lingui-explicit-id -#: src/electron/main.tsx:810 +#: src/electron/main.tsx:821 msgid "Check for Updates..." msgstr "Tarkista päivitykset..." #. js-lingui-explicit-id -#: src/electron/main.tsx:858 +#: src/electron/main.tsx:869 msgid "Speech" msgstr "Puhe" #. js-lingui-explicit-id -#: src/electron/main.tsx:903 +#: src/electron/main.tsx:914 msgid "Check for updates..." msgstr "Tarkista päivitykset..." @@ -302,6 +302,10 @@ msgstr "* Käytössä - käytä laitetta määritetyssä indeksissä, jos käyte msgid "*Usually it takes seconds to complete restarting." msgstr "*Yleensä täydellinen uudelleenkäynnistys kestää sekunteja." +#: src/components/notification/NotificationAnnouncementDialog.tsx:39 +msgid "##### Redacted for security reason #####" +msgstr "" + #: src/components/plot/overview/PlotOverviewPlots.tsx:42 msgid "+ Add a Plot" msgstr "+ Plottaa tiedosto" @@ -364,7 +368,7 @@ msgstr "Toiminto" #: src/components/farm/FarmFullNodeConnections.tsx:54 #: src/components/farm/FarmYourHarvesterNetwork.tsx:54 #: src/components/fullNode/FullNodeConnections.tsx:65 -#: src/components/nfts/NFTContextualActions.tsx:587 +#: src/components/nfts/NFTContextualActions.tsx:590 #: src/components/offers2/OfferIncomingTable.tsx:111 msgid "Actions" msgstr "Toiminnot" @@ -553,7 +557,7 @@ msgstr "Puuttuvien signage-pisteiden (SP) määrän kasvu viittaa siihen, että msgid "An NFT's provenance is a complete record of its ownership history. It provides a direct lineage that connects everyone who has owned the NFT, all the way back to the original artist. This helps to verify that the NFT is authentic." msgstr "NFT:n alkuperä on täydellinen historia sen omistusoikeudesta. Se yhdistää kaikki, jotka ovat omistaneet NFT:n, aina takaisin alkuperäiseen tekijään. Tämä auttaa varmistamaan, että NFT on aito." -#: src/components/notification/NotificationAnnouncementDialog.tsx:35 +#: src/components/notification/NotificationAnnouncementDialog.tsx:49 msgid "Announcement" msgstr "Tiedotus" @@ -779,7 +783,7 @@ msgstr "Selaa" #: src/components/nfts/NFTBurnDialog.tsx:90 #: src/components/nfts/NFTBurnDialog.tsx:185 -#: src/components/nfts/NFTContextualActions.tsx:525 +#: src/components/nfts/NFTContextualActions.tsx:528 msgid "Burn" msgstr "Polta" @@ -834,7 +838,7 @@ msgstr "Välimuistin koko (GB)" #: src/components/signVerify/VerifyMessage.tsx:271 #: src/components/vcs/VCEditTitle.tsx:76 #: src/components/vcs/VCRevokeDialog.tsx:28 -#: src/hooks/useOpenUnsafeLink.tsx:33 +#: src/hooks/useOpenUnsafeLink.tsx:62 msgid "Cancel" msgstr "Peru" @@ -996,7 +1000,7 @@ msgstr "Poistokuvakkeen napsauttaminen poistaa vain hakemiston tästä listasta #: src/components/nfts/MultipleDownloadDialog.tsx:116 #: src/components/nfts/NFTMoveToProfileDialog.tsx:328 #: src/components/nfts/NFTTransferAction.tsx:166 -#: src/components/notification/NotificationAnnouncementDialog.tsx:75 +#: src/components/notification/NotificationAnnouncementDialog.tsx:87 #: src/components/notification/NotificationSendDialog.tsx:308 #: src/components/offers/ConfirmOfferCancellation.tsx:126 #: src/components/offers/OfferShareDialog.tsx:373 @@ -1569,7 +1573,7 @@ msgid "Display sharing options after creating a new offer" msgstr "Näytä jakamisvaihtoehdot uuden tarjouksen luomisen jälkeen" #: src/components/offers/OfferShareDialog.tsx:945 -#: src/hooks/useOpenUnsafeLink.tsx:64 +#: src/hooks/useOpenUnsafeLink.tsx:93 msgid "Do not show this dialog again" msgstr "Älä näytä tätä valintaikkunaa uudelleen." @@ -2112,7 +2116,7 @@ msgstr "Sovita kuvat kortteihin" #~ msgid "Frequently Asked Questions" #~ msgstr "Frequently Asked Questions" -#: src/components/notification/NotificationAnnouncementDialog.tsx:44 +#: src/components/notification/NotificationAnnouncementDialog.tsx:58 msgid "From" msgstr "Lähettäjä" @@ -2343,7 +2347,7 @@ msgstr "Piilotettu <0/>" #~ msgid "Hidden ({0})" #~ msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Hide" msgstr "Piilota" @@ -2838,7 +2842,7 @@ msgstr "Jäsenyydet" msgid "Memos" msgstr "Muistiot" -#: src/components/notification/NotificationAnnouncementDialog.tsx:53 +#: src/components/notification/NotificationAnnouncementDialog.tsx:67 #: src/components/signVerify/SignMessage.tsx:200 #: src/components/signVerify/VerifyMessage.tsx:207 #: src/constants/WalletConnectCommands.tsx:184 @@ -3533,7 +3537,7 @@ msgstr "Uniikit keräilyassetit" msgid "Open in Browser" msgstr "Avaa selaimessa" -#: src/hooks/useOpenUnsafeLink.tsx:31 +#: src/hooks/useOpenUnsafeLink.tsx:60 msgid "Open Link" msgstr "Avaa linkki" @@ -3724,7 +3728,7 @@ msgstr "Vahvistus kesken" msgid "Pending removal" msgstr "Odottaa poistamista" -#: src/hooks/useOpenUnsafeLink.tsx:38 +#: src/hooks/useOpenUnsafeLink.tsx:67 msgid "Please check the following link to verify the site you are going to visit. Proceed at your own risk." msgstr "Tarkista linkki ennen kuin siirryt. Jatka omalla riskillä." @@ -4215,7 +4219,7 @@ msgstr "Suositus" msgid "Recursive Plot Scan" msgstr "Rekursiivinen Plottiskannaus" -#: src/components/nfts/NFTContextualActions.tsx:566 +#: src/components/nfts/NFTContextualActions.tsx:569 msgid "Refresh NFT data" msgstr "Päivitä NFT-data" @@ -4689,7 +4693,7 @@ msgstr "Jaa Spacescan.io:ssa" #~ msgid "Share Privately" #~ msgstr "Share Privately" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Show" msgstr "Näytä" @@ -5233,6 +5237,10 @@ msgstr "Tämä Plot-NFT on määritetty eri avaimelle. Voit silti luoda plotteja msgid "This table shows you the last time your farm attempted to win a block challenge. <0>Learn more" msgstr "Taulukko näyttää farmisi viimeksi yrittämän lohkohaasteen ajankohdan. <0>Katso lisää" +#: src/hooks/useOpenUnsafeLink.tsx:24 +msgid "This type of the URL is not allowed to open for security reasons." +msgstr "" + #: src/components/settings/SettingsIntegration.tsx:398 msgid "This will reset all previously granted permissions across all Dapps that have been connected to. After resetting you will be asked to grant permission again." msgstr "Tämä nollaa kaikki aiemmin myönnetyt oikeudet kaikkiin yhdistettyihin Dapps -sovelluksiin. Nollauksen jälkeen sinua pyydetään myöntämään käyttöoikeus uudelleen." @@ -5583,9 +5591,10 @@ msgstr "Odottaa Päivitystä" msgid "Uris" msgstr "URIt" -#: src/components/notification/NotificationAnnouncementDialog.tsx:62 +#: src/components/notification/NotificationAnnouncementDialog.tsx:76 #: src/constants/WalletConnectCommands.tsx:964 -#: src/hooks/useOpenUnsafeLink.tsx:43 +#: src/hooks/useOpenUnsafeLink.tsx:27 +#: src/hooks/useOpenUnsafeLink.tsx:72 msgid "URL" msgstr "URL" @@ -5718,7 +5727,7 @@ msgstr "Näytä Dexiessä" #~ msgid "View on Hashgreen DEX" #~ msgstr "View on Hashgreen DEX" -#: src/components/nfts/NFTContextualActions.tsx:643 +#: src/components/nfts/NFTContextualActions.tsx:646 #: src/components/offers/OfferShareDialog.tsx:441 msgid "View on MintGarden" msgstr "Näytä MintGardenissa" @@ -5731,7 +5740,7 @@ msgstr "Näytä MintGardenissa" msgid "View on Offerpool" msgstr "Näytä Offerpoolissa" -#: src/components/nfts/NFTContextualActions.tsx:651 +#: src/components/nfts/NFTContextualActions.tsx:654 #: src/components/offers/OfferShareDialog.tsx:538 msgid "View on Spacescan.io" msgstr "Näytä Spacescan.io:ssa" @@ -5870,6 +5879,10 @@ msgstr "Varoitus" msgid "Warning Threshold" msgstr "Varoituskynnys" +#: src/hooks/useOpenUnsafeLink.tsx:21 +msgid "Warning: Invalid URL" +msgstr "" + #: src/components/app/AppVersionWarning.tsx:30 msgid "Warning: Mismatched Versions" msgstr "Varoitus: Eri Versiot" @@ -5879,7 +5892,7 @@ msgstr "Varoitus: Eri Versiot" msgid "Warning: Verify that the offered CAT asset IDs match the asset IDs of the tokens you expect to receive." msgstr "Varoitus: Varmista, että tarjotut CAT asset ID:t vastaavat tokeneita, joita haluat vastaanottaa." -#: src/hooks/useOpenUnsafeLink.tsx:30 +#: src/hooks/useOpenUnsafeLink.tsx:59 msgid "Warning: You're about to visit a website" msgstr "Varoitus: Olet siirtymässä verkkosivulle" diff --git a/packages/gui/src/locales/fr-FR/messages.po b/packages/gui/src/locales/fr-FR/messages.po index d5baf08eba..2f3d79d3b0 100644 --- a/packages/gui/src/locales/fr-FR/messages.po +++ b/packages/gui/src/locales/fr-FR/messages.po @@ -44,134 +44,134 @@ msgid "Would you like to transfer {count} NFTs to a new owner?" msgstr "Voulez-vous transférer {count} NFT ?" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "No" msgstr "Non" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "Yes" msgstr "Oui" #. js-lingui-explicit-id -#: src/electron/main.tsx:511 +#: src/electron/main.tsx:522 msgid "Confirm" msgstr "Confirmer" #. js-lingui-explicit-id -#: src/electron/main.tsx:513 +#: src/electron/main.tsx:524 msgid "Are you sure you want to quit?" msgstr "Êtes-vous sûr de vouloir quitter ?" #. js-lingui-explicit-id -#: src/electron/main.tsx:518 +#: src/electron/main.tsx:529 msgid "Keep service running in the background" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:636 -#: src/electron/main.tsx:844 +#: src/electron/main.tsx:647 +#: src/electron/main.tsx:855 msgid "File" msgstr "Fichier" #. js-lingui-explicit-id -#: src/electron/main.tsx:644 +#: src/electron/main.tsx:655 msgid "Edit" msgstr "Éditer" #. js-lingui-explicit-id -#: src/electron/main.tsx:676 +#: src/electron/main.tsx:687 msgid "View" msgstr "Voir" #. js-lingui-explicit-id -#: src/electron/main.tsx:685 +#: src/electron/main.tsx:696 msgid "Developer" msgstr "Développeur" #. js-lingui-explicit-id -#: src/electron/main.tsx:688 +#: src/electron/main.tsx:699 msgid "Developer Tools" msgstr "Outils Développeur" #. js-lingui-explicit-id -#: src/electron/main.tsx:696 +#: src/electron/main.tsx:707 msgid "Trigger Desktop Notification" msgstr "Déclencher une notification de bureau" #. js-lingui-explicit-id -#: src/electron/main.tsx:725 +#: src/electron/main.tsx:736 msgid "Full Screen" msgstr "Plein écran" #. js-lingui-explicit-id -#: src/electron/main.tsx:732 +#: src/electron/main.tsx:743 msgid "Window" msgstr "Fenêtre" #. js-lingui-explicit-id -#: src/electron/main.tsx:746 +#: src/electron/main.tsx:757 msgid "Help" msgstr "Aide" #. js-lingui-explicit-id -#: src/electron/main.tsx:750 +#: src/electron/main.tsx:761 msgid "Chia Blockchain Wiki" msgstr "Wiki de la Blockchain Chia" #. js-lingui-explicit-id -#: src/electron/main.tsx:756 +#: src/electron/main.tsx:767 msgid "Frequently Asked Questions" msgstr "Question fréquentes" #. js-lingui-explicit-id -#: src/electron/main.tsx:762 +#: src/electron/main.tsx:773 msgid "Release Notes" msgstr "Notes de version" #. js-lingui-explicit-id -#: src/electron/main.tsx:768 +#: src/electron/main.tsx:779 msgid "Contribute on GitHub" msgstr "Contribuer sur GitHub" #. js-lingui-explicit-id -#: src/electron/main.tsx:777 +#: src/electron/main.tsx:788 msgid "Report an Issue..." msgstr "Remonter un problème..." #. js-lingui-explicit-id -#: src/electron/main.tsx:783 +#: src/electron/main.tsx:794 msgid "Chat on Discord" msgstr "Discuter sur Discord" #. js-lingui-explicit-id -#: src/electron/main.tsx:789 +#: src/electron/main.tsx:800 msgid "Follow on Twitter" msgstr "Suivez-nous sur Twitter" #. js-lingui-explicit-id -#: src/electron/main.tsx:801 +#: src/electron/main.tsx:812 msgid "Chia" msgstr "Chia" #. js-lingui-explicit-id -#: src/electron/main.tsx:804 -#: src/electron/main.tsx:897 +#: src/electron/main.tsx:815 +#: src/electron/main.tsx:908 msgid "About Chia Blockchain" msgstr "À propos de la blockchain Chia" #. js-lingui-explicit-id -#: src/electron/main.tsx:810 +#: src/electron/main.tsx:821 msgid "Check for Updates..." msgstr "Vérification des mises à jour..." #. js-lingui-explicit-id -#: src/electron/main.tsx:858 +#: src/electron/main.tsx:869 msgid "Speech" msgstr "Dicter" #. js-lingui-explicit-id -#: src/electron/main.tsx:903 +#: src/electron/main.tsx:914 msgid "Check for updates..." msgstr "Vérification des mises à jour..." @@ -302,6 +302,10 @@ msgstr "* Activé - utiliser le périphérique à l'index spécifié ; erreur si msgid "*Usually it takes seconds to complete restarting." msgstr "* Il faut généralement quelques secondes pour compléter le redémarrage." +#: src/components/notification/NotificationAnnouncementDialog.tsx:39 +msgid "##### Redacted for security reason #####" +msgstr "" + #: src/components/plot/overview/PlotOverviewPlots.tsx:42 msgid "+ Add a Plot" msgstr "+ Ajouter une parcelle" @@ -364,7 +368,7 @@ msgstr "Action" #: src/components/farm/FarmFullNodeConnections.tsx:54 #: src/components/farm/FarmYourHarvesterNetwork.tsx:54 #: src/components/fullNode/FullNodeConnections.tsx:65 -#: src/components/nfts/NFTContextualActions.tsx:587 +#: src/components/nfts/NFTContextualActions.tsx:590 #: src/components/offers2/OfferIncomingTable.tsx:111 msgid "Actions" msgstr "Actions" @@ -553,7 +557,7 @@ msgstr "" msgid "An NFT's provenance is a complete record of its ownership history. It provides a direct lineage that connects everyone who has owned the NFT, all the way back to the original artist. This helps to verify that the NFT is authentic." msgstr "La provenance d'un NFT est l'historique complet de ses détenteurs. C'est une lignée qui connecte tous ceux qui ont possédé le NFT, et qui remonte jusqu'a l'artiste originel. Cela aide à vérifier l'authenticité du NFT." -#: src/components/notification/NotificationAnnouncementDialog.tsx:35 +#: src/components/notification/NotificationAnnouncementDialog.tsx:49 msgid "Announcement" msgstr "Annonce" @@ -779,7 +783,7 @@ msgstr "Parcourir" #: src/components/nfts/NFTBurnDialog.tsx:90 #: src/components/nfts/NFTBurnDialog.tsx:185 -#: src/components/nfts/NFTContextualActions.tsx:525 +#: src/components/nfts/NFTContextualActions.tsx:528 msgid "Burn" msgstr "Brûler" @@ -834,7 +838,7 @@ msgstr "Taille du cache (Go)" #: src/components/signVerify/VerifyMessage.tsx:271 #: src/components/vcs/VCEditTitle.tsx:76 #: src/components/vcs/VCRevokeDialog.tsx:28 -#: src/hooks/useOpenUnsafeLink.tsx:33 +#: src/hooks/useOpenUnsafeLink.tsx:62 msgid "Cancel" msgstr "Annuler" @@ -996,7 +1000,7 @@ msgstr "" #: src/components/nfts/MultipleDownloadDialog.tsx:116 #: src/components/nfts/NFTMoveToProfileDialog.tsx:328 #: src/components/nfts/NFTTransferAction.tsx:166 -#: src/components/notification/NotificationAnnouncementDialog.tsx:75 +#: src/components/notification/NotificationAnnouncementDialog.tsx:87 #: src/components/notification/NotificationSendDialog.tsx:308 #: src/components/offers/ConfirmOfferCancellation.tsx:126 #: src/components/offers/OfferShareDialog.tsx:373 @@ -1569,7 +1573,7 @@ msgid "Display sharing options after creating a new offer" msgstr "Afficher les options de partage après la création d'une offre" #: src/components/offers/OfferShareDialog.tsx:945 -#: src/hooks/useOpenUnsafeLink.tsx:64 +#: src/hooks/useOpenUnsafeLink.tsx:93 msgid "Do not show this dialog again" msgstr "Ne plus afficher cette fenêtre" @@ -2112,7 +2116,7 @@ msgstr "Ajuster les images aux cadres" #~ msgid "Frequently Asked Questions" #~ msgstr "Frequently Asked Questions" -#: src/components/notification/NotificationAnnouncementDialog.tsx:44 +#: src/components/notification/NotificationAnnouncementDialog.tsx:58 msgid "From" msgstr "Depuis" @@ -2343,7 +2347,7 @@ msgstr "Cachés <0/>" #~ msgid "Hidden ({0})" #~ msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Hide" msgstr "Masquer" @@ -2838,7 +2842,7 @@ msgstr "Adhésions" msgid "Memos" msgstr "Mémos" -#: src/components/notification/NotificationAnnouncementDialog.tsx:53 +#: src/components/notification/NotificationAnnouncementDialog.tsx:67 #: src/components/signVerify/SignMessage.tsx:200 #: src/components/signVerify/VerifyMessage.tsx:207 #: src/constants/WalletConnectCommands.tsx:184 @@ -3533,7 +3537,7 @@ msgstr "Actifs de collection uniques" msgid "Open in Browser" msgstr "Ouvrir dans le navigateur" -#: src/hooks/useOpenUnsafeLink.tsx:31 +#: src/hooks/useOpenUnsafeLink.tsx:60 msgid "Open Link" msgstr "Ouvrir le lien" @@ -3724,7 +3728,7 @@ msgstr "Confirmation en attente" msgid "Pending removal" msgstr "En attente de suppression" -#: src/hooks/useOpenUnsafeLink.tsx:38 +#: src/hooks/useOpenUnsafeLink.tsx:67 msgid "Please check the following link to verify the site you are going to visit. Proceed at your own risk." msgstr "Veuillez vérifier le lien suivant avant de le visiter. Continuez à vos propres risques." @@ -4215,7 +4219,7 @@ msgstr "Recommandé" msgid "Recursive Plot Scan" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:566 +#: src/components/nfts/NFTContextualActions.tsx:569 msgid "Refresh NFT data" msgstr "Rafraîchir les données NFT" @@ -4689,7 +4693,7 @@ msgstr "Partager sur Spacescan.io" #~ msgid "Share Privately" #~ msgstr "Share Privately" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Show" msgstr "Afficher" @@ -5233,6 +5237,10 @@ msgstr "Ce NFT de parcelles est affecté à une autre clé. Vous pouvez toujours msgid "This table shows you the last time your farm attempted to win a block challenge. <0>Learn more" msgstr "Ce tableau vous montre la dernière fois que votre ferme a tenté de gagner un défi de bloc. <0>En savoir plus" +#: src/hooks/useOpenUnsafeLink.tsx:24 +msgid "This type of the URL is not allowed to open for security reasons." +msgstr "" + #: src/components/settings/SettingsIntegration.tsx:398 msgid "This will reset all previously granted permissions across all Dapps that have been connected to. After resetting you will be asked to grant permission again." msgstr "Cela réinitialisera toutes les autorisations précédemment accordées à toutes les Dapps qui ont été connectés. Après la réinitialisation, il vous sera demandé d'autoriser à nouveau." @@ -5583,9 +5591,10 @@ msgstr "Mise à jour en attente" msgid "Uris" msgstr "Uris" -#: src/components/notification/NotificationAnnouncementDialog.tsx:62 +#: src/components/notification/NotificationAnnouncementDialog.tsx:76 #: src/constants/WalletConnectCommands.tsx:964 -#: src/hooks/useOpenUnsafeLink.tsx:43 +#: src/hooks/useOpenUnsafeLink.tsx:27 +#: src/hooks/useOpenUnsafeLink.tsx:72 msgid "URL" msgstr "URL" @@ -5718,7 +5727,7 @@ msgstr "Voir sur Dexie" #~ msgid "View on Hashgreen DEX" #~ msgstr "View on Hashgreen DEX" -#: src/components/nfts/NFTContextualActions.tsx:643 +#: src/components/nfts/NFTContextualActions.tsx:646 #: src/components/offers/OfferShareDialog.tsx:441 msgid "View on MintGarden" msgstr "Voir sur MintGarden" @@ -5731,7 +5740,7 @@ msgstr "Voir sur MintGarden" msgid "View on Offerpool" msgstr "Voir sur Offerpool" -#: src/components/nfts/NFTContextualActions.tsx:651 +#: src/components/nfts/NFTContextualActions.tsx:654 #: src/components/offers/OfferShareDialog.tsx:538 msgid "View on Spacescan.io" msgstr "Voir sur Spacescan.io" @@ -5870,6 +5879,10 @@ msgstr "Avertissement" msgid "Warning Threshold" msgstr "" +#: src/hooks/useOpenUnsafeLink.tsx:21 +msgid "Warning: Invalid URL" +msgstr "" + #: src/components/app/AppVersionWarning.tsx:30 msgid "Warning: Mismatched Versions" msgstr "Avertissement : Versions incompatibles" @@ -5879,7 +5892,7 @@ msgstr "Avertissement : Versions incompatibles" msgid "Warning: Verify that the offered CAT asset IDs match the asset IDs of the tokens you expect to receive." msgstr "Attention : Vérifiez que les CAT offerts correspondent aux CAT que vous souhaitez recevoir en vérifiant leurs identifiants (Asset ID)." -#: src/hooks/useOpenUnsafeLink.tsx:30 +#: src/hooks/useOpenUnsafeLink.tsx:59 msgid "Warning: You're about to visit a website" msgstr "Attention : Vous êtes sur le point de visiter un site Web" diff --git a/packages/gui/src/locales/hr-HR/messages.po b/packages/gui/src/locales/hr-HR/messages.po index ba48fb9d8e..a12539aff1 100644 --- a/packages/gui/src/locales/hr-HR/messages.po +++ b/packages/gui/src/locales/hr-HR/messages.po @@ -44,134 +44,134 @@ msgid "Would you like to transfer {count} NFTs to a new owner?" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "No" msgstr "Ne" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "Yes" msgstr "Da" #. js-lingui-explicit-id -#: src/electron/main.tsx:511 +#: src/electron/main.tsx:522 msgid "Confirm" msgstr "Potvrdi" #. js-lingui-explicit-id -#: src/electron/main.tsx:513 +#: src/electron/main.tsx:524 msgid "Are you sure you want to quit?" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:518 +#: src/electron/main.tsx:529 msgid "Keep service running in the background" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:636 -#: src/electron/main.tsx:844 +#: src/electron/main.tsx:647 +#: src/electron/main.tsx:855 msgid "File" msgstr "Datoteka" #. js-lingui-explicit-id -#: src/electron/main.tsx:644 +#: src/electron/main.tsx:655 msgid "Edit" msgstr "Uredi" #. js-lingui-explicit-id -#: src/electron/main.tsx:676 +#: src/electron/main.tsx:687 msgid "View" msgstr "Pregled" #. js-lingui-explicit-id -#: src/electron/main.tsx:685 +#: src/electron/main.tsx:696 msgid "Developer" msgstr "Razvojni programer" #. js-lingui-explicit-id -#: src/electron/main.tsx:688 +#: src/electron/main.tsx:699 msgid "Developer Tools" msgstr "Alati za razvojne programere" #. js-lingui-explicit-id -#: src/electron/main.tsx:696 +#: src/electron/main.tsx:707 msgid "Trigger Desktop Notification" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:725 +#: src/electron/main.tsx:736 msgid "Full Screen" msgstr "Puni zaslon" #. js-lingui-explicit-id -#: src/electron/main.tsx:732 +#: src/electron/main.tsx:743 msgid "Window" msgstr "Prozor" #. js-lingui-explicit-id -#: src/electron/main.tsx:746 +#: src/electron/main.tsx:757 msgid "Help" msgstr "Pomoć" #. js-lingui-explicit-id -#: src/electron/main.tsx:750 +#: src/electron/main.tsx:761 msgid "Chia Blockchain Wiki" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:756 +#: src/electron/main.tsx:767 msgid "Frequently Asked Questions" msgstr "Često Postavljana Pitanja" #. js-lingui-explicit-id -#: src/electron/main.tsx:762 +#: src/electron/main.tsx:773 msgid "Release Notes" msgstr "Bilješke o izdanju" #. js-lingui-explicit-id -#: src/electron/main.tsx:768 +#: src/electron/main.tsx:779 msgid "Contribute on GitHub" msgstr "Doprinos na GitHub" #. js-lingui-explicit-id -#: src/electron/main.tsx:777 +#: src/electron/main.tsx:788 msgid "Report an Issue..." msgstr "Prijavi problem..." #. js-lingui-explicit-id -#: src/electron/main.tsx:783 +#: src/electron/main.tsx:794 msgid "Chat on Discord" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:789 +#: src/electron/main.tsx:800 msgid "Follow on Twitter" msgstr "Prati na Twitteru" #. js-lingui-explicit-id -#: src/electron/main.tsx:801 +#: src/electron/main.tsx:812 msgid "Chia" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:804 -#: src/electron/main.tsx:897 +#: src/electron/main.tsx:815 +#: src/electron/main.tsx:908 msgid "About Chia Blockchain" msgstr "O Chia Blockchainu" #. js-lingui-explicit-id -#: src/electron/main.tsx:810 +#: src/electron/main.tsx:821 msgid "Check for Updates..." msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:858 +#: src/electron/main.tsx:869 msgid "Speech" msgstr "Govor" #. js-lingui-explicit-id -#: src/electron/main.tsx:903 +#: src/electron/main.tsx:914 msgid "Check for updates..." msgstr "" @@ -302,6 +302,10 @@ msgstr "" msgid "*Usually it takes seconds to complete restarting." msgstr "" +#: src/components/notification/NotificationAnnouncementDialog.tsx:39 +msgid "##### Redacted for security reason #####" +msgstr "" + #: src/components/plot/overview/PlotOverviewPlots.tsx:42 msgid "+ Add a Plot" msgstr "" @@ -364,7 +368,7 @@ msgstr "Radnja" #: src/components/farm/FarmFullNodeConnections.tsx:54 #: src/components/farm/FarmYourHarvesterNetwork.tsx:54 #: src/components/fullNode/FullNodeConnections.tsx:65 -#: src/components/nfts/NFTContextualActions.tsx:587 +#: src/components/nfts/NFTContextualActions.tsx:590 #: src/components/offers2/OfferIncomingTable.tsx:111 msgid "Actions" msgstr "Radnje" @@ -553,7 +557,7 @@ msgstr "" msgid "An NFT's provenance is a complete record of its ownership history. It provides a direct lineage that connects everyone who has owned the NFT, all the way back to the original artist. This helps to verify that the NFT is authentic." msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:35 +#: src/components/notification/NotificationAnnouncementDialog.tsx:49 msgid "Announcement" msgstr "" @@ -779,7 +783,7 @@ msgstr "Pretraži" #: src/components/nfts/NFTBurnDialog.tsx:90 #: src/components/nfts/NFTBurnDialog.tsx:185 -#: src/components/nfts/NFTContextualActions.tsx:525 +#: src/components/nfts/NFTContextualActions.tsx:528 msgid "Burn" msgstr "" @@ -834,7 +838,7 @@ msgstr "" #: src/components/signVerify/VerifyMessage.tsx:271 #: src/components/vcs/VCEditTitle.tsx:76 #: src/components/vcs/VCRevokeDialog.tsx:28 -#: src/hooks/useOpenUnsafeLink.tsx:33 +#: src/hooks/useOpenUnsafeLink.tsx:62 msgid "Cancel" msgstr "Otkaži" @@ -996,7 +1000,7 @@ msgstr "" #: src/components/nfts/MultipleDownloadDialog.tsx:116 #: src/components/nfts/NFTMoveToProfileDialog.tsx:328 #: src/components/nfts/NFTTransferAction.tsx:166 -#: src/components/notification/NotificationAnnouncementDialog.tsx:75 +#: src/components/notification/NotificationAnnouncementDialog.tsx:87 #: src/components/notification/NotificationSendDialog.tsx:308 #: src/components/offers/ConfirmOfferCancellation.tsx:126 #: src/components/offers/OfferShareDialog.tsx:373 @@ -1569,7 +1573,7 @@ msgid "Display sharing options after creating a new offer" msgstr "" #: src/components/offers/OfferShareDialog.tsx:945 -#: src/hooks/useOpenUnsafeLink.tsx:64 +#: src/hooks/useOpenUnsafeLink.tsx:93 msgid "Do not show this dialog again" msgstr "" @@ -2112,7 +2116,7 @@ msgstr "" #~ msgid "Frequently Asked Questions" #~ msgstr "Frequently Asked Questions" -#: src/components/notification/NotificationAnnouncementDialog.tsx:44 +#: src/components/notification/NotificationAnnouncementDialog.tsx:58 msgid "From" msgstr "" @@ -2343,7 +2347,7 @@ msgstr "" #~ msgid "Hidden ({0})" #~ msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Hide" msgstr "" @@ -2834,7 +2838,7 @@ msgstr "" msgid "Memos" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:53 +#: src/components/notification/NotificationAnnouncementDialog.tsx:67 #: src/components/signVerify/SignMessage.tsx:200 #: src/components/signVerify/VerifyMessage.tsx:207 #: src/constants/WalletConnectCommands.tsx:184 @@ -3529,7 +3533,7 @@ msgstr "" msgid "Open in Browser" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:31 +#: src/hooks/useOpenUnsafeLink.tsx:60 msgid "Open Link" msgstr "" @@ -3720,7 +3724,7 @@ msgstr "" msgid "Pending removal" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:38 +#: src/hooks/useOpenUnsafeLink.tsx:67 msgid "Please check the following link to verify the site you are going to visit. Proceed at your own risk." msgstr "" @@ -4211,7 +4215,7 @@ msgstr "" msgid "Recursive Plot Scan" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:566 +#: src/components/nfts/NFTContextualActions.tsx:569 msgid "Refresh NFT data" msgstr "" @@ -4685,7 +4689,7 @@ msgstr "" #~ msgid "Share Privately" #~ msgstr "Share Privately" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Show" msgstr "" @@ -5229,6 +5233,10 @@ msgstr "" msgid "This table shows you the last time your farm attempted to win a block challenge. <0>Learn more" msgstr "Ova tabela pokazuje vrijeme tvojeg zadnjeg pokušaja za osvajanje izazova bloka. <0>Saznaj više" +#: src/hooks/useOpenUnsafeLink.tsx:24 +msgid "This type of the URL is not allowed to open for security reasons." +msgstr "" + #: src/components/settings/SettingsIntegration.tsx:398 msgid "This will reset all previously granted permissions across all Dapps that have been connected to. After resetting you will be asked to grant permission again." msgstr "" @@ -5579,9 +5587,10 @@ msgstr "" msgid "Uris" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:62 +#: src/components/notification/NotificationAnnouncementDialog.tsx:76 #: src/constants/WalletConnectCommands.tsx:964 -#: src/hooks/useOpenUnsafeLink.tsx:43 +#: src/hooks/useOpenUnsafeLink.tsx:27 +#: src/hooks/useOpenUnsafeLink.tsx:72 msgid "URL" msgstr "" @@ -5714,7 +5723,7 @@ msgstr "" #~ msgid "View on Hashgreen DEX" #~ msgstr "View on Hashgreen DEX" -#: src/components/nfts/NFTContextualActions.tsx:643 +#: src/components/nfts/NFTContextualActions.tsx:646 #: src/components/offers/OfferShareDialog.tsx:441 msgid "View on MintGarden" msgstr "" @@ -5727,7 +5736,7 @@ msgstr "" msgid "View on Offerpool" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:651 +#: src/components/nfts/NFTContextualActions.tsx:654 #: src/components/offers/OfferShareDialog.tsx:538 msgid "View on Spacescan.io" msgstr "" @@ -5866,6 +5875,10 @@ msgstr "" msgid "Warning Threshold" msgstr "" +#: src/hooks/useOpenUnsafeLink.tsx:21 +msgid "Warning: Invalid URL" +msgstr "" + #: src/components/app/AppVersionWarning.tsx:30 msgid "Warning: Mismatched Versions" msgstr "" @@ -5875,7 +5888,7 @@ msgstr "" msgid "Warning: Verify that the offered CAT asset IDs match the asset IDs of the tokens you expect to receive." msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:30 +#: src/hooks/useOpenUnsafeLink.tsx:59 msgid "Warning: You're about to visit a website" msgstr "" diff --git a/packages/gui/src/locales/hu-HU/messages.po b/packages/gui/src/locales/hu-HU/messages.po index 66c4c3f74a..9840426b0b 100644 --- a/packages/gui/src/locales/hu-HU/messages.po +++ b/packages/gui/src/locales/hu-HU/messages.po @@ -44,134 +44,134 @@ msgid "Would you like to transfer {count} NFTs to a new owner?" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "No" msgstr "Nem" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "Yes" msgstr "Igen" #. js-lingui-explicit-id -#: src/electron/main.tsx:511 +#: src/electron/main.tsx:522 msgid "Confirm" msgstr "Megerősítés" #. js-lingui-explicit-id -#: src/electron/main.tsx:513 +#: src/electron/main.tsx:524 msgid "Are you sure you want to quit?" msgstr "Biztosan ki akar lépni?" #. js-lingui-explicit-id -#: src/electron/main.tsx:518 +#: src/electron/main.tsx:529 msgid "Keep service running in the background" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:636 -#: src/electron/main.tsx:844 +#: src/electron/main.tsx:647 +#: src/electron/main.tsx:855 msgid "File" msgstr "Fájl" #. js-lingui-explicit-id -#: src/electron/main.tsx:644 +#: src/electron/main.tsx:655 msgid "Edit" msgstr "Módosítás" #. js-lingui-explicit-id -#: src/electron/main.tsx:676 +#: src/electron/main.tsx:687 msgid "View" msgstr "Nézet" #. js-lingui-explicit-id -#: src/electron/main.tsx:685 +#: src/electron/main.tsx:696 msgid "Developer" msgstr "Fejlesztő" #. js-lingui-explicit-id -#: src/electron/main.tsx:688 +#: src/electron/main.tsx:699 msgid "Developer Tools" msgstr "Fejlesztői eszközök" #. js-lingui-explicit-id -#: src/electron/main.tsx:696 +#: src/electron/main.tsx:707 msgid "Trigger Desktop Notification" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:725 +#: src/electron/main.tsx:736 msgid "Full Screen" msgstr "Teljes képernyő" #. js-lingui-explicit-id -#: src/electron/main.tsx:732 +#: src/electron/main.tsx:743 msgid "Window" msgstr "Ablak" #. js-lingui-explicit-id -#: src/electron/main.tsx:746 +#: src/electron/main.tsx:757 msgid "Help" msgstr "Súgó" #. js-lingui-explicit-id -#: src/electron/main.tsx:750 +#: src/electron/main.tsx:761 msgid "Chia Blockchain Wiki" msgstr "Chia Blokklánc Wiki" #. js-lingui-explicit-id -#: src/electron/main.tsx:756 +#: src/electron/main.tsx:767 msgid "Frequently Asked Questions" msgstr "Gyakran Ismételt Kérdések" #. js-lingui-explicit-id -#: src/electron/main.tsx:762 +#: src/electron/main.tsx:773 msgid "Release Notes" msgstr "Kiadási megjegyzések" #. js-lingui-explicit-id -#: src/electron/main.tsx:768 +#: src/electron/main.tsx:779 msgid "Contribute on GitHub" msgstr "Közreműködés a GitHub-on" #. js-lingui-explicit-id -#: src/electron/main.tsx:777 +#: src/electron/main.tsx:788 msgid "Report an Issue..." msgstr "Hibabejelentés..." #. js-lingui-explicit-id -#: src/electron/main.tsx:783 +#: src/electron/main.tsx:794 msgid "Chat on Discord" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:789 +#: src/electron/main.tsx:800 msgid "Follow on Twitter" msgstr "Kövess minket a Twitteren" #. js-lingui-explicit-id -#: src/electron/main.tsx:801 +#: src/electron/main.tsx:812 msgid "Chia" msgstr "Chia" #. js-lingui-explicit-id -#: src/electron/main.tsx:804 -#: src/electron/main.tsx:897 +#: src/electron/main.tsx:815 +#: src/electron/main.tsx:908 msgid "About Chia Blockchain" msgstr "A Chia Blockchain-ről" #. js-lingui-explicit-id -#: src/electron/main.tsx:810 +#: src/electron/main.tsx:821 msgid "Check for Updates..." msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:858 +#: src/electron/main.tsx:869 msgid "Speech" msgstr "Beszéd" #. js-lingui-explicit-id -#: src/electron/main.tsx:903 +#: src/electron/main.tsx:914 msgid "Check for updates..." msgstr "" @@ -302,6 +302,10 @@ msgstr "" msgid "*Usually it takes seconds to complete restarting." msgstr "" +#: src/components/notification/NotificationAnnouncementDialog.tsx:39 +msgid "##### Redacted for security reason #####" +msgstr "" + #: src/components/plot/overview/PlotOverviewPlots.tsx:42 msgid "+ Add a Plot" msgstr "+ Plot hozzáadása" @@ -364,7 +368,7 @@ msgstr "Művelet" #: src/components/farm/FarmFullNodeConnections.tsx:54 #: src/components/farm/FarmYourHarvesterNetwork.tsx:54 #: src/components/fullNode/FullNodeConnections.tsx:65 -#: src/components/nfts/NFTContextualActions.tsx:587 +#: src/components/nfts/NFTContextualActions.tsx:590 #: src/components/offers2/OfferIncomingTable.tsx:111 msgid "Actions" msgstr "Műveletek" @@ -553,7 +557,7 @@ msgstr "" msgid "An NFT's provenance is a complete record of its ownership history. It provides a direct lineage that connects everyone who has owned the NFT, all the way back to the original artist. This helps to verify that the NFT is authentic." msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:35 +#: src/components/notification/NotificationAnnouncementDialog.tsx:49 msgid "Announcement" msgstr "" @@ -779,7 +783,7 @@ msgstr "Tallózás" #: src/components/nfts/NFTBurnDialog.tsx:90 #: src/components/nfts/NFTBurnDialog.tsx:185 -#: src/components/nfts/NFTContextualActions.tsx:525 +#: src/components/nfts/NFTContextualActions.tsx:528 msgid "Burn" msgstr "Eléget" @@ -834,7 +838,7 @@ msgstr "" #: src/components/signVerify/VerifyMessage.tsx:271 #: src/components/vcs/VCEditTitle.tsx:76 #: src/components/vcs/VCRevokeDialog.tsx:28 -#: src/hooks/useOpenUnsafeLink.tsx:33 +#: src/hooks/useOpenUnsafeLink.tsx:62 msgid "Cancel" msgstr "Mégsem" @@ -996,7 +1000,7 @@ msgstr "" #: src/components/nfts/MultipleDownloadDialog.tsx:116 #: src/components/nfts/NFTMoveToProfileDialog.tsx:328 #: src/components/nfts/NFTTransferAction.tsx:166 -#: src/components/notification/NotificationAnnouncementDialog.tsx:75 +#: src/components/notification/NotificationAnnouncementDialog.tsx:87 #: src/components/notification/NotificationSendDialog.tsx:308 #: src/components/offers/ConfirmOfferCancellation.tsx:126 #: src/components/offers/OfferShareDialog.tsx:373 @@ -1569,7 +1573,7 @@ msgid "Display sharing options after creating a new offer" msgstr "" #: src/components/offers/OfferShareDialog.tsx:945 -#: src/hooks/useOpenUnsafeLink.tsx:64 +#: src/hooks/useOpenUnsafeLink.tsx:93 msgid "Do not show this dialog again" msgstr "" @@ -2112,7 +2116,7 @@ msgstr "" #~ msgid "Frequently Asked Questions" #~ msgstr "Frequently Asked Questions" -#: src/components/notification/NotificationAnnouncementDialog.tsx:44 +#: src/components/notification/NotificationAnnouncementDialog.tsx:58 msgid "From" msgstr "" @@ -2343,7 +2347,7 @@ msgstr "" #~ msgid "Hidden ({0})" #~ msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Hide" msgstr "Elrejtés" @@ -2834,7 +2838,7 @@ msgstr "" msgid "Memos" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:53 +#: src/components/notification/NotificationAnnouncementDialog.tsx:67 #: src/components/signVerify/SignMessage.tsx:200 #: src/components/signVerify/VerifyMessage.tsx:207 #: src/constants/WalletConnectCommands.tsx:184 @@ -3529,7 +3533,7 @@ msgstr "" msgid "Open in Browser" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:31 +#: src/hooks/useOpenUnsafeLink.tsx:60 msgid "Open Link" msgstr "" @@ -3720,7 +3724,7 @@ msgstr "" msgid "Pending removal" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:38 +#: src/hooks/useOpenUnsafeLink.tsx:67 msgid "Please check the following link to verify the site you are going to visit. Proceed at your own risk." msgstr "" @@ -4211,7 +4215,7 @@ msgstr "Ajánlott" msgid "Recursive Plot Scan" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:566 +#: src/components/nfts/NFTContextualActions.tsx:569 msgid "Refresh NFT data" msgstr "" @@ -4685,7 +4689,7 @@ msgstr "" #~ msgid "Share Privately" #~ msgstr "Share Privately" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Show" msgstr "Mutat" @@ -5229,6 +5233,10 @@ msgstr "" msgid "This table shows you the last time your farm attempted to win a block challenge. <0>Learn more" msgstr "Ez a táblázat megmutatja egy blokk kihívás elnyerésére tett kísérlet utolsó időpontját. <0>Részletek" +#: src/hooks/useOpenUnsafeLink.tsx:24 +msgid "This type of the URL is not allowed to open for security reasons." +msgstr "" + #: src/components/settings/SettingsIntegration.tsx:398 msgid "This will reset all previously granted permissions across all Dapps that have been connected to. After resetting you will be asked to grant permission again." msgstr "" @@ -5579,9 +5587,10 @@ msgstr "" msgid "Uris" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:62 +#: src/components/notification/NotificationAnnouncementDialog.tsx:76 #: src/constants/WalletConnectCommands.tsx:964 -#: src/hooks/useOpenUnsafeLink.tsx:43 +#: src/hooks/useOpenUnsafeLink.tsx:27 +#: src/hooks/useOpenUnsafeLink.tsx:72 msgid "URL" msgstr "" @@ -5714,7 +5723,7 @@ msgstr "" #~ msgid "View on Hashgreen DEX" #~ msgstr "View on Hashgreen DEX" -#: src/components/nfts/NFTContextualActions.tsx:643 +#: src/components/nfts/NFTContextualActions.tsx:646 #: src/components/offers/OfferShareDialog.tsx:441 msgid "View on MintGarden" msgstr "" @@ -5727,7 +5736,7 @@ msgstr "" msgid "View on Offerpool" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:651 +#: src/components/nfts/NFTContextualActions.tsx:654 #: src/components/offers/OfferShareDialog.tsx:538 msgid "View on Spacescan.io" msgstr "" @@ -5866,6 +5875,10 @@ msgstr "" msgid "Warning Threshold" msgstr "" +#: src/hooks/useOpenUnsafeLink.tsx:21 +msgid "Warning: Invalid URL" +msgstr "" + #: src/components/app/AppVersionWarning.tsx:30 msgid "Warning: Mismatched Versions" msgstr "" @@ -5875,7 +5888,7 @@ msgstr "" msgid "Warning: Verify that the offered CAT asset IDs match the asset IDs of the tokens you expect to receive." msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:30 +#: src/hooks/useOpenUnsafeLink.tsx:59 msgid "Warning: You're about to visit a website" msgstr "" diff --git a/packages/gui/src/locales/id-ID/messages.po b/packages/gui/src/locales/id-ID/messages.po index a424b1c8b1..97c21b75e0 100644 --- a/packages/gui/src/locales/id-ID/messages.po +++ b/packages/gui/src/locales/id-ID/messages.po @@ -44,134 +44,134 @@ msgid "Would you like to transfer {count} NFTs to a new owner?" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "No" msgstr "Tidak" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "Yes" msgstr "Ya" #. js-lingui-explicit-id -#: src/electron/main.tsx:511 +#: src/electron/main.tsx:522 msgid "Confirm" msgstr "Konfirmasi" #. js-lingui-explicit-id -#: src/electron/main.tsx:513 +#: src/electron/main.tsx:524 msgid "Are you sure you want to quit?" msgstr "Apakah Anda yakin Anda ingin keluar?" #. js-lingui-explicit-id -#: src/electron/main.tsx:518 +#: src/electron/main.tsx:529 msgid "Keep service running in the background" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:636 -#: src/electron/main.tsx:844 +#: src/electron/main.tsx:647 +#: src/electron/main.tsx:855 msgid "File" msgstr "File" #. js-lingui-explicit-id -#: src/electron/main.tsx:644 +#: src/electron/main.tsx:655 msgid "Edit" msgstr "Ubah" #. js-lingui-explicit-id -#: src/electron/main.tsx:676 +#: src/electron/main.tsx:687 msgid "View" msgstr "Lihat" #. js-lingui-explicit-id -#: src/electron/main.tsx:685 +#: src/electron/main.tsx:696 msgid "Developer" msgstr "Developer" #. js-lingui-explicit-id -#: src/electron/main.tsx:688 +#: src/electron/main.tsx:699 msgid "Developer Tools" msgstr "Alat Pengembang" #. js-lingui-explicit-id -#: src/electron/main.tsx:696 +#: src/electron/main.tsx:707 msgid "Trigger Desktop Notification" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:725 +#: src/electron/main.tsx:736 msgid "Full Screen" msgstr "Layar Penuh" #. js-lingui-explicit-id -#: src/electron/main.tsx:732 +#: src/electron/main.tsx:743 msgid "Window" msgstr "Jendela" #. js-lingui-explicit-id -#: src/electron/main.tsx:746 +#: src/electron/main.tsx:757 msgid "Help" msgstr "Bantuan" #. js-lingui-explicit-id -#: src/electron/main.tsx:750 +#: src/electron/main.tsx:761 msgid "Chia Blockchain Wiki" msgstr "Wiki Chia Blockchain" #. js-lingui-explicit-id -#: src/electron/main.tsx:756 +#: src/electron/main.tsx:767 msgid "Frequently Asked Questions" msgstr "Pertanyaan Umum" #. js-lingui-explicit-id -#: src/electron/main.tsx:762 +#: src/electron/main.tsx:773 msgid "Release Notes" msgstr "Catatan Rilis" #. js-lingui-explicit-id -#: src/electron/main.tsx:768 +#: src/electron/main.tsx:779 msgid "Contribute on GitHub" msgstr "Berkontribusi di GitHub" #. js-lingui-explicit-id -#: src/electron/main.tsx:777 +#: src/electron/main.tsx:788 msgid "Report an Issue..." msgstr "Melaporkan sebuah masalah..." #. js-lingui-explicit-id -#: src/electron/main.tsx:783 +#: src/electron/main.tsx:794 msgid "Chat on Discord" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:789 +#: src/electron/main.tsx:800 msgid "Follow on Twitter" msgstr "Follow di Twitter" #. js-lingui-explicit-id -#: src/electron/main.tsx:801 +#: src/electron/main.tsx:812 msgid "Chia" msgstr "Chia" #. js-lingui-explicit-id -#: src/electron/main.tsx:804 -#: src/electron/main.tsx:897 +#: src/electron/main.tsx:815 +#: src/electron/main.tsx:908 msgid "About Chia Blockchain" msgstr "Tentang Chia Blockchain" #. js-lingui-explicit-id -#: src/electron/main.tsx:810 +#: src/electron/main.tsx:821 msgid "Check for Updates..." msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:858 +#: src/electron/main.tsx:869 msgid "Speech" msgstr "Pertuturan" #. js-lingui-explicit-id -#: src/electron/main.tsx:903 +#: src/electron/main.tsx:914 msgid "Check for updates..." msgstr "" @@ -302,6 +302,10 @@ msgstr "" msgid "*Usually it takes seconds to complete restarting." msgstr "" +#: src/components/notification/NotificationAnnouncementDialog.tsx:39 +msgid "##### Redacted for security reason #####" +msgstr "" + #: src/components/plot/overview/PlotOverviewPlots.tsx:42 msgid "+ Add a Plot" msgstr "+ Tambah sebuah Plot" @@ -364,7 +368,7 @@ msgstr "Tindakan" #: src/components/farm/FarmFullNodeConnections.tsx:54 #: src/components/farm/FarmYourHarvesterNetwork.tsx:54 #: src/components/fullNode/FullNodeConnections.tsx:65 -#: src/components/nfts/NFTContextualActions.tsx:587 +#: src/components/nfts/NFTContextualActions.tsx:590 #: src/components/offers2/OfferIncomingTable.tsx:111 msgid "Actions" msgstr "Tindakan" @@ -553,7 +557,7 @@ msgstr "" msgid "An NFT's provenance is a complete record of its ownership history. It provides a direct lineage that connects everyone who has owned the NFT, all the way back to the original artist. This helps to verify that the NFT is authentic." msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:35 +#: src/components/notification/NotificationAnnouncementDialog.tsx:49 msgid "Announcement" msgstr "" @@ -779,7 +783,7 @@ msgstr "Telusuri" #: src/components/nfts/NFTBurnDialog.tsx:90 #: src/components/nfts/NFTBurnDialog.tsx:185 -#: src/components/nfts/NFTContextualActions.tsx:525 +#: src/components/nfts/NFTContextualActions.tsx:528 msgid "Burn" msgstr "" @@ -834,7 +838,7 @@ msgstr "" #: src/components/signVerify/VerifyMessage.tsx:271 #: src/components/vcs/VCEditTitle.tsx:76 #: src/components/vcs/VCRevokeDialog.tsx:28 -#: src/hooks/useOpenUnsafeLink.tsx:33 +#: src/hooks/useOpenUnsafeLink.tsx:62 msgid "Cancel" msgstr "Batal" @@ -996,7 +1000,7 @@ msgstr "" #: src/components/nfts/MultipleDownloadDialog.tsx:116 #: src/components/nfts/NFTMoveToProfileDialog.tsx:328 #: src/components/nfts/NFTTransferAction.tsx:166 -#: src/components/notification/NotificationAnnouncementDialog.tsx:75 +#: src/components/notification/NotificationAnnouncementDialog.tsx:87 #: src/components/notification/NotificationSendDialog.tsx:308 #: src/components/offers/ConfirmOfferCancellation.tsx:126 #: src/components/offers/OfferShareDialog.tsx:373 @@ -1569,7 +1573,7 @@ msgid "Display sharing options after creating a new offer" msgstr "" #: src/components/offers/OfferShareDialog.tsx:945 -#: src/hooks/useOpenUnsafeLink.tsx:64 +#: src/hooks/useOpenUnsafeLink.tsx:93 msgid "Do not show this dialog again" msgstr "" @@ -2112,7 +2116,7 @@ msgstr "" #~ msgid "Frequently Asked Questions" #~ msgstr "Frequently Asked Questions" -#: src/components/notification/NotificationAnnouncementDialog.tsx:44 +#: src/components/notification/NotificationAnnouncementDialog.tsx:58 msgid "From" msgstr "" @@ -2343,7 +2347,7 @@ msgstr "" #~ msgid "Hidden ({0})" #~ msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Hide" msgstr "" @@ -2834,7 +2838,7 @@ msgstr "" msgid "Memos" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:53 +#: src/components/notification/NotificationAnnouncementDialog.tsx:67 #: src/components/signVerify/SignMessage.tsx:200 #: src/components/signVerify/VerifyMessage.tsx:207 #: src/constants/WalletConnectCommands.tsx:184 @@ -3529,7 +3533,7 @@ msgstr "" msgid "Open in Browser" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:31 +#: src/hooks/useOpenUnsafeLink.tsx:60 msgid "Open Link" msgstr "" @@ -3720,7 +3724,7 @@ msgstr "" msgid "Pending removal" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:38 +#: src/hooks/useOpenUnsafeLink.tsx:67 msgid "Please check the following link to verify the site you are going to visit. Proceed at your own risk." msgstr "" @@ -4211,7 +4215,7 @@ msgstr "Direkomendasikan" msgid "Recursive Plot Scan" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:566 +#: src/components/nfts/NFTContextualActions.tsx:569 msgid "Refresh NFT data" msgstr "" @@ -4685,7 +4689,7 @@ msgstr "" #~ msgid "Share Privately" #~ msgstr "Share Privately" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Show" msgstr "" @@ -5229,6 +5233,10 @@ msgstr "PlotNFT ini telah di alokasi kan ke kunci yang berbeda. Anda masi bisa m msgid "This table shows you the last time your farm attempted to win a block challenge. <0>Learn more" msgstr "Tabel berikut menunjukan waktu terakhir farm anda mencoba untuk memenangkan sebuah blok tantangan. <0>Pelajari lebih lanjut" +#: src/hooks/useOpenUnsafeLink.tsx:24 +msgid "This type of the URL is not allowed to open for security reasons." +msgstr "" + #: src/components/settings/SettingsIntegration.tsx:398 msgid "This will reset all previously granted permissions across all Dapps that have been connected to. After resetting you will be asked to grant permission again." msgstr "" @@ -5579,9 +5587,10 @@ msgstr "" msgid "Uris" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:62 +#: src/components/notification/NotificationAnnouncementDialog.tsx:76 #: src/constants/WalletConnectCommands.tsx:964 -#: src/hooks/useOpenUnsafeLink.tsx:43 +#: src/hooks/useOpenUnsafeLink.tsx:27 +#: src/hooks/useOpenUnsafeLink.tsx:72 msgid "URL" msgstr "" @@ -5714,7 +5723,7 @@ msgstr "" #~ msgid "View on Hashgreen DEX" #~ msgstr "View on Hashgreen DEX" -#: src/components/nfts/NFTContextualActions.tsx:643 +#: src/components/nfts/NFTContextualActions.tsx:646 #: src/components/offers/OfferShareDialog.tsx:441 msgid "View on MintGarden" msgstr "" @@ -5727,7 +5736,7 @@ msgstr "" msgid "View on Offerpool" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:651 +#: src/components/nfts/NFTContextualActions.tsx:654 #: src/components/offers/OfferShareDialog.tsx:538 msgid "View on Spacescan.io" msgstr "" @@ -5866,6 +5875,10 @@ msgstr "" msgid "Warning Threshold" msgstr "" +#: src/hooks/useOpenUnsafeLink.tsx:21 +msgid "Warning: Invalid URL" +msgstr "" + #: src/components/app/AppVersionWarning.tsx:30 msgid "Warning: Mismatched Versions" msgstr "" @@ -5875,7 +5888,7 @@ msgstr "" msgid "Warning: Verify that the offered CAT asset IDs match the asset IDs of the tokens you expect to receive." msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:30 +#: src/hooks/useOpenUnsafeLink.tsx:59 msgid "Warning: You're about to visit a website" msgstr "" diff --git a/packages/gui/src/locales/it-IT/messages.po b/packages/gui/src/locales/it-IT/messages.po index 15819d8782..c01aa29720 100644 --- a/packages/gui/src/locales/it-IT/messages.po +++ b/packages/gui/src/locales/it-IT/messages.po @@ -44,134 +44,134 @@ msgid "Would you like to transfer {count} NFTs to a new owner?" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "No" msgstr "No" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "Yes" msgstr "Sì" #. js-lingui-explicit-id -#: src/electron/main.tsx:511 +#: src/electron/main.tsx:522 msgid "Confirm" msgstr "Conferma" #. js-lingui-explicit-id -#: src/electron/main.tsx:513 +#: src/electron/main.tsx:524 msgid "Are you sure you want to quit?" msgstr "Vuoi davvero chiudere?" #. js-lingui-explicit-id -#: src/electron/main.tsx:518 +#: src/electron/main.tsx:529 msgid "Keep service running in the background" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:636 -#: src/electron/main.tsx:844 +#: src/electron/main.tsx:647 +#: src/electron/main.tsx:855 msgid "File" msgstr "File" #. js-lingui-explicit-id -#: src/electron/main.tsx:644 +#: src/electron/main.tsx:655 msgid "Edit" msgstr "Modifica" #. js-lingui-explicit-id -#: src/electron/main.tsx:676 +#: src/electron/main.tsx:687 msgid "View" msgstr "Visualizza" #. js-lingui-explicit-id -#: src/electron/main.tsx:685 +#: src/electron/main.tsx:696 msgid "Developer" msgstr "Sviluppatore" #. js-lingui-explicit-id -#: src/electron/main.tsx:688 +#: src/electron/main.tsx:699 msgid "Developer Tools" msgstr "Strumenti per sviluppatori" #. js-lingui-explicit-id -#: src/electron/main.tsx:696 +#: src/electron/main.tsx:707 msgid "Trigger Desktop Notification" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:725 +#: src/electron/main.tsx:736 msgid "Full Screen" msgstr "Schermo Intero" #. js-lingui-explicit-id -#: src/electron/main.tsx:732 +#: src/electron/main.tsx:743 msgid "Window" msgstr "Finestra" #. js-lingui-explicit-id -#: src/electron/main.tsx:746 +#: src/electron/main.tsx:757 msgid "Help" msgstr "Aiuto" #. js-lingui-explicit-id -#: src/electron/main.tsx:750 +#: src/electron/main.tsx:761 msgid "Chia Blockchain Wiki" msgstr "Wiki della Blockchain Chia" #. js-lingui-explicit-id -#: src/electron/main.tsx:756 +#: src/electron/main.tsx:767 msgid "Frequently Asked Questions" msgstr "Domande Frequenti" #. js-lingui-explicit-id -#: src/electron/main.tsx:762 +#: src/electron/main.tsx:773 msgid "Release Notes" msgstr "Note di Rilascio" #. js-lingui-explicit-id -#: src/electron/main.tsx:768 +#: src/electron/main.tsx:779 msgid "Contribute on GitHub" msgstr "Contribuisci su GitHub" #. js-lingui-explicit-id -#: src/electron/main.tsx:777 +#: src/electron/main.tsx:788 msgid "Report an Issue..." msgstr "Segnala un Problema..." #. js-lingui-explicit-id -#: src/electron/main.tsx:783 +#: src/electron/main.tsx:794 msgid "Chat on Discord" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:789 +#: src/electron/main.tsx:800 msgid "Follow on Twitter" msgstr "Seguici su Twitter" #. js-lingui-explicit-id -#: src/electron/main.tsx:801 +#: src/electron/main.tsx:812 msgid "Chia" msgstr "Chia" #. js-lingui-explicit-id -#: src/electron/main.tsx:804 -#: src/electron/main.tsx:897 +#: src/electron/main.tsx:815 +#: src/electron/main.tsx:908 msgid "About Chia Blockchain" msgstr "Informazioni sulla Blockchain di Chia" #. js-lingui-explicit-id -#: src/electron/main.tsx:810 +#: src/electron/main.tsx:821 msgid "Check for Updates..." msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:858 +#: src/electron/main.tsx:869 msgid "Speech" msgstr "Discorso" #. js-lingui-explicit-id -#: src/electron/main.tsx:903 +#: src/electron/main.tsx:914 msgid "Check for updates..." msgstr "" @@ -302,6 +302,10 @@ msgstr "" msgid "*Usually it takes seconds to complete restarting." msgstr "" +#: src/components/notification/NotificationAnnouncementDialog.tsx:39 +msgid "##### Redacted for security reason #####" +msgstr "" + #: src/components/plot/overview/PlotOverviewPlots.tsx:42 msgid "+ Add a Plot" msgstr "+ Aggiungi un Plot" @@ -364,7 +368,7 @@ msgstr "Azione" #: src/components/farm/FarmFullNodeConnections.tsx:54 #: src/components/farm/FarmYourHarvesterNetwork.tsx:54 #: src/components/fullNode/FullNodeConnections.tsx:65 -#: src/components/nfts/NFTContextualActions.tsx:587 +#: src/components/nfts/NFTContextualActions.tsx:590 #: src/components/offers2/OfferIncomingTable.tsx:111 msgid "Actions" msgstr "Azioni" @@ -553,7 +557,7 @@ msgstr "" msgid "An NFT's provenance is a complete record of its ownership history. It provides a direct lineage that connects everyone who has owned the NFT, all the way back to the original artist. This helps to verify that the NFT is authentic." msgstr "La provenienza di un NFT è un record completo della sua storia. Fornisce un filone diretto che collega tutti coloro che hanno posseduto l'NFT, fino all'artista originale. Questo aiuta a verificare che l'NFT sia autentico." -#: src/components/notification/NotificationAnnouncementDialog.tsx:35 +#: src/components/notification/NotificationAnnouncementDialog.tsx:49 msgid "Announcement" msgstr "" @@ -779,7 +783,7 @@ msgstr "Sfoglia" #: src/components/nfts/NFTBurnDialog.tsx:90 #: src/components/nfts/NFTBurnDialog.tsx:185 -#: src/components/nfts/NFTContextualActions.tsx:525 +#: src/components/nfts/NFTContextualActions.tsx:528 msgid "Burn" msgstr "" @@ -834,7 +838,7 @@ msgstr "" #: src/components/signVerify/VerifyMessage.tsx:271 #: src/components/vcs/VCEditTitle.tsx:76 #: src/components/vcs/VCRevokeDialog.tsx:28 -#: src/hooks/useOpenUnsafeLink.tsx:33 +#: src/hooks/useOpenUnsafeLink.tsx:62 msgid "Cancel" msgstr "Annulla" @@ -996,7 +1000,7 @@ msgstr "" #: src/components/nfts/MultipleDownloadDialog.tsx:116 #: src/components/nfts/NFTMoveToProfileDialog.tsx:328 #: src/components/nfts/NFTTransferAction.tsx:166 -#: src/components/notification/NotificationAnnouncementDialog.tsx:75 +#: src/components/notification/NotificationAnnouncementDialog.tsx:87 #: src/components/notification/NotificationSendDialog.tsx:308 #: src/components/offers/ConfirmOfferCancellation.tsx:126 #: src/components/offers/OfferShareDialog.tsx:373 @@ -1569,7 +1573,7 @@ msgid "Display sharing options after creating a new offer" msgstr "" #: src/components/offers/OfferShareDialog.tsx:945 -#: src/hooks/useOpenUnsafeLink.tsx:64 +#: src/hooks/useOpenUnsafeLink.tsx:93 msgid "Do not show this dialog again" msgstr "" @@ -2112,7 +2116,7 @@ msgstr "" #~ msgid "Frequently Asked Questions" #~ msgstr "Frequently Asked Questions" -#: src/components/notification/NotificationAnnouncementDialog.tsx:44 +#: src/components/notification/NotificationAnnouncementDialog.tsx:58 msgid "From" msgstr "" @@ -2343,7 +2347,7 @@ msgstr "" #~ msgid "Hidden ({0})" #~ msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Hide" msgstr "" @@ -2834,7 +2838,7 @@ msgstr "" msgid "Memos" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:53 +#: src/components/notification/NotificationAnnouncementDialog.tsx:67 #: src/components/signVerify/SignMessage.tsx:200 #: src/components/signVerify/VerifyMessage.tsx:207 #: src/constants/WalletConnectCommands.tsx:184 @@ -3529,7 +3533,7 @@ msgstr "" msgid "Open in Browser" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:31 +#: src/hooks/useOpenUnsafeLink.tsx:60 msgid "Open Link" msgstr "" @@ -3720,7 +3724,7 @@ msgstr "" msgid "Pending removal" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:38 +#: src/hooks/useOpenUnsafeLink.tsx:67 msgid "Please check the following link to verify the site you are going to visit. Proceed at your own risk." msgstr "" @@ -4211,7 +4215,7 @@ msgstr "Raccomandato" msgid "Recursive Plot Scan" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:566 +#: src/components/nfts/NFTContextualActions.tsx:569 msgid "Refresh NFT data" msgstr "" @@ -4685,7 +4689,7 @@ msgstr "" #~ msgid "Share Privately" #~ msgstr "Share Privately" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Show" msgstr "" @@ -5229,6 +5233,10 @@ msgstr "Questo plot NFT è assegnato a una chiave diversa. Puoi ancora creare de msgid "This table shows you the last time your farm attempted to win a block challenge. <0>Learn more" msgstr "Questa tabella ti mostra l'ultima volta che la tua fattoria ha tentato di vincere una sfida di blocchi. <0>Per saperne di più" +#: src/hooks/useOpenUnsafeLink.tsx:24 +msgid "This type of the URL is not allowed to open for security reasons." +msgstr "" + #: src/components/settings/SettingsIntegration.tsx:398 msgid "This will reset all previously granted permissions across all Dapps that have been connected to. After resetting you will be asked to grant permission again." msgstr "" @@ -5579,9 +5587,10 @@ msgstr "" msgid "Uris" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:62 +#: src/components/notification/NotificationAnnouncementDialog.tsx:76 #: src/constants/WalletConnectCommands.tsx:964 -#: src/hooks/useOpenUnsafeLink.tsx:43 +#: src/hooks/useOpenUnsafeLink.tsx:27 +#: src/hooks/useOpenUnsafeLink.tsx:72 msgid "URL" msgstr "" @@ -5714,7 +5723,7 @@ msgstr "" #~ msgid "View on Hashgreen DEX" #~ msgstr "View on Hashgreen DEX" -#: src/components/nfts/NFTContextualActions.tsx:643 +#: src/components/nfts/NFTContextualActions.tsx:646 #: src/components/offers/OfferShareDialog.tsx:441 msgid "View on MintGarden" msgstr "" @@ -5727,7 +5736,7 @@ msgstr "" msgid "View on Offerpool" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:651 +#: src/components/nfts/NFTContextualActions.tsx:654 #: src/components/offers/OfferShareDialog.tsx:538 msgid "View on Spacescan.io" msgstr "" @@ -5866,6 +5875,10 @@ msgstr "" msgid "Warning Threshold" msgstr "" +#: src/hooks/useOpenUnsafeLink.tsx:21 +msgid "Warning: Invalid URL" +msgstr "" + #: src/components/app/AppVersionWarning.tsx:30 msgid "Warning: Mismatched Versions" msgstr "" @@ -5875,7 +5888,7 @@ msgstr "" msgid "Warning: Verify that the offered CAT asset IDs match the asset IDs of the tokens you expect to receive." msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:30 +#: src/hooks/useOpenUnsafeLink.tsx:59 msgid "Warning: You're about to visit a website" msgstr "" diff --git a/packages/gui/src/locales/ja-JP/messages.po b/packages/gui/src/locales/ja-JP/messages.po index 3e80c43bdb..a799302430 100644 --- a/packages/gui/src/locales/ja-JP/messages.po +++ b/packages/gui/src/locales/ja-JP/messages.po @@ -44,134 +44,134 @@ msgid "Would you like to transfer {count} NFTs to a new owner?" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "No" msgstr "いいえ" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "Yes" msgstr "はい" #. js-lingui-explicit-id -#: src/electron/main.tsx:511 +#: src/electron/main.tsx:522 msgid "Confirm" msgstr "了承" #. js-lingui-explicit-id -#: src/electron/main.tsx:513 +#: src/electron/main.tsx:524 msgid "Are you sure you want to quit?" msgstr "本当に終了しますか?" #. js-lingui-explicit-id -#: src/electron/main.tsx:518 +#: src/electron/main.tsx:529 msgid "Keep service running in the background" msgstr "バックグラウンドでサービスを実行し続ける" #. js-lingui-explicit-id -#: src/electron/main.tsx:636 -#: src/electron/main.tsx:844 +#: src/electron/main.tsx:647 +#: src/electron/main.tsx:855 msgid "File" msgstr "ファイル" #. js-lingui-explicit-id -#: src/electron/main.tsx:644 +#: src/electron/main.tsx:655 msgid "Edit" msgstr "編集" #. js-lingui-explicit-id -#: src/electron/main.tsx:676 +#: src/electron/main.tsx:687 msgid "View" msgstr "表示" #. js-lingui-explicit-id -#: src/electron/main.tsx:685 +#: src/electron/main.tsx:696 msgid "Developer" msgstr "開発者" #. js-lingui-explicit-id -#: src/electron/main.tsx:688 +#: src/electron/main.tsx:699 msgid "Developer Tools" msgstr "開発者向けツール" #. js-lingui-explicit-id -#: src/electron/main.tsx:696 +#: src/electron/main.tsx:707 msgid "Trigger Desktop Notification" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:725 +#: src/electron/main.tsx:736 msgid "Full Screen" msgstr "全画面表示" #. js-lingui-explicit-id -#: src/electron/main.tsx:732 +#: src/electron/main.tsx:743 msgid "Window" msgstr "ウィンドウ" #. js-lingui-explicit-id -#: src/electron/main.tsx:746 +#: src/electron/main.tsx:757 msgid "Help" msgstr "ヘルプ" #. js-lingui-explicit-id -#: src/electron/main.tsx:750 +#: src/electron/main.tsx:761 msgid "Chia Blockchain Wiki" msgstr "チアブロックチェーンの Wiki" #. js-lingui-explicit-id -#: src/electron/main.tsx:756 +#: src/electron/main.tsx:767 msgid "Frequently Asked Questions" msgstr "よくある質問" #. js-lingui-explicit-id -#: src/electron/main.tsx:762 +#: src/electron/main.tsx:773 msgid "Release Notes" msgstr "リリースノート" #. js-lingui-explicit-id -#: src/electron/main.tsx:768 +#: src/electron/main.tsx:779 msgid "Contribute on GitHub" msgstr "GitHub で開発協力" #. js-lingui-explicit-id -#: src/electron/main.tsx:777 +#: src/electron/main.tsx:788 msgid "Report an Issue..." msgstr "問題を報告" #. js-lingui-explicit-id -#: src/electron/main.tsx:783 +#: src/electron/main.tsx:794 msgid "Chat on Discord" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:789 +#: src/electron/main.tsx:800 msgid "Follow on Twitter" msgstr "Twitter でフォロー" #. js-lingui-explicit-id -#: src/electron/main.tsx:801 +#: src/electron/main.tsx:812 msgid "Chia" msgstr "チア" #. js-lingui-explicit-id -#: src/electron/main.tsx:804 -#: src/electron/main.tsx:897 +#: src/electron/main.tsx:815 +#: src/electron/main.tsx:908 msgid "About Chia Blockchain" msgstr "チアブロックチェーンについて" #. js-lingui-explicit-id -#: src/electron/main.tsx:810 +#: src/electron/main.tsx:821 msgid "Check for Updates..." msgstr "更新を確認…" #. js-lingui-explicit-id -#: src/electron/main.tsx:858 +#: src/electron/main.tsx:869 msgid "Speech" msgstr "スピーチ" #. js-lingui-explicit-id -#: src/electron/main.tsx:903 +#: src/electron/main.tsx:914 msgid "Check for updates..." msgstr "更新を確認…" @@ -302,6 +302,10 @@ msgstr "" msgid "*Usually it takes seconds to complete restarting." msgstr "" +#: src/components/notification/NotificationAnnouncementDialog.tsx:39 +msgid "##### Redacted for security reason #####" +msgstr "" + #: src/components/plot/overview/PlotOverviewPlots.tsx:42 msgid "+ Add a Plot" msgstr "+ 耕地を追加" @@ -364,7 +368,7 @@ msgstr "操作" #: src/components/farm/FarmFullNodeConnections.tsx:54 #: src/components/farm/FarmYourHarvesterNetwork.tsx:54 #: src/components/fullNode/FullNodeConnections.tsx:65 -#: src/components/nfts/NFTContextualActions.tsx:587 +#: src/components/nfts/NFTContextualActions.tsx:590 #: src/components/offers2/OfferIncomingTable.tsx:111 msgid "Actions" msgstr "操作" @@ -553,7 +557,7 @@ msgstr "" msgid "An NFT's provenance is a complete record of its ownership history. It provides a direct lineage that connects everyone who has owned the NFT, all the way back to the original artist. This helps to verify that the NFT is authentic." msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:35 +#: src/components/notification/NotificationAnnouncementDialog.tsx:49 msgid "Announcement" msgstr "" @@ -779,7 +783,7 @@ msgstr "参照" #: src/components/nfts/NFTBurnDialog.tsx:90 #: src/components/nfts/NFTBurnDialog.tsx:185 -#: src/components/nfts/NFTContextualActions.tsx:525 +#: src/components/nfts/NFTContextualActions.tsx:528 msgid "Burn" msgstr "焼却" @@ -834,7 +838,7 @@ msgstr "キャッシュサイズ (GB)" #: src/components/signVerify/VerifyMessage.tsx:271 #: src/components/vcs/VCEditTitle.tsx:76 #: src/components/vcs/VCRevokeDialog.tsx:28 -#: src/hooks/useOpenUnsafeLink.tsx:33 +#: src/hooks/useOpenUnsafeLink.tsx:62 msgid "Cancel" msgstr "キャンセル" @@ -996,7 +1000,7 @@ msgstr "" #: src/components/nfts/MultipleDownloadDialog.tsx:116 #: src/components/nfts/NFTMoveToProfileDialog.tsx:328 #: src/components/nfts/NFTTransferAction.tsx:166 -#: src/components/notification/NotificationAnnouncementDialog.tsx:75 +#: src/components/notification/NotificationAnnouncementDialog.tsx:87 #: src/components/notification/NotificationSendDialog.tsx:308 #: src/components/offers/ConfirmOfferCancellation.tsx:126 #: src/components/offers/OfferShareDialog.tsx:373 @@ -1569,7 +1573,7 @@ msgid "Display sharing options after creating a new offer" msgstr "" #: src/components/offers/OfferShareDialog.tsx:945 -#: src/hooks/useOpenUnsafeLink.tsx:64 +#: src/hooks/useOpenUnsafeLink.tsx:93 msgid "Do not show this dialog again" msgstr "" @@ -2112,7 +2116,7 @@ msgstr "" #~ msgid "Frequently Asked Questions" #~ msgstr "Frequently Asked Questions" -#: src/components/notification/NotificationAnnouncementDialog.tsx:44 +#: src/components/notification/NotificationAnnouncementDialog.tsx:58 msgid "From" msgstr "" @@ -2343,7 +2347,7 @@ msgstr "" #~ msgid "Hidden ({0})" #~ msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Hide" msgstr "非表示" @@ -2837,7 +2841,7 @@ msgstr "団体所属情報" msgid "Memos" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:53 +#: src/components/notification/NotificationAnnouncementDialog.tsx:67 #: src/components/signVerify/SignMessage.tsx:200 #: src/components/signVerify/VerifyMessage.tsx:207 #: src/constants/WalletConnectCommands.tsx:184 @@ -3532,7 +3536,7 @@ msgstr "" msgid "Open in Browser" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:31 +#: src/hooks/useOpenUnsafeLink.tsx:60 msgid "Open Link" msgstr "" @@ -3723,7 +3727,7 @@ msgstr "" msgid "Pending removal" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:38 +#: src/hooks/useOpenUnsafeLink.tsx:67 msgid "Please check the following link to verify the site you are going to visit. Proceed at your own risk." msgstr "" @@ -4214,7 +4218,7 @@ msgstr "おすすめ" msgid "Recursive Plot Scan" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:566 +#: src/components/nfts/NFTContextualActions.tsx:569 msgid "Refresh NFT data" msgstr "" @@ -4688,7 +4692,7 @@ msgstr "" #~ msgid "Share Privately" #~ msgstr "Share Privately" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Show" msgstr "表示" @@ -5232,6 +5236,10 @@ msgstr "" msgid "This table shows you the last time your farm attempted to win a block challenge. <0>Learn more" msgstr "この表には、最後にあなたの畑がブロックチャレンジに勝とうと試みた詳細が記録されています。 <0>詳しく" +#: src/hooks/useOpenUnsafeLink.tsx:24 +msgid "This type of the URL is not allowed to open for security reasons." +msgstr "" + #: src/components/settings/SettingsIntegration.tsx:398 msgid "This will reset all previously granted permissions across all Dapps that have been connected to. After resetting you will be asked to grant permission again." msgstr "" @@ -5582,9 +5590,10 @@ msgstr "" msgid "Uris" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:62 +#: src/components/notification/NotificationAnnouncementDialog.tsx:76 #: src/constants/WalletConnectCommands.tsx:964 -#: src/hooks/useOpenUnsafeLink.tsx:43 +#: src/hooks/useOpenUnsafeLink.tsx:27 +#: src/hooks/useOpenUnsafeLink.tsx:72 msgid "URL" msgstr "URL" @@ -5717,7 +5726,7 @@ msgstr "" #~ msgid "View on Hashgreen DEX" #~ msgstr "View on Hashgreen DEX" -#: src/components/nfts/NFTContextualActions.tsx:643 +#: src/components/nfts/NFTContextualActions.tsx:646 #: src/components/offers/OfferShareDialog.tsx:441 msgid "View on MintGarden" msgstr "" @@ -5730,7 +5739,7 @@ msgstr "" msgid "View on Offerpool" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:651 +#: src/components/nfts/NFTContextualActions.tsx:654 #: src/components/offers/OfferShareDialog.tsx:538 msgid "View on Spacescan.io" msgstr "" @@ -5869,6 +5878,10 @@ msgstr "" msgid "Warning Threshold" msgstr "" +#: src/hooks/useOpenUnsafeLink.tsx:21 +msgid "Warning: Invalid URL" +msgstr "" + #: src/components/app/AppVersionWarning.tsx:30 msgid "Warning: Mismatched Versions" msgstr "" @@ -5878,7 +5891,7 @@ msgstr "" msgid "Warning: Verify that the offered CAT asset IDs match the asset IDs of the tokens you expect to receive." msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:30 +#: src/hooks/useOpenUnsafeLink.tsx:59 msgid "Warning: You're about to visit a website" msgstr "" diff --git a/packages/gui/src/locales/ko-KR/messages.po b/packages/gui/src/locales/ko-KR/messages.po index e495f591fc..4b856d0b0b 100644 --- a/packages/gui/src/locales/ko-KR/messages.po +++ b/packages/gui/src/locales/ko-KR/messages.po @@ -44,134 +44,134 @@ msgid "Would you like to transfer {count} NFTs to a new owner?" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "No" msgstr "아니오" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "Yes" msgstr "예" #. js-lingui-explicit-id -#: src/electron/main.tsx:511 +#: src/electron/main.tsx:522 msgid "Confirm" msgstr "확인" #. js-lingui-explicit-id -#: src/electron/main.tsx:513 +#: src/electron/main.tsx:524 msgid "Are you sure you want to quit?" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:518 +#: src/electron/main.tsx:529 msgid "Keep service running in the background" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:636 -#: src/electron/main.tsx:844 +#: src/electron/main.tsx:647 +#: src/electron/main.tsx:855 msgid "File" msgstr "파일" #. js-lingui-explicit-id -#: src/electron/main.tsx:644 +#: src/electron/main.tsx:655 msgid "Edit" msgstr "편집" #. js-lingui-explicit-id -#: src/electron/main.tsx:676 +#: src/electron/main.tsx:687 msgid "View" msgstr "보기" #. js-lingui-explicit-id -#: src/electron/main.tsx:685 +#: src/electron/main.tsx:696 msgid "Developer" msgstr "개발자" #. js-lingui-explicit-id -#: src/electron/main.tsx:688 +#: src/electron/main.tsx:699 msgid "Developer Tools" msgstr "개발자 도구" #. js-lingui-explicit-id -#: src/electron/main.tsx:696 +#: src/electron/main.tsx:707 msgid "Trigger Desktop Notification" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:725 +#: src/electron/main.tsx:736 msgid "Full Screen" msgstr "전체 화면" #. js-lingui-explicit-id -#: src/electron/main.tsx:732 +#: src/electron/main.tsx:743 msgid "Window" msgstr "창" #. js-lingui-explicit-id -#: src/electron/main.tsx:746 +#: src/electron/main.tsx:757 msgid "Help" msgstr "도움말" #. js-lingui-explicit-id -#: src/electron/main.tsx:750 +#: src/electron/main.tsx:761 msgid "Chia Blockchain Wiki" msgstr "치아 블록체인 위키" #. js-lingui-explicit-id -#: src/electron/main.tsx:756 +#: src/electron/main.tsx:767 msgid "Frequently Asked Questions" msgstr "자주 묻는 질문" #. js-lingui-explicit-id -#: src/electron/main.tsx:762 +#: src/electron/main.tsx:773 msgid "Release Notes" msgstr "릴리스 노트" #. js-lingui-explicit-id -#: src/electron/main.tsx:768 +#: src/electron/main.tsx:779 msgid "Contribute on GitHub" msgstr "GitHub에서 기여" #. js-lingui-explicit-id -#: src/electron/main.tsx:777 +#: src/electron/main.tsx:788 msgid "Report an Issue..." msgstr "문제 보고하기..." #. js-lingui-explicit-id -#: src/electron/main.tsx:783 +#: src/electron/main.tsx:794 msgid "Chat on Discord" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:789 +#: src/electron/main.tsx:800 msgid "Follow on Twitter" msgstr "트위터 팔로우하기" #. js-lingui-explicit-id -#: src/electron/main.tsx:801 +#: src/electron/main.tsx:812 msgid "Chia" msgstr "치아" #. js-lingui-explicit-id -#: src/electron/main.tsx:804 -#: src/electron/main.tsx:897 +#: src/electron/main.tsx:815 +#: src/electron/main.tsx:908 msgid "About Chia Blockchain" msgstr "치아 블록체인에 대하여" #. js-lingui-explicit-id -#: src/electron/main.tsx:810 +#: src/electron/main.tsx:821 msgid "Check for Updates..." msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:858 +#: src/electron/main.tsx:869 msgid "Speech" msgstr "말하다" #. js-lingui-explicit-id -#: src/electron/main.tsx:903 +#: src/electron/main.tsx:914 msgid "Check for updates..." msgstr "" @@ -302,6 +302,10 @@ msgstr "" msgid "*Usually it takes seconds to complete restarting." msgstr "" +#: src/components/notification/NotificationAnnouncementDialog.tsx:39 +msgid "##### Redacted for security reason #####" +msgstr "" + #: src/components/plot/overview/PlotOverviewPlots.tsx:42 msgid "+ Add a Plot" msgstr "" @@ -364,7 +368,7 @@ msgstr "행동" #: src/components/farm/FarmFullNodeConnections.tsx:54 #: src/components/farm/FarmYourHarvesterNetwork.tsx:54 #: src/components/fullNode/FullNodeConnections.tsx:65 -#: src/components/nfts/NFTContextualActions.tsx:587 +#: src/components/nfts/NFTContextualActions.tsx:590 #: src/components/offers2/OfferIncomingTable.tsx:111 msgid "Actions" msgstr "행동들" @@ -553,7 +557,7 @@ msgstr "" msgid "An NFT's provenance is a complete record of its ownership history. It provides a direct lineage that connects everyone who has owned the NFT, all the way back to the original artist. This helps to verify that the NFT is authentic." msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:35 +#: src/components/notification/NotificationAnnouncementDialog.tsx:49 msgid "Announcement" msgstr "" @@ -779,7 +783,7 @@ msgstr "찾아보기" #: src/components/nfts/NFTBurnDialog.tsx:90 #: src/components/nfts/NFTBurnDialog.tsx:185 -#: src/components/nfts/NFTContextualActions.tsx:525 +#: src/components/nfts/NFTContextualActions.tsx:528 msgid "Burn" msgstr "" @@ -834,7 +838,7 @@ msgstr "" #: src/components/signVerify/VerifyMessage.tsx:271 #: src/components/vcs/VCEditTitle.tsx:76 #: src/components/vcs/VCRevokeDialog.tsx:28 -#: src/hooks/useOpenUnsafeLink.tsx:33 +#: src/hooks/useOpenUnsafeLink.tsx:62 msgid "Cancel" msgstr "취소" @@ -996,7 +1000,7 @@ msgstr "" #: src/components/nfts/MultipleDownloadDialog.tsx:116 #: src/components/nfts/NFTMoveToProfileDialog.tsx:328 #: src/components/nfts/NFTTransferAction.tsx:166 -#: src/components/notification/NotificationAnnouncementDialog.tsx:75 +#: src/components/notification/NotificationAnnouncementDialog.tsx:87 #: src/components/notification/NotificationSendDialog.tsx:308 #: src/components/offers/ConfirmOfferCancellation.tsx:126 #: src/components/offers/OfferShareDialog.tsx:373 @@ -1569,7 +1573,7 @@ msgid "Display sharing options after creating a new offer" msgstr "" #: src/components/offers/OfferShareDialog.tsx:945 -#: src/hooks/useOpenUnsafeLink.tsx:64 +#: src/hooks/useOpenUnsafeLink.tsx:93 msgid "Do not show this dialog again" msgstr "" @@ -2112,7 +2116,7 @@ msgstr "" #~ msgid "Frequently Asked Questions" #~ msgstr "Frequently Asked Questions" -#: src/components/notification/NotificationAnnouncementDialog.tsx:44 +#: src/components/notification/NotificationAnnouncementDialog.tsx:58 msgid "From" msgstr "" @@ -2343,7 +2347,7 @@ msgstr "" #~ msgid "Hidden ({0})" #~ msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Hide" msgstr "" @@ -2834,7 +2838,7 @@ msgstr "" msgid "Memos" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:53 +#: src/components/notification/NotificationAnnouncementDialog.tsx:67 #: src/components/signVerify/SignMessage.tsx:200 #: src/components/signVerify/VerifyMessage.tsx:207 #: src/constants/WalletConnectCommands.tsx:184 @@ -3529,7 +3533,7 @@ msgstr "" msgid "Open in Browser" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:31 +#: src/hooks/useOpenUnsafeLink.tsx:60 msgid "Open Link" msgstr "" @@ -3720,7 +3724,7 @@ msgstr "" msgid "Pending removal" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:38 +#: src/hooks/useOpenUnsafeLink.tsx:67 msgid "Please check the following link to verify the site you are going to visit. Proceed at your own risk." msgstr "" @@ -4211,7 +4215,7 @@ msgstr "" msgid "Recursive Plot Scan" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:566 +#: src/components/nfts/NFTContextualActions.tsx:569 msgid "Refresh NFT data" msgstr "" @@ -4685,7 +4689,7 @@ msgstr "" #~ msgid "Share Privately" #~ msgstr "Share Privately" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Show" msgstr "" @@ -5229,6 +5233,10 @@ msgstr "" msgid "This table shows you the last time your farm attempted to win a block challenge. <0>Learn more" msgstr "이 표는 농장에서 마지막으로 블록 챌린지에서 승리를 시도한 시간을 보여줍니다. <0> 자세히 알아보기 " +#: src/hooks/useOpenUnsafeLink.tsx:24 +msgid "This type of the URL is not allowed to open for security reasons." +msgstr "" + #: src/components/settings/SettingsIntegration.tsx:398 msgid "This will reset all previously granted permissions across all Dapps that have been connected to. After resetting you will be asked to grant permission again." msgstr "" @@ -5579,9 +5587,10 @@ msgstr "" msgid "Uris" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:62 +#: src/components/notification/NotificationAnnouncementDialog.tsx:76 #: src/constants/WalletConnectCommands.tsx:964 -#: src/hooks/useOpenUnsafeLink.tsx:43 +#: src/hooks/useOpenUnsafeLink.tsx:27 +#: src/hooks/useOpenUnsafeLink.tsx:72 msgid "URL" msgstr "" @@ -5714,7 +5723,7 @@ msgstr "" #~ msgid "View on Hashgreen DEX" #~ msgstr "View on Hashgreen DEX" -#: src/components/nfts/NFTContextualActions.tsx:643 +#: src/components/nfts/NFTContextualActions.tsx:646 #: src/components/offers/OfferShareDialog.tsx:441 msgid "View on MintGarden" msgstr "" @@ -5727,7 +5736,7 @@ msgstr "" msgid "View on Offerpool" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:651 +#: src/components/nfts/NFTContextualActions.tsx:654 #: src/components/offers/OfferShareDialog.tsx:538 msgid "View on Spacescan.io" msgstr "" @@ -5866,6 +5875,10 @@ msgstr "" msgid "Warning Threshold" msgstr "" +#: src/hooks/useOpenUnsafeLink.tsx:21 +msgid "Warning: Invalid URL" +msgstr "" + #: src/components/app/AppVersionWarning.tsx:30 msgid "Warning: Mismatched Versions" msgstr "" @@ -5875,7 +5888,7 @@ msgstr "" msgid "Warning: Verify that the offered CAT asset IDs match the asset IDs of the tokens you expect to receive." msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:30 +#: src/hooks/useOpenUnsafeLink.tsx:59 msgid "Warning: You're about to visit a website" msgstr "" diff --git a/packages/gui/src/locales/nl-NL/messages.po b/packages/gui/src/locales/nl-NL/messages.po index 7d06fc73d1..7bf7b7e610 100644 --- a/packages/gui/src/locales/nl-NL/messages.po +++ b/packages/gui/src/locales/nl-NL/messages.po @@ -44,134 +44,134 @@ msgid "Would you like to transfer {count} NFTs to a new owner?" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "No" msgstr "Geen" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "Yes" msgstr "Ja" #. js-lingui-explicit-id -#: src/electron/main.tsx:511 +#: src/electron/main.tsx:522 msgid "Confirm" msgstr "Bevestig" #. js-lingui-explicit-id -#: src/electron/main.tsx:513 +#: src/electron/main.tsx:524 msgid "Are you sure you want to quit?" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:518 +#: src/electron/main.tsx:529 msgid "Keep service running in the background" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:636 -#: src/electron/main.tsx:844 +#: src/electron/main.tsx:647 +#: src/electron/main.tsx:855 msgid "File" msgstr "Bestand" #. js-lingui-explicit-id -#: src/electron/main.tsx:644 +#: src/electron/main.tsx:655 msgid "Edit" msgstr "Bewerk" #. js-lingui-explicit-id -#: src/electron/main.tsx:676 +#: src/electron/main.tsx:687 msgid "View" msgstr "Bekijk" #. js-lingui-explicit-id -#: src/electron/main.tsx:685 +#: src/electron/main.tsx:696 msgid "Developer" msgstr "Ontwikkelaar" #. js-lingui-explicit-id -#: src/electron/main.tsx:688 +#: src/electron/main.tsx:699 msgid "Developer Tools" msgstr "Ontwikkelaarstools" #. js-lingui-explicit-id -#: src/electron/main.tsx:696 +#: src/electron/main.tsx:707 msgid "Trigger Desktop Notification" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:725 +#: src/electron/main.tsx:736 msgid "Full Screen" msgstr "Volledig scherm" #. js-lingui-explicit-id -#: src/electron/main.tsx:732 +#: src/electron/main.tsx:743 msgid "Window" msgstr "Scherm" #. js-lingui-explicit-id -#: src/electron/main.tsx:746 +#: src/electron/main.tsx:757 msgid "Help" msgstr "Hulp" #. js-lingui-explicit-id -#: src/electron/main.tsx:750 +#: src/electron/main.tsx:761 msgid "Chia Blockchain Wiki" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:756 +#: src/electron/main.tsx:767 msgid "Frequently Asked Questions" msgstr "Veel gestelde vragen" #. js-lingui-explicit-id -#: src/electron/main.tsx:762 +#: src/electron/main.tsx:773 msgid "Release Notes" msgstr "Release Nota's" #. js-lingui-explicit-id -#: src/electron/main.tsx:768 +#: src/electron/main.tsx:779 msgid "Contribute on GitHub" msgstr "Bijdrage op GitHub" #. js-lingui-explicit-id -#: src/electron/main.tsx:777 +#: src/electron/main.tsx:788 msgid "Report an Issue..." msgstr "Meld een probleem..." #. js-lingui-explicit-id -#: src/electron/main.tsx:783 +#: src/electron/main.tsx:794 msgid "Chat on Discord" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:789 +#: src/electron/main.tsx:800 msgid "Follow on Twitter" msgstr "Volg op Twitter" #. js-lingui-explicit-id -#: src/electron/main.tsx:801 +#: src/electron/main.tsx:812 msgid "Chia" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:804 -#: src/electron/main.tsx:897 +#: src/electron/main.tsx:815 +#: src/electron/main.tsx:908 msgid "About Chia Blockchain" msgstr "Over Chia Blockchain" #. js-lingui-explicit-id -#: src/electron/main.tsx:810 +#: src/electron/main.tsx:821 msgid "Check for Updates..." msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:858 +#: src/electron/main.tsx:869 msgid "Speech" msgstr "Spraak" #. js-lingui-explicit-id -#: src/electron/main.tsx:903 +#: src/electron/main.tsx:914 msgid "Check for updates..." msgstr "" @@ -302,6 +302,10 @@ msgstr "" msgid "*Usually it takes seconds to complete restarting." msgstr "" +#: src/components/notification/NotificationAnnouncementDialog.tsx:39 +msgid "##### Redacted for security reason #####" +msgstr "" + #: src/components/plot/overview/PlotOverviewPlots.tsx:42 msgid "+ Add a Plot" msgstr "" @@ -364,7 +368,7 @@ msgstr "Actie" #: src/components/farm/FarmFullNodeConnections.tsx:54 #: src/components/farm/FarmYourHarvesterNetwork.tsx:54 #: src/components/fullNode/FullNodeConnections.tsx:65 -#: src/components/nfts/NFTContextualActions.tsx:587 +#: src/components/nfts/NFTContextualActions.tsx:590 #: src/components/offers2/OfferIncomingTable.tsx:111 msgid "Actions" msgstr "Acties" @@ -553,7 +557,7 @@ msgstr "" msgid "An NFT's provenance is a complete record of its ownership history. It provides a direct lineage that connects everyone who has owned the NFT, all the way back to the original artist. This helps to verify that the NFT is authentic." msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:35 +#: src/components/notification/NotificationAnnouncementDialog.tsx:49 msgid "Announcement" msgstr "" @@ -779,7 +783,7 @@ msgstr "Zoek" #: src/components/nfts/NFTBurnDialog.tsx:90 #: src/components/nfts/NFTBurnDialog.tsx:185 -#: src/components/nfts/NFTContextualActions.tsx:525 +#: src/components/nfts/NFTContextualActions.tsx:528 msgid "Burn" msgstr "" @@ -834,7 +838,7 @@ msgstr "" #: src/components/signVerify/VerifyMessage.tsx:271 #: src/components/vcs/VCEditTitle.tsx:76 #: src/components/vcs/VCRevokeDialog.tsx:28 -#: src/hooks/useOpenUnsafeLink.tsx:33 +#: src/hooks/useOpenUnsafeLink.tsx:62 msgid "Cancel" msgstr "Annuleer" @@ -996,7 +1000,7 @@ msgstr "" #: src/components/nfts/MultipleDownloadDialog.tsx:116 #: src/components/nfts/NFTMoveToProfileDialog.tsx:328 #: src/components/nfts/NFTTransferAction.tsx:166 -#: src/components/notification/NotificationAnnouncementDialog.tsx:75 +#: src/components/notification/NotificationAnnouncementDialog.tsx:87 #: src/components/notification/NotificationSendDialog.tsx:308 #: src/components/offers/ConfirmOfferCancellation.tsx:126 #: src/components/offers/OfferShareDialog.tsx:373 @@ -1569,7 +1573,7 @@ msgid "Display sharing options after creating a new offer" msgstr "" #: src/components/offers/OfferShareDialog.tsx:945 -#: src/hooks/useOpenUnsafeLink.tsx:64 +#: src/hooks/useOpenUnsafeLink.tsx:93 msgid "Do not show this dialog again" msgstr "" @@ -2112,7 +2116,7 @@ msgstr "" #~ msgid "Frequently Asked Questions" #~ msgstr "Frequently Asked Questions" -#: src/components/notification/NotificationAnnouncementDialog.tsx:44 +#: src/components/notification/NotificationAnnouncementDialog.tsx:58 msgid "From" msgstr "" @@ -2343,7 +2347,7 @@ msgstr "" #~ msgid "Hidden ({0})" #~ msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Hide" msgstr "" @@ -2834,7 +2838,7 @@ msgstr "" msgid "Memos" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:53 +#: src/components/notification/NotificationAnnouncementDialog.tsx:67 #: src/components/signVerify/SignMessage.tsx:200 #: src/components/signVerify/VerifyMessage.tsx:207 #: src/constants/WalletConnectCommands.tsx:184 @@ -3529,7 +3533,7 @@ msgstr "" msgid "Open in Browser" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:31 +#: src/hooks/useOpenUnsafeLink.tsx:60 msgid "Open Link" msgstr "" @@ -3720,7 +3724,7 @@ msgstr "" msgid "Pending removal" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:38 +#: src/hooks/useOpenUnsafeLink.tsx:67 msgid "Please check the following link to verify the site you are going to visit. Proceed at your own risk." msgstr "" @@ -4211,7 +4215,7 @@ msgstr "" msgid "Recursive Plot Scan" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:566 +#: src/components/nfts/NFTContextualActions.tsx:569 msgid "Refresh NFT data" msgstr "" @@ -4685,7 +4689,7 @@ msgstr "" #~ msgid "Share Privately" #~ msgstr "Share Privately" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Show" msgstr "" @@ -5229,6 +5233,10 @@ msgstr "" msgid "This table shows you the last time your farm attempted to win a block challenge. <0>Learn more" msgstr "" +#: src/hooks/useOpenUnsafeLink.tsx:24 +msgid "This type of the URL is not allowed to open for security reasons." +msgstr "" + #: src/components/settings/SettingsIntegration.tsx:398 msgid "This will reset all previously granted permissions across all Dapps that have been connected to. After resetting you will be asked to grant permission again." msgstr "" @@ -5579,9 +5587,10 @@ msgstr "" msgid "Uris" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:62 +#: src/components/notification/NotificationAnnouncementDialog.tsx:76 #: src/constants/WalletConnectCommands.tsx:964 -#: src/hooks/useOpenUnsafeLink.tsx:43 +#: src/hooks/useOpenUnsafeLink.tsx:27 +#: src/hooks/useOpenUnsafeLink.tsx:72 msgid "URL" msgstr "" @@ -5714,7 +5723,7 @@ msgstr "" #~ msgid "View on Hashgreen DEX" #~ msgstr "View on Hashgreen DEX" -#: src/components/nfts/NFTContextualActions.tsx:643 +#: src/components/nfts/NFTContextualActions.tsx:646 #: src/components/offers/OfferShareDialog.tsx:441 msgid "View on MintGarden" msgstr "" @@ -5727,7 +5736,7 @@ msgstr "" msgid "View on Offerpool" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:651 +#: src/components/nfts/NFTContextualActions.tsx:654 #: src/components/offers/OfferShareDialog.tsx:538 msgid "View on Spacescan.io" msgstr "" @@ -5866,6 +5875,10 @@ msgstr "" msgid "Warning Threshold" msgstr "" +#: src/hooks/useOpenUnsafeLink.tsx:21 +msgid "Warning: Invalid URL" +msgstr "" + #: src/components/app/AppVersionWarning.tsx:30 msgid "Warning: Mismatched Versions" msgstr "" @@ -5875,7 +5888,7 @@ msgstr "" msgid "Warning: Verify that the offered CAT asset IDs match the asset IDs of the tokens you expect to receive." msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:30 +#: src/hooks/useOpenUnsafeLink.tsx:59 msgid "Warning: You're about to visit a website" msgstr "" diff --git a/packages/gui/src/locales/no-NO/messages.po b/packages/gui/src/locales/no-NO/messages.po index 352f4f8d96..615685d244 100644 --- a/packages/gui/src/locales/no-NO/messages.po +++ b/packages/gui/src/locales/no-NO/messages.po @@ -44,134 +44,134 @@ msgid "Would you like to transfer {count} NFTs to a new owner?" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "No" msgstr "Nei" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "Yes" msgstr "Ja" #. js-lingui-explicit-id -#: src/electron/main.tsx:511 +#: src/electron/main.tsx:522 msgid "Confirm" msgstr "Bekreft" #. js-lingui-explicit-id -#: src/electron/main.tsx:513 +#: src/electron/main.tsx:524 msgid "Are you sure you want to quit?" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:518 +#: src/electron/main.tsx:529 msgid "Keep service running in the background" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:636 -#: src/electron/main.tsx:844 +#: src/electron/main.tsx:647 +#: src/electron/main.tsx:855 msgid "File" msgstr "Fil" #. js-lingui-explicit-id -#: src/electron/main.tsx:644 +#: src/electron/main.tsx:655 msgid "Edit" msgstr "Rediger" #. js-lingui-explicit-id -#: src/electron/main.tsx:676 +#: src/electron/main.tsx:687 msgid "View" msgstr "Vis" #. js-lingui-explicit-id -#: src/electron/main.tsx:685 +#: src/electron/main.tsx:696 msgid "Developer" msgstr "Utvikler" #. js-lingui-explicit-id -#: src/electron/main.tsx:688 +#: src/electron/main.tsx:699 msgid "Developer Tools" msgstr "Utviklerverktøy" #. js-lingui-explicit-id -#: src/electron/main.tsx:696 +#: src/electron/main.tsx:707 msgid "Trigger Desktop Notification" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:725 +#: src/electron/main.tsx:736 msgid "Full Screen" msgstr "Fullskjerm" #. js-lingui-explicit-id -#: src/electron/main.tsx:732 +#: src/electron/main.tsx:743 msgid "Window" msgstr "Vindu" #. js-lingui-explicit-id -#: src/electron/main.tsx:746 +#: src/electron/main.tsx:757 msgid "Help" msgstr "Hjelp" #. js-lingui-explicit-id -#: src/electron/main.tsx:750 +#: src/electron/main.tsx:761 msgid "Chia Blockchain Wiki" msgstr "Chia Blokkjede Wiki" #. js-lingui-explicit-id -#: src/electron/main.tsx:756 +#: src/electron/main.tsx:767 msgid "Frequently Asked Questions" msgstr "Ofte Stilte Spørsmål" #. js-lingui-explicit-id -#: src/electron/main.tsx:762 +#: src/electron/main.tsx:773 msgid "Release Notes" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:768 +#: src/electron/main.tsx:779 msgid "Contribute on GitHub" msgstr "Bidra på GitHub" #. js-lingui-explicit-id -#: src/electron/main.tsx:777 +#: src/electron/main.tsx:788 msgid "Report an Issue..." msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:783 +#: src/electron/main.tsx:794 msgid "Chat on Discord" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:789 +#: src/electron/main.tsx:800 msgid "Follow on Twitter" msgstr "Følg på Twitter" #. js-lingui-explicit-id -#: src/electron/main.tsx:801 +#: src/electron/main.tsx:812 msgid "Chia" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:804 -#: src/electron/main.tsx:897 +#: src/electron/main.tsx:815 +#: src/electron/main.tsx:908 msgid "About Chia Blockchain" msgstr "Om Chia Blockchain" #. js-lingui-explicit-id -#: src/electron/main.tsx:810 +#: src/electron/main.tsx:821 msgid "Check for Updates..." msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:858 +#: src/electron/main.tsx:869 msgid "Speech" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:903 +#: src/electron/main.tsx:914 msgid "Check for updates..." msgstr "" @@ -302,6 +302,10 @@ msgstr "" msgid "*Usually it takes seconds to complete restarting." msgstr "" +#: src/components/notification/NotificationAnnouncementDialog.tsx:39 +msgid "##### Redacted for security reason #####" +msgstr "" + #: src/components/plot/overview/PlotOverviewPlots.tsx:42 msgid "+ Add a Plot" msgstr "" @@ -364,7 +368,7 @@ msgstr "Handling" #: src/components/farm/FarmFullNodeConnections.tsx:54 #: src/components/farm/FarmYourHarvesterNetwork.tsx:54 #: src/components/fullNode/FullNodeConnections.tsx:65 -#: src/components/nfts/NFTContextualActions.tsx:587 +#: src/components/nfts/NFTContextualActions.tsx:590 #: src/components/offers2/OfferIncomingTable.tsx:111 msgid "Actions" msgstr "Handlinger" @@ -553,7 +557,7 @@ msgstr "" msgid "An NFT's provenance is a complete record of its ownership history. It provides a direct lineage that connects everyone who has owned the NFT, all the way back to the original artist. This helps to verify that the NFT is authentic." msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:35 +#: src/components/notification/NotificationAnnouncementDialog.tsx:49 msgid "Announcement" msgstr "" @@ -779,7 +783,7 @@ msgstr "Bla igjennom" #: src/components/nfts/NFTBurnDialog.tsx:90 #: src/components/nfts/NFTBurnDialog.tsx:185 -#: src/components/nfts/NFTContextualActions.tsx:525 +#: src/components/nfts/NFTContextualActions.tsx:528 msgid "Burn" msgstr "" @@ -834,7 +838,7 @@ msgstr "" #: src/components/signVerify/VerifyMessage.tsx:271 #: src/components/vcs/VCEditTitle.tsx:76 #: src/components/vcs/VCRevokeDialog.tsx:28 -#: src/hooks/useOpenUnsafeLink.tsx:33 +#: src/hooks/useOpenUnsafeLink.tsx:62 msgid "Cancel" msgstr "Avbryt" @@ -996,7 +1000,7 @@ msgstr "" #: src/components/nfts/MultipleDownloadDialog.tsx:116 #: src/components/nfts/NFTMoveToProfileDialog.tsx:328 #: src/components/nfts/NFTTransferAction.tsx:166 -#: src/components/notification/NotificationAnnouncementDialog.tsx:75 +#: src/components/notification/NotificationAnnouncementDialog.tsx:87 #: src/components/notification/NotificationSendDialog.tsx:308 #: src/components/offers/ConfirmOfferCancellation.tsx:126 #: src/components/offers/OfferShareDialog.tsx:373 @@ -1569,7 +1573,7 @@ msgid "Display sharing options after creating a new offer" msgstr "" #: src/components/offers/OfferShareDialog.tsx:945 -#: src/hooks/useOpenUnsafeLink.tsx:64 +#: src/hooks/useOpenUnsafeLink.tsx:93 msgid "Do not show this dialog again" msgstr "" @@ -2112,7 +2116,7 @@ msgstr "" #~ msgid "Frequently Asked Questions" #~ msgstr "Frequently Asked Questions" -#: src/components/notification/NotificationAnnouncementDialog.tsx:44 +#: src/components/notification/NotificationAnnouncementDialog.tsx:58 msgid "From" msgstr "" @@ -2343,7 +2347,7 @@ msgstr "" #~ msgid "Hidden ({0})" #~ msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Hide" msgstr "" @@ -2834,7 +2838,7 @@ msgstr "" msgid "Memos" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:53 +#: src/components/notification/NotificationAnnouncementDialog.tsx:67 #: src/components/signVerify/SignMessage.tsx:200 #: src/components/signVerify/VerifyMessage.tsx:207 #: src/constants/WalletConnectCommands.tsx:184 @@ -3529,7 +3533,7 @@ msgstr "" msgid "Open in Browser" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:31 +#: src/hooks/useOpenUnsafeLink.tsx:60 msgid "Open Link" msgstr "" @@ -3720,7 +3724,7 @@ msgstr "" msgid "Pending removal" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:38 +#: src/hooks/useOpenUnsafeLink.tsx:67 msgid "Please check the following link to verify the site you are going to visit. Proceed at your own risk." msgstr "" @@ -4211,7 +4215,7 @@ msgstr "" msgid "Recursive Plot Scan" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:566 +#: src/components/nfts/NFTContextualActions.tsx:569 msgid "Refresh NFT data" msgstr "" @@ -4685,7 +4689,7 @@ msgstr "" #~ msgid "Share Privately" #~ msgstr "Share Privately" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Show" msgstr "" @@ -5229,6 +5233,10 @@ msgstr "" msgid "This table shows you the last time your farm attempted to win a block challenge. <0>Learn more" msgstr "" +#: src/hooks/useOpenUnsafeLink.tsx:24 +msgid "This type of the URL is not allowed to open for security reasons." +msgstr "" + #: src/components/settings/SettingsIntegration.tsx:398 msgid "This will reset all previously granted permissions across all Dapps that have been connected to. After resetting you will be asked to grant permission again." msgstr "" @@ -5579,9 +5587,10 @@ msgstr "" msgid "Uris" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:62 +#: src/components/notification/NotificationAnnouncementDialog.tsx:76 #: src/constants/WalletConnectCommands.tsx:964 -#: src/hooks/useOpenUnsafeLink.tsx:43 +#: src/hooks/useOpenUnsafeLink.tsx:27 +#: src/hooks/useOpenUnsafeLink.tsx:72 msgid "URL" msgstr "" @@ -5714,7 +5723,7 @@ msgstr "" #~ msgid "View on Hashgreen DEX" #~ msgstr "View on Hashgreen DEX" -#: src/components/nfts/NFTContextualActions.tsx:643 +#: src/components/nfts/NFTContextualActions.tsx:646 #: src/components/offers/OfferShareDialog.tsx:441 msgid "View on MintGarden" msgstr "" @@ -5727,7 +5736,7 @@ msgstr "" msgid "View on Offerpool" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:651 +#: src/components/nfts/NFTContextualActions.tsx:654 #: src/components/offers/OfferShareDialog.tsx:538 msgid "View on Spacescan.io" msgstr "" @@ -5866,6 +5875,10 @@ msgstr "" msgid "Warning Threshold" msgstr "" +#: src/hooks/useOpenUnsafeLink.tsx:21 +msgid "Warning: Invalid URL" +msgstr "" + #: src/components/app/AppVersionWarning.tsx:30 msgid "Warning: Mismatched Versions" msgstr "" @@ -5875,7 +5888,7 @@ msgstr "" msgid "Warning: Verify that the offered CAT asset IDs match the asset IDs of the tokens you expect to receive." msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:30 +#: src/hooks/useOpenUnsafeLink.tsx:59 msgid "Warning: You're about to visit a website" msgstr "" diff --git a/packages/gui/src/locales/pl-PL/messages.po b/packages/gui/src/locales/pl-PL/messages.po index 0bf3d649c8..da1cd5b5f1 100644 --- a/packages/gui/src/locales/pl-PL/messages.po +++ b/packages/gui/src/locales/pl-PL/messages.po @@ -44,134 +44,134 @@ msgid "Would you like to transfer {count} NFTs to a new owner?" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "No" msgstr "Nie" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "Yes" msgstr "Tak" #. js-lingui-explicit-id -#: src/electron/main.tsx:511 +#: src/electron/main.tsx:522 msgid "Confirm" msgstr "Potwierdź" #. js-lingui-explicit-id -#: src/electron/main.tsx:513 +#: src/electron/main.tsx:524 msgid "Are you sure you want to quit?" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:518 +#: src/electron/main.tsx:529 msgid "Keep service running in the background" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:636 -#: src/electron/main.tsx:844 +#: src/electron/main.tsx:647 +#: src/electron/main.tsx:855 msgid "File" msgstr "Plik" #. js-lingui-explicit-id -#: src/electron/main.tsx:644 +#: src/electron/main.tsx:655 msgid "Edit" msgstr "Edytuj" #. js-lingui-explicit-id -#: src/electron/main.tsx:676 +#: src/electron/main.tsx:687 msgid "View" msgstr "Widok" #. js-lingui-explicit-id -#: src/electron/main.tsx:685 +#: src/electron/main.tsx:696 msgid "Developer" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:688 +#: src/electron/main.tsx:699 msgid "Developer Tools" msgstr "Narzędzia Programistyczne" #. js-lingui-explicit-id -#: src/electron/main.tsx:696 +#: src/electron/main.tsx:707 msgid "Trigger Desktop Notification" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:725 +#: src/electron/main.tsx:736 msgid "Full Screen" msgstr "Pełny ekran" #. js-lingui-explicit-id -#: src/electron/main.tsx:732 +#: src/electron/main.tsx:743 msgid "Window" msgstr "Okno" #. js-lingui-explicit-id -#: src/electron/main.tsx:746 +#: src/electron/main.tsx:757 msgid "Help" msgstr "Pomoc" #. js-lingui-explicit-id -#: src/electron/main.tsx:750 +#: src/electron/main.tsx:761 msgid "Chia Blockchain Wiki" msgstr "Wiki Blockchainu Chia" #. js-lingui-explicit-id -#: src/electron/main.tsx:756 +#: src/electron/main.tsx:767 msgid "Frequently Asked Questions" msgstr "Często zadawane pytania" #. js-lingui-explicit-id -#: src/electron/main.tsx:762 +#: src/electron/main.tsx:773 msgid "Release Notes" msgstr "Informacje o wydaniu" #. js-lingui-explicit-id -#: src/electron/main.tsx:768 +#: src/electron/main.tsx:779 msgid "Contribute on GitHub" msgstr "Współtwórz na GitHubie" #. js-lingui-explicit-id -#: src/electron/main.tsx:777 +#: src/electron/main.tsx:788 msgid "Report an Issue..." msgstr "Zgłoś problem..." #. js-lingui-explicit-id -#: src/electron/main.tsx:783 +#: src/electron/main.tsx:794 msgid "Chat on Discord" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:789 +#: src/electron/main.tsx:800 msgid "Follow on Twitter" msgstr "Śledź na Twitterze" #. js-lingui-explicit-id -#: src/electron/main.tsx:801 +#: src/electron/main.tsx:812 msgid "Chia" msgstr "Chia" #. js-lingui-explicit-id -#: src/electron/main.tsx:804 -#: src/electron/main.tsx:897 +#: src/electron/main.tsx:815 +#: src/electron/main.tsx:908 msgid "About Chia Blockchain" msgstr "O blockchainie Chia" #. js-lingui-explicit-id -#: src/electron/main.tsx:810 +#: src/electron/main.tsx:821 msgid "Check for Updates..." msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:858 +#: src/electron/main.tsx:869 msgid "Speech" msgstr "Mowa" #. js-lingui-explicit-id -#: src/electron/main.tsx:903 +#: src/electron/main.tsx:914 msgid "Check for updates..." msgstr "" @@ -302,6 +302,10 @@ msgstr "" msgid "*Usually it takes seconds to complete restarting." msgstr "" +#: src/components/notification/NotificationAnnouncementDialog.tsx:39 +msgid "##### Redacted for security reason #####" +msgstr "" + #: src/components/plot/overview/PlotOverviewPlots.tsx:42 msgid "+ Add a Plot" msgstr "+ Dodaj działkę" @@ -364,7 +368,7 @@ msgstr "Działanie" #: src/components/farm/FarmFullNodeConnections.tsx:54 #: src/components/farm/FarmYourHarvesterNetwork.tsx:54 #: src/components/fullNode/FullNodeConnections.tsx:65 -#: src/components/nfts/NFTContextualActions.tsx:587 +#: src/components/nfts/NFTContextualActions.tsx:590 #: src/components/offers2/OfferIncomingTable.tsx:111 msgid "Actions" msgstr "Działania" @@ -553,7 +557,7 @@ msgstr "" msgid "An NFT's provenance is a complete record of its ownership history. It provides a direct lineage that connects everyone who has owned the NFT, all the way back to the original artist. This helps to verify that the NFT is authentic." msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:35 +#: src/components/notification/NotificationAnnouncementDialog.tsx:49 msgid "Announcement" msgstr "" @@ -779,7 +783,7 @@ msgstr "Przeglądaj" #: src/components/nfts/NFTBurnDialog.tsx:90 #: src/components/nfts/NFTBurnDialog.tsx:185 -#: src/components/nfts/NFTContextualActions.tsx:525 +#: src/components/nfts/NFTContextualActions.tsx:528 msgid "Burn" msgstr "" @@ -834,7 +838,7 @@ msgstr "" #: src/components/signVerify/VerifyMessage.tsx:271 #: src/components/vcs/VCEditTitle.tsx:76 #: src/components/vcs/VCRevokeDialog.tsx:28 -#: src/hooks/useOpenUnsafeLink.tsx:33 +#: src/hooks/useOpenUnsafeLink.tsx:62 msgid "Cancel" msgstr "Anuluj" @@ -996,7 +1000,7 @@ msgstr "" #: src/components/nfts/MultipleDownloadDialog.tsx:116 #: src/components/nfts/NFTMoveToProfileDialog.tsx:328 #: src/components/nfts/NFTTransferAction.tsx:166 -#: src/components/notification/NotificationAnnouncementDialog.tsx:75 +#: src/components/notification/NotificationAnnouncementDialog.tsx:87 #: src/components/notification/NotificationSendDialog.tsx:308 #: src/components/offers/ConfirmOfferCancellation.tsx:126 #: src/components/offers/OfferShareDialog.tsx:373 @@ -1569,7 +1573,7 @@ msgid "Display sharing options after creating a new offer" msgstr "" #: src/components/offers/OfferShareDialog.tsx:945 -#: src/hooks/useOpenUnsafeLink.tsx:64 +#: src/hooks/useOpenUnsafeLink.tsx:93 msgid "Do not show this dialog again" msgstr "" @@ -2112,7 +2116,7 @@ msgstr "" #~ msgid "Frequently Asked Questions" #~ msgstr "Frequently Asked Questions" -#: src/components/notification/NotificationAnnouncementDialog.tsx:44 +#: src/components/notification/NotificationAnnouncementDialog.tsx:58 msgid "From" msgstr "" @@ -2343,7 +2347,7 @@ msgstr "" #~ msgid "Hidden ({0})" #~ msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Hide" msgstr "" @@ -2834,7 +2838,7 @@ msgstr "" msgid "Memos" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:53 +#: src/components/notification/NotificationAnnouncementDialog.tsx:67 #: src/components/signVerify/SignMessage.tsx:200 #: src/components/signVerify/VerifyMessage.tsx:207 #: src/constants/WalletConnectCommands.tsx:184 @@ -3529,7 +3533,7 @@ msgstr "" msgid "Open in Browser" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:31 +#: src/hooks/useOpenUnsafeLink.tsx:60 msgid "Open Link" msgstr "" @@ -3720,7 +3724,7 @@ msgstr "" msgid "Pending removal" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:38 +#: src/hooks/useOpenUnsafeLink.tsx:67 msgid "Please check the following link to verify the site you are going to visit. Proceed at your own risk." msgstr "" @@ -4211,7 +4215,7 @@ msgstr "" msgid "Recursive Plot Scan" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:566 +#: src/components/nfts/NFTContextualActions.tsx:569 msgid "Refresh NFT data" msgstr "" @@ -4685,7 +4689,7 @@ msgstr "" #~ msgid "Share Privately" #~ msgstr "Share Privately" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Show" msgstr "" @@ -5229,6 +5233,10 @@ msgstr "" msgid "This table shows you the last time your farm attempted to win a block challenge. <0>Learn more" msgstr "Ta tabela pokazuje kiedy twoja farma próbowała wygrać wyzwanie blokowe. <0>Dowiedz się więcej" +#: src/hooks/useOpenUnsafeLink.tsx:24 +msgid "This type of the URL is not allowed to open for security reasons." +msgstr "" + #: src/components/settings/SettingsIntegration.tsx:398 msgid "This will reset all previously granted permissions across all Dapps that have been connected to. After resetting you will be asked to grant permission again." msgstr "" @@ -5579,9 +5587,10 @@ msgstr "" msgid "Uris" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:62 +#: src/components/notification/NotificationAnnouncementDialog.tsx:76 #: src/constants/WalletConnectCommands.tsx:964 -#: src/hooks/useOpenUnsafeLink.tsx:43 +#: src/hooks/useOpenUnsafeLink.tsx:27 +#: src/hooks/useOpenUnsafeLink.tsx:72 msgid "URL" msgstr "" @@ -5714,7 +5723,7 @@ msgstr "" #~ msgid "View on Hashgreen DEX" #~ msgstr "View on Hashgreen DEX" -#: src/components/nfts/NFTContextualActions.tsx:643 +#: src/components/nfts/NFTContextualActions.tsx:646 #: src/components/offers/OfferShareDialog.tsx:441 msgid "View on MintGarden" msgstr "" @@ -5727,7 +5736,7 @@ msgstr "" msgid "View on Offerpool" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:651 +#: src/components/nfts/NFTContextualActions.tsx:654 #: src/components/offers/OfferShareDialog.tsx:538 msgid "View on Spacescan.io" msgstr "" @@ -5866,6 +5875,10 @@ msgstr "" msgid "Warning Threshold" msgstr "" +#: src/hooks/useOpenUnsafeLink.tsx:21 +msgid "Warning: Invalid URL" +msgstr "" + #: src/components/app/AppVersionWarning.tsx:30 msgid "Warning: Mismatched Versions" msgstr "" @@ -5875,7 +5888,7 @@ msgstr "" msgid "Warning: Verify that the offered CAT asset IDs match the asset IDs of the tokens you expect to receive." msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:30 +#: src/hooks/useOpenUnsafeLink.tsx:59 msgid "Warning: You're about to visit a website" msgstr "" diff --git a/packages/gui/src/locales/pt-BR/messages.po b/packages/gui/src/locales/pt-BR/messages.po index 37f0df1848..bc1a9c7735 100644 --- a/packages/gui/src/locales/pt-BR/messages.po +++ b/packages/gui/src/locales/pt-BR/messages.po @@ -44,134 +44,134 @@ msgid "Would you like to transfer {count} NFTs to a new owner?" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "No" msgstr "Não" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "Yes" msgstr "Sim" #. js-lingui-explicit-id -#: src/electron/main.tsx:511 +#: src/electron/main.tsx:522 msgid "Confirm" msgstr "Confirmar" #. js-lingui-explicit-id -#: src/electron/main.tsx:513 +#: src/electron/main.tsx:524 msgid "Are you sure you want to quit?" msgstr "Você tem certeza que quer sair?" #. js-lingui-explicit-id -#: src/electron/main.tsx:518 +#: src/electron/main.tsx:529 msgid "Keep service running in the background" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:636 -#: src/electron/main.tsx:844 +#: src/electron/main.tsx:647 +#: src/electron/main.tsx:855 msgid "File" msgstr "Arquivo" #. js-lingui-explicit-id -#: src/electron/main.tsx:644 +#: src/electron/main.tsx:655 msgid "Edit" msgstr "Editar" #. js-lingui-explicit-id -#: src/electron/main.tsx:676 +#: src/electron/main.tsx:687 msgid "View" msgstr "Exibir" #. js-lingui-explicit-id -#: src/electron/main.tsx:685 +#: src/electron/main.tsx:696 msgid "Developer" msgstr "Desenvolvedor" #. js-lingui-explicit-id -#: src/electron/main.tsx:688 +#: src/electron/main.tsx:699 msgid "Developer Tools" msgstr "Ferramentas de desenvolvimento" #. js-lingui-explicit-id -#: src/electron/main.tsx:696 +#: src/electron/main.tsx:707 msgid "Trigger Desktop Notification" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:725 +#: src/electron/main.tsx:736 msgid "Full Screen" msgstr "Tela Cheia" #. js-lingui-explicit-id -#: src/electron/main.tsx:732 +#: src/electron/main.tsx:743 msgid "Window" msgstr "Janela" #. js-lingui-explicit-id -#: src/electron/main.tsx:746 +#: src/electron/main.tsx:757 msgid "Help" msgstr "Ajuda" #. js-lingui-explicit-id -#: src/electron/main.tsx:750 +#: src/electron/main.tsx:761 msgid "Chia Blockchain Wiki" msgstr "Wiki da Chia Blockchain" #. js-lingui-explicit-id -#: src/electron/main.tsx:756 +#: src/electron/main.tsx:767 msgid "Frequently Asked Questions" msgstr "Perguntas Frequentes" #. js-lingui-explicit-id -#: src/electron/main.tsx:762 +#: src/electron/main.tsx:773 msgid "Release Notes" msgstr "Notas de Lançamento" #. js-lingui-explicit-id -#: src/electron/main.tsx:768 +#: src/electron/main.tsx:779 msgid "Contribute on GitHub" msgstr "Contribua no GitHub" #. js-lingui-explicit-id -#: src/electron/main.tsx:777 +#: src/electron/main.tsx:788 msgid "Report an Issue..." msgstr "Reportar um problema..." #. js-lingui-explicit-id -#: src/electron/main.tsx:783 +#: src/electron/main.tsx:794 msgid "Chat on Discord" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:789 +#: src/electron/main.tsx:800 msgid "Follow on Twitter" msgstr "Siga no Twitter" #. js-lingui-explicit-id -#: src/electron/main.tsx:801 +#: src/electron/main.tsx:812 msgid "Chia" msgstr "Chia" #. js-lingui-explicit-id -#: src/electron/main.tsx:804 -#: src/electron/main.tsx:897 +#: src/electron/main.tsx:815 +#: src/electron/main.tsx:908 msgid "About Chia Blockchain" msgstr "Sobre Chia Blockchain" #. js-lingui-explicit-id -#: src/electron/main.tsx:810 +#: src/electron/main.tsx:821 msgid "Check for Updates..." msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:858 +#: src/electron/main.tsx:869 msgid "Speech" msgstr "Fala" #. js-lingui-explicit-id -#: src/electron/main.tsx:903 +#: src/electron/main.tsx:914 msgid "Check for updates..." msgstr "" @@ -302,6 +302,10 @@ msgstr "" msgid "*Usually it takes seconds to complete restarting." msgstr "" +#: src/components/notification/NotificationAnnouncementDialog.tsx:39 +msgid "##### Redacted for security reason #####" +msgstr "" + #: src/components/plot/overview/PlotOverviewPlots.tsx:42 msgid "+ Add a Plot" msgstr "+ Adicionar Lote" @@ -364,7 +368,7 @@ msgstr "Ação" #: src/components/farm/FarmFullNodeConnections.tsx:54 #: src/components/farm/FarmYourHarvesterNetwork.tsx:54 #: src/components/fullNode/FullNodeConnections.tsx:65 -#: src/components/nfts/NFTContextualActions.tsx:587 +#: src/components/nfts/NFTContextualActions.tsx:590 #: src/components/offers2/OfferIncomingTable.tsx:111 msgid "Actions" msgstr "Ações" @@ -553,7 +557,7 @@ msgstr "" msgid "An NFT's provenance is a complete record of its ownership history. It provides a direct lineage that connects everyone who has owned the NFT, all the way back to the original artist. This helps to verify that the NFT is authentic." msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:35 +#: src/components/notification/NotificationAnnouncementDialog.tsx:49 msgid "Announcement" msgstr "" @@ -779,7 +783,7 @@ msgstr "Navegar" #: src/components/nfts/NFTBurnDialog.tsx:90 #: src/components/nfts/NFTBurnDialog.tsx:185 -#: src/components/nfts/NFTContextualActions.tsx:525 +#: src/components/nfts/NFTContextualActions.tsx:528 msgid "Burn" msgstr "Queimar" @@ -834,7 +838,7 @@ msgstr "" #: src/components/signVerify/VerifyMessage.tsx:271 #: src/components/vcs/VCEditTitle.tsx:76 #: src/components/vcs/VCRevokeDialog.tsx:28 -#: src/hooks/useOpenUnsafeLink.tsx:33 +#: src/hooks/useOpenUnsafeLink.tsx:62 msgid "Cancel" msgstr "Cancelar" @@ -996,7 +1000,7 @@ msgstr "" #: src/components/nfts/MultipleDownloadDialog.tsx:116 #: src/components/nfts/NFTMoveToProfileDialog.tsx:328 #: src/components/nfts/NFTTransferAction.tsx:166 -#: src/components/notification/NotificationAnnouncementDialog.tsx:75 +#: src/components/notification/NotificationAnnouncementDialog.tsx:87 #: src/components/notification/NotificationSendDialog.tsx:308 #: src/components/offers/ConfirmOfferCancellation.tsx:126 #: src/components/offers/OfferShareDialog.tsx:373 @@ -1569,7 +1573,7 @@ msgid "Display sharing options after creating a new offer" msgstr "" #: src/components/offers/OfferShareDialog.tsx:945 -#: src/hooks/useOpenUnsafeLink.tsx:64 +#: src/hooks/useOpenUnsafeLink.tsx:93 msgid "Do not show this dialog again" msgstr "" @@ -2112,7 +2116,7 @@ msgstr "" #~ msgid "Frequently Asked Questions" #~ msgstr "Frequently Asked Questions" -#: src/components/notification/NotificationAnnouncementDialog.tsx:44 +#: src/components/notification/NotificationAnnouncementDialog.tsx:58 msgid "From" msgstr "" @@ -2343,7 +2347,7 @@ msgstr "" #~ msgid "Hidden ({0})" #~ msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Hide" msgstr "" @@ -2834,7 +2838,7 @@ msgstr "" msgid "Memos" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:53 +#: src/components/notification/NotificationAnnouncementDialog.tsx:67 #: src/components/signVerify/SignMessage.tsx:200 #: src/components/signVerify/VerifyMessage.tsx:207 #: src/constants/WalletConnectCommands.tsx:184 @@ -3529,7 +3533,7 @@ msgstr "" msgid "Open in Browser" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:31 +#: src/hooks/useOpenUnsafeLink.tsx:60 msgid "Open Link" msgstr "" @@ -3720,7 +3724,7 @@ msgstr "" msgid "Pending removal" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:38 +#: src/hooks/useOpenUnsafeLink.tsx:67 msgid "Please check the following link to verify the site you are going to visit. Proceed at your own risk." msgstr "" @@ -4211,7 +4215,7 @@ msgstr "Recomendado" msgid "Recursive Plot Scan" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:566 +#: src/components/nfts/NFTContextualActions.tsx:569 msgid "Refresh NFT data" msgstr "" @@ -4685,7 +4689,7 @@ msgstr "" #~ msgid "Share Privately" #~ msgstr "Share Privately" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Show" msgstr "" @@ -5229,6 +5233,10 @@ msgstr "Este lote NFT está atribuído a uma chave diferente. Você ainda pode c msgid "This table shows you the last time your farm attempted to win a block challenge. <0>Learn more" msgstr "Esta tabela mostra a última vez que sua fazenda tentou ganhar um desafio de bloco. <0>Saiba mais" +#: src/hooks/useOpenUnsafeLink.tsx:24 +msgid "This type of the URL is not allowed to open for security reasons." +msgstr "" + #: src/components/settings/SettingsIntegration.tsx:398 msgid "This will reset all previously granted permissions across all Dapps that have been connected to. After resetting you will be asked to grant permission again." msgstr "" @@ -5579,9 +5587,10 @@ msgstr "" msgid "Uris" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:62 +#: src/components/notification/NotificationAnnouncementDialog.tsx:76 #: src/constants/WalletConnectCommands.tsx:964 -#: src/hooks/useOpenUnsafeLink.tsx:43 +#: src/hooks/useOpenUnsafeLink.tsx:27 +#: src/hooks/useOpenUnsafeLink.tsx:72 msgid "URL" msgstr "" @@ -5714,7 +5723,7 @@ msgstr "" #~ msgid "View on Hashgreen DEX" #~ msgstr "View on Hashgreen DEX" -#: src/components/nfts/NFTContextualActions.tsx:643 +#: src/components/nfts/NFTContextualActions.tsx:646 #: src/components/offers/OfferShareDialog.tsx:441 msgid "View on MintGarden" msgstr "" @@ -5727,7 +5736,7 @@ msgstr "" msgid "View on Offerpool" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:651 +#: src/components/nfts/NFTContextualActions.tsx:654 #: src/components/offers/OfferShareDialog.tsx:538 msgid "View on Spacescan.io" msgstr "" @@ -5866,6 +5875,10 @@ msgstr "" msgid "Warning Threshold" msgstr "" +#: src/hooks/useOpenUnsafeLink.tsx:21 +msgid "Warning: Invalid URL" +msgstr "" + #: src/components/app/AppVersionWarning.tsx:30 msgid "Warning: Mismatched Versions" msgstr "" @@ -5875,7 +5888,7 @@ msgstr "" msgid "Warning: Verify that the offered CAT asset IDs match the asset IDs of the tokens you expect to receive." msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:30 +#: src/hooks/useOpenUnsafeLink.tsx:59 msgid "Warning: You're about to visit a website" msgstr "" diff --git a/packages/gui/src/locales/pt-PT/messages.po b/packages/gui/src/locales/pt-PT/messages.po index 9b2fa32075..6e728efb9d 100644 --- a/packages/gui/src/locales/pt-PT/messages.po +++ b/packages/gui/src/locales/pt-PT/messages.po @@ -44,134 +44,134 @@ msgid "Would you like to transfer {count} NFTs to a new owner?" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "No" msgstr "Não" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "Yes" msgstr "Sim" #. js-lingui-explicit-id -#: src/electron/main.tsx:511 +#: src/electron/main.tsx:522 msgid "Confirm" msgstr "Confirmar" #. js-lingui-explicit-id -#: src/electron/main.tsx:513 +#: src/electron/main.tsx:524 msgid "Are you sure you want to quit?" msgstr "Tens a certeza que queres sair?" #. js-lingui-explicit-id -#: src/electron/main.tsx:518 +#: src/electron/main.tsx:529 msgid "Keep service running in the background" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:636 -#: src/electron/main.tsx:844 +#: src/electron/main.tsx:647 +#: src/electron/main.tsx:855 msgid "File" msgstr "Ficheiro" #. js-lingui-explicit-id -#: src/electron/main.tsx:644 +#: src/electron/main.tsx:655 msgid "Edit" msgstr "Editar" #. js-lingui-explicit-id -#: src/electron/main.tsx:676 +#: src/electron/main.tsx:687 msgid "View" msgstr "Vista" #. js-lingui-explicit-id -#: src/electron/main.tsx:685 +#: src/electron/main.tsx:696 msgid "Developer" msgstr "Desenvolvedor" #. js-lingui-explicit-id -#: src/electron/main.tsx:688 +#: src/electron/main.tsx:699 msgid "Developer Tools" msgstr "Ferramentas de desenvolvimento" #. js-lingui-explicit-id -#: src/electron/main.tsx:696 +#: src/electron/main.tsx:707 msgid "Trigger Desktop Notification" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:725 +#: src/electron/main.tsx:736 msgid "Full Screen" msgstr "Ecrã cheio" #. js-lingui-explicit-id -#: src/electron/main.tsx:732 +#: src/electron/main.tsx:743 msgid "Window" msgstr "Janela" #. js-lingui-explicit-id -#: src/electron/main.tsx:746 +#: src/electron/main.tsx:757 msgid "Help" msgstr "Ajuda" #. js-lingui-explicit-id -#: src/electron/main.tsx:750 +#: src/electron/main.tsx:761 msgid "Chia Blockchain Wiki" msgstr "Wiki da Chia Blockchain" #. js-lingui-explicit-id -#: src/electron/main.tsx:756 +#: src/electron/main.tsx:767 msgid "Frequently Asked Questions" msgstr "Perguntas frequentes" #. js-lingui-explicit-id -#: src/electron/main.tsx:762 +#: src/electron/main.tsx:773 msgid "Release Notes" msgstr "Notas de Lançamento" #. js-lingui-explicit-id -#: src/electron/main.tsx:768 +#: src/electron/main.tsx:779 msgid "Contribute on GitHub" msgstr "Contribua no GitHub" #. js-lingui-explicit-id -#: src/electron/main.tsx:777 +#: src/electron/main.tsx:788 msgid "Report an Issue..." msgstr "Reportar um problema..." #. js-lingui-explicit-id -#: src/electron/main.tsx:783 +#: src/electron/main.tsx:794 msgid "Chat on Discord" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:789 +#: src/electron/main.tsx:800 msgid "Follow on Twitter" msgstr "Siga no Twitter" #. js-lingui-explicit-id -#: src/electron/main.tsx:801 +#: src/electron/main.tsx:812 msgid "Chia" msgstr "Chia" #. js-lingui-explicit-id -#: src/electron/main.tsx:804 -#: src/electron/main.tsx:897 +#: src/electron/main.tsx:815 +#: src/electron/main.tsx:908 msgid "About Chia Blockchain" msgstr "Sobre Chia Blockchain" #. js-lingui-explicit-id -#: src/electron/main.tsx:810 +#: src/electron/main.tsx:821 msgid "Check for Updates..." msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:858 +#: src/electron/main.tsx:869 msgid "Speech" msgstr "Fala" #. js-lingui-explicit-id -#: src/electron/main.tsx:903 +#: src/electron/main.tsx:914 msgid "Check for updates..." msgstr "" @@ -302,6 +302,10 @@ msgstr "" msgid "*Usually it takes seconds to complete restarting." msgstr "" +#: src/components/notification/NotificationAnnouncementDialog.tsx:39 +msgid "##### Redacted for security reason #####" +msgstr "" + #: src/components/plot/overview/PlotOverviewPlots.tsx:42 msgid "+ Add a Plot" msgstr "" @@ -364,7 +368,7 @@ msgstr "Ação" #: src/components/farm/FarmFullNodeConnections.tsx:54 #: src/components/farm/FarmYourHarvesterNetwork.tsx:54 #: src/components/fullNode/FullNodeConnections.tsx:65 -#: src/components/nfts/NFTContextualActions.tsx:587 +#: src/components/nfts/NFTContextualActions.tsx:590 #: src/components/offers2/OfferIncomingTable.tsx:111 msgid "Actions" msgstr "Ações" @@ -553,7 +557,7 @@ msgstr "" msgid "An NFT's provenance is a complete record of its ownership history. It provides a direct lineage that connects everyone who has owned the NFT, all the way back to the original artist. This helps to verify that the NFT is authentic." msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:35 +#: src/components/notification/NotificationAnnouncementDialog.tsx:49 msgid "Announcement" msgstr "" @@ -779,7 +783,7 @@ msgstr "Navegar" #: src/components/nfts/NFTBurnDialog.tsx:90 #: src/components/nfts/NFTBurnDialog.tsx:185 -#: src/components/nfts/NFTContextualActions.tsx:525 +#: src/components/nfts/NFTContextualActions.tsx:528 msgid "Burn" msgstr "" @@ -834,7 +838,7 @@ msgstr "" #: src/components/signVerify/VerifyMessage.tsx:271 #: src/components/vcs/VCEditTitle.tsx:76 #: src/components/vcs/VCRevokeDialog.tsx:28 -#: src/hooks/useOpenUnsafeLink.tsx:33 +#: src/hooks/useOpenUnsafeLink.tsx:62 msgid "Cancel" msgstr "Cancelar" @@ -996,7 +1000,7 @@ msgstr "" #: src/components/nfts/MultipleDownloadDialog.tsx:116 #: src/components/nfts/NFTMoveToProfileDialog.tsx:328 #: src/components/nfts/NFTTransferAction.tsx:166 -#: src/components/notification/NotificationAnnouncementDialog.tsx:75 +#: src/components/notification/NotificationAnnouncementDialog.tsx:87 #: src/components/notification/NotificationSendDialog.tsx:308 #: src/components/offers/ConfirmOfferCancellation.tsx:126 #: src/components/offers/OfferShareDialog.tsx:373 @@ -1569,7 +1573,7 @@ msgid "Display sharing options after creating a new offer" msgstr "" #: src/components/offers/OfferShareDialog.tsx:945 -#: src/hooks/useOpenUnsafeLink.tsx:64 +#: src/hooks/useOpenUnsafeLink.tsx:93 msgid "Do not show this dialog again" msgstr "" @@ -2112,7 +2116,7 @@ msgstr "" #~ msgid "Frequently Asked Questions" #~ msgstr "Frequently Asked Questions" -#: src/components/notification/NotificationAnnouncementDialog.tsx:44 +#: src/components/notification/NotificationAnnouncementDialog.tsx:58 msgid "From" msgstr "" @@ -2343,7 +2347,7 @@ msgstr "" #~ msgid "Hidden ({0})" #~ msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Hide" msgstr "" @@ -2834,7 +2838,7 @@ msgstr "" msgid "Memos" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:53 +#: src/components/notification/NotificationAnnouncementDialog.tsx:67 #: src/components/signVerify/SignMessage.tsx:200 #: src/components/signVerify/VerifyMessage.tsx:207 #: src/constants/WalletConnectCommands.tsx:184 @@ -3529,7 +3533,7 @@ msgstr "" msgid "Open in Browser" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:31 +#: src/hooks/useOpenUnsafeLink.tsx:60 msgid "Open Link" msgstr "" @@ -3720,7 +3724,7 @@ msgstr "" msgid "Pending removal" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:38 +#: src/hooks/useOpenUnsafeLink.tsx:67 msgid "Please check the following link to verify the site you are going to visit. Proceed at your own risk." msgstr "" @@ -4211,7 +4215,7 @@ msgstr "" msgid "Recursive Plot Scan" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:566 +#: src/components/nfts/NFTContextualActions.tsx:569 msgid "Refresh NFT data" msgstr "" @@ -4685,7 +4689,7 @@ msgstr "" #~ msgid "Share Privately" #~ msgstr "Share Privately" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Show" msgstr "" @@ -5229,6 +5233,10 @@ msgstr "Este gráfico de NFT está atribuído a uma chave diferente. Você ainda msgid "This table shows you the last time your farm attempted to win a block challenge. <0>Learn more" msgstr "Esta tabela mostra a última vez que sua fazenda tentou vencer um desafio de bloco. <0>Saiba mais" +#: src/hooks/useOpenUnsafeLink.tsx:24 +msgid "This type of the URL is not allowed to open for security reasons." +msgstr "" + #: src/components/settings/SettingsIntegration.tsx:398 msgid "This will reset all previously granted permissions across all Dapps that have been connected to. After resetting you will be asked to grant permission again." msgstr "" @@ -5579,9 +5587,10 @@ msgstr "" msgid "Uris" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:62 +#: src/components/notification/NotificationAnnouncementDialog.tsx:76 #: src/constants/WalletConnectCommands.tsx:964 -#: src/hooks/useOpenUnsafeLink.tsx:43 +#: src/hooks/useOpenUnsafeLink.tsx:27 +#: src/hooks/useOpenUnsafeLink.tsx:72 msgid "URL" msgstr "" @@ -5714,7 +5723,7 @@ msgstr "" #~ msgid "View on Hashgreen DEX" #~ msgstr "View on Hashgreen DEX" -#: src/components/nfts/NFTContextualActions.tsx:643 +#: src/components/nfts/NFTContextualActions.tsx:646 #: src/components/offers/OfferShareDialog.tsx:441 msgid "View on MintGarden" msgstr "" @@ -5727,7 +5736,7 @@ msgstr "" msgid "View on Offerpool" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:651 +#: src/components/nfts/NFTContextualActions.tsx:654 #: src/components/offers/OfferShareDialog.tsx:538 msgid "View on Spacescan.io" msgstr "" @@ -5866,6 +5875,10 @@ msgstr "" msgid "Warning Threshold" msgstr "" +#: src/hooks/useOpenUnsafeLink.tsx:21 +msgid "Warning: Invalid URL" +msgstr "" + #: src/components/app/AppVersionWarning.tsx:30 msgid "Warning: Mismatched Versions" msgstr "" @@ -5875,7 +5888,7 @@ msgstr "" msgid "Warning: Verify that the offered CAT asset IDs match the asset IDs of the tokens you expect to receive." msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:30 +#: src/hooks/useOpenUnsafeLink.tsx:59 msgid "Warning: You're about to visit a website" msgstr "" diff --git a/packages/gui/src/locales/ro-RO/messages.po b/packages/gui/src/locales/ro-RO/messages.po index 69c0ab2613..33ca953758 100644 --- a/packages/gui/src/locales/ro-RO/messages.po +++ b/packages/gui/src/locales/ro-RO/messages.po @@ -44,134 +44,134 @@ msgid "Would you like to transfer {count} NFTs to a new owner?" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "No" msgstr "Nu" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "Yes" msgstr "Da" #. js-lingui-explicit-id -#: src/electron/main.tsx:511 +#: src/electron/main.tsx:522 msgid "Confirm" msgstr "Confirmare" #. js-lingui-explicit-id -#: src/electron/main.tsx:513 +#: src/electron/main.tsx:524 msgid "Are you sure you want to quit?" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:518 +#: src/electron/main.tsx:529 msgid "Keep service running in the background" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:636 -#: src/electron/main.tsx:844 +#: src/electron/main.tsx:647 +#: src/electron/main.tsx:855 msgid "File" msgstr "Filă" #. js-lingui-explicit-id -#: src/electron/main.tsx:644 +#: src/electron/main.tsx:655 msgid "Edit" msgstr "Editare" #. js-lingui-explicit-id -#: src/electron/main.tsx:676 +#: src/electron/main.tsx:687 msgid "View" msgstr "Afișare" #. js-lingui-explicit-id -#: src/electron/main.tsx:685 +#: src/electron/main.tsx:696 msgid "Developer" msgstr "Dezvoltator" #. js-lingui-explicit-id -#: src/electron/main.tsx:688 +#: src/electron/main.tsx:699 msgid "Developer Tools" msgstr "Unelte Dezvoltator" #. js-lingui-explicit-id -#: src/electron/main.tsx:696 +#: src/electron/main.tsx:707 msgid "Trigger Desktop Notification" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:725 +#: src/electron/main.tsx:736 msgid "Full Screen" msgstr "Ecran Complet" #. js-lingui-explicit-id -#: src/electron/main.tsx:732 +#: src/electron/main.tsx:743 msgid "Window" msgstr "Fereastră" #. js-lingui-explicit-id -#: src/electron/main.tsx:746 +#: src/electron/main.tsx:757 msgid "Help" msgstr "Ajutor" #. js-lingui-explicit-id -#: src/electron/main.tsx:750 +#: src/electron/main.tsx:761 msgid "Chia Blockchain Wiki" msgstr "Wiki Blockchain Chia" #. js-lingui-explicit-id -#: src/electron/main.tsx:756 +#: src/electron/main.tsx:767 msgid "Frequently Asked Questions" msgstr "Întrebări frecvente" #. js-lingui-explicit-id -#: src/electron/main.tsx:762 +#: src/electron/main.tsx:773 msgid "Release Notes" msgstr "Note de lansare" #. js-lingui-explicit-id -#: src/electron/main.tsx:768 +#: src/electron/main.tsx:779 msgid "Contribute on GitHub" msgstr "Contribuie pe GitHub" #. js-lingui-explicit-id -#: src/electron/main.tsx:777 +#: src/electron/main.tsx:788 msgid "Report an Issue..." msgstr "Semnalează o problemă..." #. js-lingui-explicit-id -#: src/electron/main.tsx:783 +#: src/electron/main.tsx:794 msgid "Chat on Discord" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:789 +#: src/electron/main.tsx:800 msgid "Follow on Twitter" msgstr "Urmărește pe Twitter" #. js-lingui-explicit-id -#: src/electron/main.tsx:801 +#: src/electron/main.tsx:812 msgid "Chia" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:804 -#: src/electron/main.tsx:897 +#: src/electron/main.tsx:815 +#: src/electron/main.tsx:908 msgid "About Chia Blockchain" msgstr "Despre blockchain-ul Chia" #. js-lingui-explicit-id -#: src/electron/main.tsx:810 +#: src/electron/main.tsx:821 msgid "Check for Updates..." msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:858 +#: src/electron/main.tsx:869 msgid "Speech" msgstr "Vorbire" #. js-lingui-explicit-id -#: src/electron/main.tsx:903 +#: src/electron/main.tsx:914 msgid "Check for updates..." msgstr "" @@ -302,6 +302,10 @@ msgstr "" msgid "*Usually it takes seconds to complete restarting." msgstr "" +#: src/components/notification/NotificationAnnouncementDialog.tsx:39 +msgid "##### Redacted for security reason #####" +msgstr "" + #: src/components/plot/overview/PlotOverviewPlots.tsx:42 msgid "+ Add a Plot" msgstr "" @@ -364,7 +368,7 @@ msgstr "Acțiune" #: src/components/farm/FarmFullNodeConnections.tsx:54 #: src/components/farm/FarmYourHarvesterNetwork.tsx:54 #: src/components/fullNode/FullNodeConnections.tsx:65 -#: src/components/nfts/NFTContextualActions.tsx:587 +#: src/components/nfts/NFTContextualActions.tsx:590 #: src/components/offers2/OfferIncomingTable.tsx:111 msgid "Actions" msgstr "Acțiuni" @@ -553,7 +557,7 @@ msgstr "" msgid "An NFT's provenance is a complete record of its ownership history. It provides a direct lineage that connects everyone who has owned the NFT, all the way back to the original artist. This helps to verify that the NFT is authentic." msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:35 +#: src/components/notification/NotificationAnnouncementDialog.tsx:49 msgid "Announcement" msgstr "" @@ -779,7 +783,7 @@ msgstr "Selectează" #: src/components/nfts/NFTBurnDialog.tsx:90 #: src/components/nfts/NFTBurnDialog.tsx:185 -#: src/components/nfts/NFTContextualActions.tsx:525 +#: src/components/nfts/NFTContextualActions.tsx:528 msgid "Burn" msgstr "" @@ -834,7 +838,7 @@ msgstr "" #: src/components/signVerify/VerifyMessage.tsx:271 #: src/components/vcs/VCEditTitle.tsx:76 #: src/components/vcs/VCRevokeDialog.tsx:28 -#: src/hooks/useOpenUnsafeLink.tsx:33 +#: src/hooks/useOpenUnsafeLink.tsx:62 msgid "Cancel" msgstr "Anulare" @@ -996,7 +1000,7 @@ msgstr "" #: src/components/nfts/MultipleDownloadDialog.tsx:116 #: src/components/nfts/NFTMoveToProfileDialog.tsx:328 #: src/components/nfts/NFTTransferAction.tsx:166 -#: src/components/notification/NotificationAnnouncementDialog.tsx:75 +#: src/components/notification/NotificationAnnouncementDialog.tsx:87 #: src/components/notification/NotificationSendDialog.tsx:308 #: src/components/offers/ConfirmOfferCancellation.tsx:126 #: src/components/offers/OfferShareDialog.tsx:373 @@ -1569,7 +1573,7 @@ msgid "Display sharing options after creating a new offer" msgstr "" #: src/components/offers/OfferShareDialog.tsx:945 -#: src/hooks/useOpenUnsafeLink.tsx:64 +#: src/hooks/useOpenUnsafeLink.tsx:93 msgid "Do not show this dialog again" msgstr "" @@ -2112,7 +2116,7 @@ msgstr "" #~ msgid "Frequently Asked Questions" #~ msgstr "Frequently Asked Questions" -#: src/components/notification/NotificationAnnouncementDialog.tsx:44 +#: src/components/notification/NotificationAnnouncementDialog.tsx:58 msgid "From" msgstr "" @@ -2343,7 +2347,7 @@ msgstr "" #~ msgid "Hidden ({0})" #~ msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Hide" msgstr "" @@ -2834,7 +2838,7 @@ msgstr "" msgid "Memos" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:53 +#: src/components/notification/NotificationAnnouncementDialog.tsx:67 #: src/components/signVerify/SignMessage.tsx:200 #: src/components/signVerify/VerifyMessage.tsx:207 #: src/constants/WalletConnectCommands.tsx:184 @@ -3529,7 +3533,7 @@ msgstr "" msgid "Open in Browser" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:31 +#: src/hooks/useOpenUnsafeLink.tsx:60 msgid "Open Link" msgstr "" @@ -3720,7 +3724,7 @@ msgstr "" msgid "Pending removal" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:38 +#: src/hooks/useOpenUnsafeLink.tsx:67 msgid "Please check the following link to verify the site you are going to visit. Proceed at your own risk." msgstr "" @@ -4211,7 +4215,7 @@ msgstr "" msgid "Recursive Plot Scan" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:566 +#: src/components/nfts/NFTContextualActions.tsx:569 msgid "Refresh NFT data" msgstr "" @@ -4685,7 +4689,7 @@ msgstr "" #~ msgid "Share Privately" #~ msgstr "Share Privately" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Show" msgstr "" @@ -5229,6 +5233,10 @@ msgstr "" msgid "This table shows you the last time your farm attempted to win a block challenge. <0>Learn more" msgstr "Acest tabel vă arată ultima dată când ferma dvs. a încercat să câștige o provocare de bloc." +#: src/hooks/useOpenUnsafeLink.tsx:24 +msgid "This type of the URL is not allowed to open for security reasons." +msgstr "" + #: src/components/settings/SettingsIntegration.tsx:398 msgid "This will reset all previously granted permissions across all Dapps that have been connected to. After resetting you will be asked to grant permission again." msgstr "" @@ -5579,9 +5587,10 @@ msgstr "" msgid "Uris" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:62 +#: src/components/notification/NotificationAnnouncementDialog.tsx:76 #: src/constants/WalletConnectCommands.tsx:964 -#: src/hooks/useOpenUnsafeLink.tsx:43 +#: src/hooks/useOpenUnsafeLink.tsx:27 +#: src/hooks/useOpenUnsafeLink.tsx:72 msgid "URL" msgstr "" @@ -5714,7 +5723,7 @@ msgstr "" #~ msgid "View on Hashgreen DEX" #~ msgstr "View on Hashgreen DEX" -#: src/components/nfts/NFTContextualActions.tsx:643 +#: src/components/nfts/NFTContextualActions.tsx:646 #: src/components/offers/OfferShareDialog.tsx:441 msgid "View on MintGarden" msgstr "" @@ -5727,7 +5736,7 @@ msgstr "" msgid "View on Offerpool" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:651 +#: src/components/nfts/NFTContextualActions.tsx:654 #: src/components/offers/OfferShareDialog.tsx:538 msgid "View on Spacescan.io" msgstr "" @@ -5866,6 +5875,10 @@ msgstr "" msgid "Warning Threshold" msgstr "" +#: src/hooks/useOpenUnsafeLink.tsx:21 +msgid "Warning: Invalid URL" +msgstr "" + #: src/components/app/AppVersionWarning.tsx:30 msgid "Warning: Mismatched Versions" msgstr "" @@ -5875,7 +5888,7 @@ msgstr "" msgid "Warning: Verify that the offered CAT asset IDs match the asset IDs of the tokens you expect to receive." msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:30 +#: src/hooks/useOpenUnsafeLink.tsx:59 msgid "Warning: You're about to visit a website" msgstr "" diff --git a/packages/gui/src/locales/ru-RU/messages.po b/packages/gui/src/locales/ru-RU/messages.po index 757548fc53..a391fd1842 100644 --- a/packages/gui/src/locales/ru-RU/messages.po +++ b/packages/gui/src/locales/ru-RU/messages.po @@ -44,78 +44,78 @@ msgid "Would you like to transfer {count} NFTs to a new owner?" msgstr "Вы хотите передать {count} NFT новому владельцу?" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "No" msgstr "Нет" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "Yes" msgstr "Да" #. js-lingui-explicit-id -#: src/electron/main.tsx:511 +#: src/electron/main.tsx:522 msgid "Confirm" msgstr "Подтвердить" #. js-lingui-explicit-id -#: src/electron/main.tsx:513 +#: src/electron/main.tsx:524 msgid "Are you sure you want to quit?" msgstr "Вы уверены, что хотите выйти?" #. js-lingui-explicit-id -#: src/electron/main.tsx:518 +#: src/electron/main.tsx:529 msgid "Keep service running in the background" msgstr "Продолжать работу службы в фоновом режиме" #. js-lingui-explicit-id -#: src/electron/main.tsx:636 -#: src/electron/main.tsx:844 +#: src/electron/main.tsx:647 +#: src/electron/main.tsx:855 msgid "File" msgstr "Файл" #. js-lingui-explicit-id -#: src/electron/main.tsx:644 +#: src/electron/main.tsx:655 msgid "Edit" msgstr "Правка" #. js-lingui-explicit-id -#: src/electron/main.tsx:676 +#: src/electron/main.tsx:687 msgid "View" msgstr "Вид" #. js-lingui-explicit-id -#: src/electron/main.tsx:685 +#: src/electron/main.tsx:696 msgid "Developer" msgstr "Разработчик" #. js-lingui-explicit-id -#: src/electron/main.tsx:688 +#: src/electron/main.tsx:699 msgid "Developer Tools" msgstr "Инструменты разработчика" #. js-lingui-explicit-id -#: src/electron/main.tsx:696 +#: src/electron/main.tsx:707 msgid "Trigger Desktop Notification" msgstr "Запуск уведомления на рабочем столе" #. js-lingui-explicit-id -#: src/electron/main.tsx:725 +#: src/electron/main.tsx:736 msgid "Full Screen" msgstr "Полный экран" #. js-lingui-explicit-id -#: src/electron/main.tsx:732 +#: src/electron/main.tsx:743 msgid "Window" msgstr "Окно" #. js-lingui-explicit-id -#: src/electron/main.tsx:746 +#: src/electron/main.tsx:757 msgid "Help" msgstr "Помощь" #. js-lingui-explicit-id -#: src/electron/main.tsx:750 +#: src/electron/main.tsx:761 msgid "Chia Blockchain Wiki" msgstr "" "Блокчейн Chia на Wiki Chia coin\n" @@ -292,58 +292,58 @@ msgstr "" "Приведенная выше команда создает одио поле (указывается -n 1), для параллельного построения вам нужно повторить команду (не закрывая первую). Увеличьте значение -n для последовательного построения, то есть после завершения первого участка запускается следующий." #. js-lingui-explicit-id -#: src/electron/main.tsx:756 +#: src/electron/main.tsx:767 msgid "Frequently Asked Questions" msgstr "Часто задаваемые вопросы" #. js-lingui-explicit-id -#: src/electron/main.tsx:762 +#: src/electron/main.tsx:773 msgid "Release Notes" msgstr "Примечания к релизу" #. js-lingui-explicit-id -#: src/electron/main.tsx:768 +#: src/electron/main.tsx:779 msgid "Contribute on GitHub" msgstr "Сотрудничать на GitHub" #. js-lingui-explicit-id -#: src/electron/main.tsx:777 +#: src/electron/main.tsx:788 msgid "Report an Issue..." msgstr "Сообщить о проблеме..." #. js-lingui-explicit-id -#: src/electron/main.tsx:783 +#: src/electron/main.tsx:794 msgid "Chat on Discord" msgstr "Чат в Discord" #. js-lingui-explicit-id -#: src/electron/main.tsx:789 +#: src/electron/main.tsx:800 msgid "Follow on Twitter" msgstr "Следить в Twitter" #. js-lingui-explicit-id -#: src/electron/main.tsx:801 +#: src/electron/main.tsx:812 msgid "Chia" msgstr "Чиа" #. js-lingui-explicit-id -#: src/electron/main.tsx:804 -#: src/electron/main.tsx:897 +#: src/electron/main.tsx:815 +#: src/electron/main.tsx:908 msgid "About Chia Blockchain" msgstr "О программе Chia Blockchain" #. js-lingui-explicit-id -#: src/electron/main.tsx:810 +#: src/electron/main.tsx:821 msgid "Check for Updates..." msgstr "Проверить наличие обновлений..." #. js-lingui-explicit-id -#: src/electron/main.tsx:858 +#: src/electron/main.tsx:869 msgid "Speech" msgstr "Речь" #. js-lingui-explicit-id -#: src/electron/main.tsx:903 +#: src/electron/main.tsx:914 msgid "Check for updates..." msgstr "Проверить наличие обновлений..." @@ -474,6 +474,10 @@ msgstr "" msgid "*Usually it takes seconds to complete restarting." msgstr "" +#: src/components/notification/NotificationAnnouncementDialog.tsx:39 +msgid "##### Redacted for security reason #####" +msgstr "" + #: src/components/plot/overview/PlotOverviewPlots.tsx:42 msgid "+ Add a Plot" msgstr "+ Добавить участок" @@ -536,7 +540,7 @@ msgstr "Действие" #: src/components/farm/FarmFullNodeConnections.tsx:54 #: src/components/farm/FarmYourHarvesterNetwork.tsx:54 #: src/components/fullNode/FullNodeConnections.tsx:65 -#: src/components/nfts/NFTContextualActions.tsx:587 +#: src/components/nfts/NFTContextualActions.tsx:590 #: src/components/offers2/OfferIncomingTable.tsx:111 msgid "Actions" msgstr "Действия" @@ -725,7 +729,7 @@ msgstr "" msgid "An NFT's provenance is a complete record of its ownership history. It provides a direct lineage that connects everyone who has owned the NFT, all the way back to the original artist. This helps to verify that the NFT is authentic." msgstr "Происхождение NFT - это полная история его владения. Происхождение обеспечивает прямую родословную, которая связывает всех, кто владел NFT, вплоть до оригинального художника. Это помогает проверить подлинность NFT." -#: src/components/notification/NotificationAnnouncementDialog.tsx:35 +#: src/components/notification/NotificationAnnouncementDialog.tsx:49 msgid "Announcement" msgstr "" @@ -951,7 +955,7 @@ msgstr "Обзор" #: src/components/nfts/NFTBurnDialog.tsx:90 #: src/components/nfts/NFTBurnDialog.tsx:185 -#: src/components/nfts/NFTContextualActions.tsx:525 +#: src/components/nfts/NFTContextualActions.tsx:528 msgid "Burn" msgstr "Сжечь" @@ -1006,7 +1010,7 @@ msgstr "Размер кэша (ГБ)" #: src/components/signVerify/VerifyMessage.tsx:271 #: src/components/vcs/VCEditTitle.tsx:76 #: src/components/vcs/VCRevokeDialog.tsx:28 -#: src/hooks/useOpenUnsafeLink.tsx:33 +#: src/hooks/useOpenUnsafeLink.tsx:62 msgid "Cancel" msgstr "Отмена" @@ -1168,7 +1172,7 @@ msgstr "" #: src/components/nfts/MultipleDownloadDialog.tsx:116 #: src/components/nfts/NFTMoveToProfileDialog.tsx:328 #: src/components/nfts/NFTTransferAction.tsx:166 -#: src/components/notification/NotificationAnnouncementDialog.tsx:75 +#: src/components/notification/NotificationAnnouncementDialog.tsx:87 #: src/components/notification/NotificationSendDialog.tsx:308 #: src/components/offers/ConfirmOfferCancellation.tsx:126 #: src/components/offers/OfferShareDialog.tsx:373 @@ -1741,7 +1745,7 @@ msgid "Display sharing options after creating a new offer" msgstr "" #: src/components/offers/OfferShareDialog.tsx:945 -#: src/hooks/useOpenUnsafeLink.tsx:64 +#: src/hooks/useOpenUnsafeLink.tsx:93 msgid "Do not show this dialog again" msgstr "Больше не показывать этот диалог" @@ -2284,7 +2288,7 @@ msgstr "" #~ msgid "Frequently Asked Questions" #~ msgstr "Frequently Asked Questions" -#: src/components/notification/NotificationAnnouncementDialog.tsx:44 +#: src/components/notification/NotificationAnnouncementDialog.tsx:58 msgid "From" msgstr "" @@ -2515,7 +2519,7 @@ msgstr "" #~ msgid "Hidden ({0})" #~ msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Hide" msgstr "Скрыть" @@ -3006,7 +3010,7 @@ msgstr "" msgid "Memos" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:53 +#: src/components/notification/NotificationAnnouncementDialog.tsx:67 #: src/components/signVerify/SignMessage.tsx:200 #: src/components/signVerify/VerifyMessage.tsx:207 #: src/constants/WalletConnectCommands.tsx:184 @@ -3701,7 +3705,7 @@ msgstr "" msgid "Open in Browser" msgstr "Открыть в браузере" -#: src/hooks/useOpenUnsafeLink.tsx:31 +#: src/hooks/useOpenUnsafeLink.tsx:60 msgid "Open Link" msgstr "Открыть ссылку" @@ -3892,7 +3896,7 @@ msgstr "В ожидании подтверждения" msgid "Pending removal" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:38 +#: src/hooks/useOpenUnsafeLink.tsx:67 msgid "Please check the following link to verify the site you are going to visit. Proceed at your own risk." msgstr "Пожалуйста, проверьте следующую ссылку, чтобы проверить сайт, который вы собираетесь посетить. Продолжить на свой страх и риск." @@ -4383,7 +4387,7 @@ msgstr "Рекомендуется" msgid "Recursive Plot Scan" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:566 +#: src/components/nfts/NFTContextualActions.tsx:569 msgid "Refresh NFT data" msgstr "" @@ -4857,7 +4861,7 @@ msgstr "" #~ msgid "Share Privately" #~ msgstr "Share Privately" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Show" msgstr "Показать" @@ -5401,6 +5405,10 @@ msgstr "Этот участок NFT привязан к другому ключ msgid "This table shows you the last time your farm attempted to win a block challenge. <0>Learn more" msgstr "Эта таблица показывает вам, когда ваша ферма в последний раз пыталась выиграть испытание при фарминге блока. <0>Подробнее" +#: src/hooks/useOpenUnsafeLink.tsx:24 +msgid "This type of the URL is not allowed to open for security reasons." +msgstr "" + #: src/components/settings/SettingsIntegration.tsx:398 msgid "This will reset all previously granted permissions across all Dapps that have been connected to. After resetting you will be asked to grant permission again." msgstr "" @@ -5751,9 +5759,10 @@ msgstr "Ожидает обновления" msgid "Uris" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:62 +#: src/components/notification/NotificationAnnouncementDialog.tsx:76 #: src/constants/WalletConnectCommands.tsx:964 -#: src/hooks/useOpenUnsafeLink.tsx:43 +#: src/hooks/useOpenUnsafeLink.tsx:27 +#: src/hooks/useOpenUnsafeLink.tsx:72 msgid "URL" msgstr "URL-адрес" @@ -5886,7 +5895,7 @@ msgstr "Посмотреть на Dexie" #~ msgid "View on Hashgreen DEX" #~ msgstr "View on Hashgreen DEX" -#: src/components/nfts/NFTContextualActions.tsx:643 +#: src/components/nfts/NFTContextualActions.tsx:646 #: src/components/offers/OfferShareDialog.tsx:441 msgid "View on MintGarden" msgstr "Посмотреть в MintGarden" @@ -5899,7 +5908,7 @@ msgstr "Посмотреть в MintGarden" msgid "View on Offerpool" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:651 +#: src/components/nfts/NFTContextualActions.tsx:654 #: src/components/offers/OfferShareDialog.tsx:538 msgid "View on Spacescan.io" msgstr "Посмотреть в Spacescan.io" @@ -6038,6 +6047,10 @@ msgstr "Предупреждение" msgid "Warning Threshold" msgstr "" +#: src/hooks/useOpenUnsafeLink.tsx:21 +msgid "Warning: Invalid URL" +msgstr "" + #: src/components/app/AppVersionWarning.tsx:30 msgid "Warning: Mismatched Versions" msgstr "" @@ -6047,7 +6060,7 @@ msgstr "" msgid "Warning: Verify that the offered CAT asset IDs match the asset IDs of the tokens you expect to receive." msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:30 +#: src/hooks/useOpenUnsafeLink.tsx:59 msgid "Warning: You're about to visit a website" msgstr "" diff --git a/packages/gui/src/locales/sk-SK/messages.po b/packages/gui/src/locales/sk-SK/messages.po index 7d191dd104..da5dda2c05 100644 --- a/packages/gui/src/locales/sk-SK/messages.po +++ b/packages/gui/src/locales/sk-SK/messages.po @@ -44,134 +44,134 @@ msgid "Would you like to transfer {count} NFTs to a new owner?" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "No" msgstr "Nie" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "Yes" msgstr "Áno" #. js-lingui-explicit-id -#: src/electron/main.tsx:511 +#: src/electron/main.tsx:522 msgid "Confirm" msgstr "Potvrdiť" #. js-lingui-explicit-id -#: src/electron/main.tsx:513 +#: src/electron/main.tsx:524 msgid "Are you sure you want to quit?" msgstr "Naozaj chcete skončiť?" #. js-lingui-explicit-id -#: src/electron/main.tsx:518 +#: src/electron/main.tsx:529 msgid "Keep service running in the background" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:636 -#: src/electron/main.tsx:844 +#: src/electron/main.tsx:647 +#: src/electron/main.tsx:855 msgid "File" msgstr "Súbor" #. js-lingui-explicit-id -#: src/electron/main.tsx:644 +#: src/electron/main.tsx:655 msgid "Edit" msgstr "Upraviť" #. js-lingui-explicit-id -#: src/electron/main.tsx:676 +#: src/electron/main.tsx:687 msgid "View" msgstr "Zobrazenie" #. js-lingui-explicit-id -#: src/electron/main.tsx:685 +#: src/electron/main.tsx:696 msgid "Developer" msgstr "Vývojár" #. js-lingui-explicit-id -#: src/electron/main.tsx:688 +#: src/electron/main.tsx:699 msgid "Developer Tools" msgstr "Nástroje pre vývojárov" #. js-lingui-explicit-id -#: src/electron/main.tsx:696 +#: src/electron/main.tsx:707 msgid "Trigger Desktop Notification" msgstr "Spustiť upozornenie na pracovnej ploche" #. js-lingui-explicit-id -#: src/electron/main.tsx:725 +#: src/electron/main.tsx:736 msgid "Full Screen" msgstr "Celá obrazovka" #. js-lingui-explicit-id -#: src/electron/main.tsx:732 +#: src/electron/main.tsx:743 msgid "Window" msgstr "Okno" #. js-lingui-explicit-id -#: src/electron/main.tsx:746 +#: src/electron/main.tsx:757 msgid "Help" msgstr "Pomoc" #. js-lingui-explicit-id -#: src/electron/main.tsx:750 +#: src/electron/main.tsx:761 msgid "Chia Blockchain Wiki" msgstr "Chia Blockchain Wiki" #. js-lingui-explicit-id -#: src/electron/main.tsx:756 +#: src/electron/main.tsx:767 msgid "Frequently Asked Questions" msgstr "Často kladené otázky (FAQ)" #. js-lingui-explicit-id -#: src/electron/main.tsx:762 +#: src/electron/main.tsx:773 msgid "Release Notes" msgstr "Poznámky k vydaniu" #. js-lingui-explicit-id -#: src/electron/main.tsx:768 +#: src/electron/main.tsx:779 msgid "Contribute on GitHub" msgstr "Prispejte na GitHube" #. js-lingui-explicit-id -#: src/electron/main.tsx:777 +#: src/electron/main.tsx:788 msgid "Report an Issue..." msgstr "Nahlásiť Problém..." #. js-lingui-explicit-id -#: src/electron/main.tsx:783 +#: src/electron/main.tsx:794 msgid "Chat on Discord" msgstr "Chatovať na Discorde" #. js-lingui-explicit-id -#: src/electron/main.tsx:789 +#: src/electron/main.tsx:800 msgid "Follow on Twitter" msgstr "Sledovať na Twitteri" #. js-lingui-explicit-id -#: src/electron/main.tsx:801 +#: src/electron/main.tsx:812 msgid "Chia" msgstr "Chia" #. js-lingui-explicit-id -#: src/electron/main.tsx:804 -#: src/electron/main.tsx:897 +#: src/electron/main.tsx:815 +#: src/electron/main.tsx:908 msgid "About Chia Blockchain" msgstr "O Chia blockchaine" #. js-lingui-explicit-id -#: src/electron/main.tsx:810 +#: src/electron/main.tsx:821 msgid "Check for Updates..." msgstr "Skontrolovať aktualizácie..." #. js-lingui-explicit-id -#: src/electron/main.tsx:858 +#: src/electron/main.tsx:869 msgid "Speech" msgstr "Reč" #. js-lingui-explicit-id -#: src/electron/main.tsx:903 +#: src/electron/main.tsx:914 msgid "Check for updates..." msgstr "Skontrolovať aktualizácie..." @@ -302,6 +302,10 @@ msgstr "" msgid "*Usually it takes seconds to complete restarting." msgstr "" +#: src/components/notification/NotificationAnnouncementDialog.tsx:39 +msgid "##### Redacted for security reason #####" +msgstr "" + #: src/components/plot/overview/PlotOverviewPlots.tsx:42 msgid "+ Add a Plot" msgstr "+ Pridať pole" @@ -364,7 +368,7 @@ msgstr "Akcia" #: src/components/farm/FarmFullNodeConnections.tsx:54 #: src/components/farm/FarmYourHarvesterNetwork.tsx:54 #: src/components/fullNode/FullNodeConnections.tsx:65 -#: src/components/nfts/NFTContextualActions.tsx:587 +#: src/components/nfts/NFTContextualActions.tsx:590 #: src/components/offers2/OfferIncomingTable.tsx:111 msgid "Actions" msgstr "Akcie" @@ -553,7 +557,7 @@ msgstr "" msgid "An NFT's provenance is a complete record of its ownership history. It provides a direct lineage that connects everyone who has owned the NFT, all the way back to the original artist. This helps to verify that the NFT is authentic." msgstr "Pôvod NFT je úplným záznamom histórie jeho vlastníctva. Poskytuje priamu líniu pôvodu, ktorá spája každého, kto vlastnil dané NFT, až po pôvodného umelca. Pomáha to pri overovaní, či je NFT autentický." -#: src/components/notification/NotificationAnnouncementDialog.tsx:35 +#: src/components/notification/NotificationAnnouncementDialog.tsx:49 msgid "Announcement" msgstr "Oznámenie" @@ -779,7 +783,7 @@ msgstr "Vybrať" #: src/components/nfts/NFTBurnDialog.tsx:90 #: src/components/nfts/NFTBurnDialog.tsx:185 -#: src/components/nfts/NFTContextualActions.tsx:525 +#: src/components/nfts/NFTContextualActions.tsx:528 msgid "Burn" msgstr "Spáliť" @@ -834,7 +838,7 @@ msgstr "Veľkosť vyrovnávacej pamäte (GB)" #: src/components/signVerify/VerifyMessage.tsx:271 #: src/components/vcs/VCEditTitle.tsx:76 #: src/components/vcs/VCRevokeDialog.tsx:28 -#: src/hooks/useOpenUnsafeLink.tsx:33 +#: src/hooks/useOpenUnsafeLink.tsx:62 msgid "Cancel" msgstr "Zrušiť" @@ -996,7 +1000,7 @@ msgstr "" #: src/components/nfts/MultipleDownloadDialog.tsx:116 #: src/components/nfts/NFTMoveToProfileDialog.tsx:328 #: src/components/nfts/NFTTransferAction.tsx:166 -#: src/components/notification/NotificationAnnouncementDialog.tsx:75 +#: src/components/notification/NotificationAnnouncementDialog.tsx:87 #: src/components/notification/NotificationSendDialog.tsx:308 #: src/components/offers/ConfirmOfferCancellation.tsx:126 #: src/components/offers/OfferShareDialog.tsx:373 @@ -1569,7 +1573,7 @@ msgid "Display sharing options after creating a new offer" msgstr "" #: src/components/offers/OfferShareDialog.tsx:945 -#: src/hooks/useOpenUnsafeLink.tsx:64 +#: src/hooks/useOpenUnsafeLink.tsx:93 msgid "Do not show this dialog again" msgstr "Toto dialógové okno už nezobrazovať" @@ -2112,7 +2116,7 @@ msgstr "Prispôsiť obrázky veľkostiam kartiet" #~ msgid "Frequently Asked Questions" #~ msgstr "Frequently Asked Questions" -#: src/components/notification/NotificationAnnouncementDialog.tsx:44 +#: src/components/notification/NotificationAnnouncementDialog.tsx:58 msgid "From" msgstr "" @@ -2343,7 +2347,7 @@ msgstr "" #~ msgid "Hidden ({0})" #~ msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Hide" msgstr "Skryť" @@ -2838,7 +2842,7 @@ msgstr "Členstvá" msgid "Memos" msgstr "Poznámky" -#: src/components/notification/NotificationAnnouncementDialog.tsx:53 +#: src/components/notification/NotificationAnnouncementDialog.tsx:67 #: src/components/signVerify/SignMessage.tsx:200 #: src/components/signVerify/VerifyMessage.tsx:207 #: src/constants/WalletConnectCommands.tsx:184 @@ -3533,7 +3537,7 @@ msgstr "" msgid "Open in Browser" msgstr "Otvoriť v prehliadači" -#: src/hooks/useOpenUnsafeLink.tsx:31 +#: src/hooks/useOpenUnsafeLink.tsx:60 msgid "Open Link" msgstr "Otvoriť odkaz" @@ -3724,7 +3728,7 @@ msgstr "Čaká sa na potvrdenie" msgid "Pending removal" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:38 +#: src/hooks/useOpenUnsafeLink.tsx:67 msgid "Please check the following link to verify the site you are going to visit. Proceed at your own risk." msgstr "Skontrolujte prosím nasledujúci odkaz na overenie stránky, ktorú sa chystáte navštíviť. Pokračujte na vlastné riziko." @@ -4215,7 +4219,7 @@ msgstr "Odporúčané" msgid "Recursive Plot Scan" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:566 +#: src/components/nfts/NFTContextualActions.tsx:569 msgid "Refresh NFT data" msgstr "" @@ -4689,7 +4693,7 @@ msgstr "Zdieľať na Spacescan.io" #~ msgid "Share Privately" #~ msgstr "Share Privately" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Show" msgstr "Zobraziť" @@ -5233,6 +5237,10 @@ msgstr "Tento NFT poľa je priradený inému kľúču. Stále môžete vytvára msgid "This table shows you the last time your farm attempted to win a block challenge. <0>Learn more" msgstr "Táto tabuľka zobrazuje, kedy sa vaša farma naposledy pokúsila vyhrať blokovú výzvu. <0> Ďalšie informácie " +#: src/hooks/useOpenUnsafeLink.tsx:24 +msgid "This type of the URL is not allowed to open for security reasons." +msgstr "" + #: src/components/settings/SettingsIntegration.tsx:398 msgid "This will reset all previously granted permissions across all Dapps that have been connected to. After resetting you will be asked to grant permission again." msgstr "" @@ -5583,9 +5591,10 @@ msgstr "Čakajúca aktualizácia" msgid "Uris" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:62 +#: src/components/notification/NotificationAnnouncementDialog.tsx:76 #: src/constants/WalletConnectCommands.tsx:964 -#: src/hooks/useOpenUnsafeLink.tsx:43 +#: src/hooks/useOpenUnsafeLink.tsx:27 +#: src/hooks/useOpenUnsafeLink.tsx:72 msgid "URL" msgstr "URL" @@ -5718,7 +5727,7 @@ msgstr "Zobraziť na Dexie" #~ msgid "View on Hashgreen DEX" #~ msgstr "View on Hashgreen DEX" -#: src/components/nfts/NFTContextualActions.tsx:643 +#: src/components/nfts/NFTContextualActions.tsx:646 #: src/components/offers/OfferShareDialog.tsx:441 msgid "View on MintGarden" msgstr "Zobraziť na MintGarden" @@ -5731,7 +5740,7 @@ msgstr "Zobraziť na MintGarden" msgid "View on Offerpool" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:651 +#: src/components/nfts/NFTContextualActions.tsx:654 #: src/components/offers/OfferShareDialog.tsx:538 msgid "View on Spacescan.io" msgstr "Zobraziť na Spacescan.io" @@ -5870,6 +5879,10 @@ msgstr "Upozornenie" msgid "Warning Threshold" msgstr "" +#: src/hooks/useOpenUnsafeLink.tsx:21 +msgid "Warning: Invalid URL" +msgstr "" + #: src/components/app/AppVersionWarning.tsx:30 msgid "Warning: Mismatched Versions" msgstr "Upozornenie: Nezhodné verzie" @@ -5879,7 +5892,7 @@ msgstr "Upozornenie: Nezhodné verzie" msgid "Warning: Verify that the offered CAT asset IDs match the asset IDs of the tokens you expect to receive." msgstr "Upozornenie: Overte, či sa ID ponúkaných CAT aktív zhodujú s ID aktív tokenov, ktoré očakávate, že dostanete." -#: src/hooks/useOpenUnsafeLink.tsx:30 +#: src/hooks/useOpenUnsafeLink.tsx:59 msgid "Warning: You're about to visit a website" msgstr "Upozornenie: Chystáte sa navštíviť webovú stránku" diff --git a/packages/gui/src/locales/sq-AL/messages.po b/packages/gui/src/locales/sq-AL/messages.po index 2ca7615e15..661a938a17 100644 --- a/packages/gui/src/locales/sq-AL/messages.po +++ b/packages/gui/src/locales/sq-AL/messages.po @@ -44,134 +44,134 @@ msgid "Would you like to transfer {count} NFTs to a new owner?" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "No" msgstr "Jo" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "Yes" msgstr "Po" #. js-lingui-explicit-id -#: src/electron/main.tsx:511 +#: src/electron/main.tsx:522 msgid "Confirm" msgstr "Konfirmo" #. js-lingui-explicit-id -#: src/electron/main.tsx:513 +#: src/electron/main.tsx:524 msgid "Are you sure you want to quit?" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:518 +#: src/electron/main.tsx:529 msgid "Keep service running in the background" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:636 -#: src/electron/main.tsx:844 +#: src/electron/main.tsx:647 +#: src/electron/main.tsx:855 msgid "File" msgstr "Skedari" #. js-lingui-explicit-id -#: src/electron/main.tsx:644 +#: src/electron/main.tsx:655 msgid "Edit" msgstr "Modifiko" #. js-lingui-explicit-id -#: src/electron/main.tsx:676 +#: src/electron/main.tsx:687 msgid "View" msgstr "Shiko" #. js-lingui-explicit-id -#: src/electron/main.tsx:685 +#: src/electron/main.tsx:696 msgid "Developer" msgstr "Programuesi" #. js-lingui-explicit-id -#: src/electron/main.tsx:688 +#: src/electron/main.tsx:699 msgid "Developer Tools" msgstr "Veglat e Programuesit" #. js-lingui-explicit-id -#: src/electron/main.tsx:696 +#: src/electron/main.tsx:707 msgid "Trigger Desktop Notification" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:725 +#: src/electron/main.tsx:736 msgid "Full Screen" msgstr "Ekran i plotë" #. js-lingui-explicit-id -#: src/electron/main.tsx:732 +#: src/electron/main.tsx:743 msgid "Window" msgstr "Dritare" #. js-lingui-explicit-id -#: src/electron/main.tsx:746 +#: src/electron/main.tsx:757 msgid "Help" msgstr "Ndihmë" #. js-lingui-explicit-id -#: src/electron/main.tsx:750 +#: src/electron/main.tsx:761 msgid "Chia Blockchain Wiki" msgstr "Zinxhiri Chia Wiki" #. js-lingui-explicit-id -#: src/electron/main.tsx:756 +#: src/electron/main.tsx:767 msgid "Frequently Asked Questions" msgstr "Pyetjet më të shpeshta" #. js-lingui-explicit-id -#: src/electron/main.tsx:762 +#: src/electron/main.tsx:773 msgid "Release Notes" msgstr "Shënimet e Lirimit" #. js-lingui-explicit-id -#: src/electron/main.tsx:768 +#: src/electron/main.tsx:779 msgid "Contribute on GitHub" msgstr "Kontribo në GitHub" #. js-lingui-explicit-id -#: src/electron/main.tsx:777 +#: src/electron/main.tsx:788 msgid "Report an Issue..." msgstr "Raportoni një çështje..." #. js-lingui-explicit-id -#: src/electron/main.tsx:783 +#: src/electron/main.tsx:794 msgid "Chat on Discord" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:789 +#: src/electron/main.tsx:800 msgid "Follow on Twitter" msgstr "Na ndiqni në Twitter" #. js-lingui-explicit-id -#: src/electron/main.tsx:801 +#: src/electron/main.tsx:812 msgid "Chia" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:804 -#: src/electron/main.tsx:897 +#: src/electron/main.tsx:815 +#: src/electron/main.tsx:908 msgid "About Chia Blockchain" msgstr "Rreth zinxhirit Chia" #. js-lingui-explicit-id -#: src/electron/main.tsx:810 +#: src/electron/main.tsx:821 msgid "Check for Updates..." msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:858 +#: src/electron/main.tsx:869 msgid "Speech" msgstr "Të folurit" #. js-lingui-explicit-id -#: src/electron/main.tsx:903 +#: src/electron/main.tsx:914 msgid "Check for updates..." msgstr "" @@ -302,6 +302,10 @@ msgstr "" msgid "*Usually it takes seconds to complete restarting." msgstr "" +#: src/components/notification/NotificationAnnouncementDialog.tsx:39 +msgid "##### Redacted for security reason #####" +msgstr "" + #: src/components/plot/overview/PlotOverviewPlots.tsx:42 msgid "+ Add a Plot" msgstr "" @@ -364,7 +368,7 @@ msgstr "Veprim" #: src/components/farm/FarmFullNodeConnections.tsx:54 #: src/components/farm/FarmYourHarvesterNetwork.tsx:54 #: src/components/fullNode/FullNodeConnections.tsx:65 -#: src/components/nfts/NFTContextualActions.tsx:587 +#: src/components/nfts/NFTContextualActions.tsx:590 #: src/components/offers2/OfferIncomingTable.tsx:111 msgid "Actions" msgstr "Veprimet" @@ -553,7 +557,7 @@ msgstr "" msgid "An NFT's provenance is a complete record of its ownership history. It provides a direct lineage that connects everyone who has owned the NFT, all the way back to the original artist. This helps to verify that the NFT is authentic." msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:35 +#: src/components/notification/NotificationAnnouncementDialog.tsx:49 msgid "Announcement" msgstr "" @@ -779,7 +783,7 @@ msgstr "Shfleto" #: src/components/nfts/NFTBurnDialog.tsx:90 #: src/components/nfts/NFTBurnDialog.tsx:185 -#: src/components/nfts/NFTContextualActions.tsx:525 +#: src/components/nfts/NFTContextualActions.tsx:528 msgid "Burn" msgstr "" @@ -834,7 +838,7 @@ msgstr "" #: src/components/signVerify/VerifyMessage.tsx:271 #: src/components/vcs/VCEditTitle.tsx:76 #: src/components/vcs/VCRevokeDialog.tsx:28 -#: src/hooks/useOpenUnsafeLink.tsx:33 +#: src/hooks/useOpenUnsafeLink.tsx:62 msgid "Cancel" msgstr "Anuloje" @@ -996,7 +1000,7 @@ msgstr "" #: src/components/nfts/MultipleDownloadDialog.tsx:116 #: src/components/nfts/NFTMoveToProfileDialog.tsx:328 #: src/components/nfts/NFTTransferAction.tsx:166 -#: src/components/notification/NotificationAnnouncementDialog.tsx:75 +#: src/components/notification/NotificationAnnouncementDialog.tsx:87 #: src/components/notification/NotificationSendDialog.tsx:308 #: src/components/offers/ConfirmOfferCancellation.tsx:126 #: src/components/offers/OfferShareDialog.tsx:373 @@ -1569,7 +1573,7 @@ msgid "Display sharing options after creating a new offer" msgstr "" #: src/components/offers/OfferShareDialog.tsx:945 -#: src/hooks/useOpenUnsafeLink.tsx:64 +#: src/hooks/useOpenUnsafeLink.tsx:93 msgid "Do not show this dialog again" msgstr "" @@ -2112,7 +2116,7 @@ msgstr "" #~ msgid "Frequently Asked Questions" #~ msgstr "Frequently Asked Questions" -#: src/components/notification/NotificationAnnouncementDialog.tsx:44 +#: src/components/notification/NotificationAnnouncementDialog.tsx:58 msgid "From" msgstr "" @@ -2343,7 +2347,7 @@ msgstr "" #~ msgid "Hidden ({0})" #~ msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Hide" msgstr "" @@ -2834,7 +2838,7 @@ msgstr "" msgid "Memos" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:53 +#: src/components/notification/NotificationAnnouncementDialog.tsx:67 #: src/components/signVerify/SignMessage.tsx:200 #: src/components/signVerify/VerifyMessage.tsx:207 #: src/constants/WalletConnectCommands.tsx:184 @@ -3529,7 +3533,7 @@ msgstr "" msgid "Open in Browser" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:31 +#: src/hooks/useOpenUnsafeLink.tsx:60 msgid "Open Link" msgstr "" @@ -3720,7 +3724,7 @@ msgstr "" msgid "Pending removal" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:38 +#: src/hooks/useOpenUnsafeLink.tsx:67 msgid "Please check the following link to verify the site you are going to visit. Proceed at your own risk." msgstr "" @@ -4211,7 +4215,7 @@ msgstr "" msgid "Recursive Plot Scan" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:566 +#: src/components/nfts/NFTContextualActions.tsx:569 msgid "Refresh NFT data" msgstr "" @@ -4685,7 +4689,7 @@ msgstr "" #~ msgid "Share Privately" #~ msgstr "Share Privately" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Show" msgstr "" @@ -5229,6 +5233,10 @@ msgstr "Kjo plot NFT i është caktuar një çelësi tjetër. Ju ende mund të k msgid "This table shows you the last time your farm attempted to win a block challenge. <0>Learn more" msgstr "Kjo tabelë ju tregon hera e fundit që ferma juaj u përpoq të fitonte një sfidë blloku. <0> Mësoni më shumë " +#: src/hooks/useOpenUnsafeLink.tsx:24 +msgid "This type of the URL is not allowed to open for security reasons." +msgstr "" + #: src/components/settings/SettingsIntegration.tsx:398 msgid "This will reset all previously granted permissions across all Dapps that have been connected to. After resetting you will be asked to grant permission again." msgstr "" @@ -5579,9 +5587,10 @@ msgstr "" msgid "Uris" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:62 +#: src/components/notification/NotificationAnnouncementDialog.tsx:76 #: src/constants/WalletConnectCommands.tsx:964 -#: src/hooks/useOpenUnsafeLink.tsx:43 +#: src/hooks/useOpenUnsafeLink.tsx:27 +#: src/hooks/useOpenUnsafeLink.tsx:72 msgid "URL" msgstr "" @@ -5714,7 +5723,7 @@ msgstr "" #~ msgid "View on Hashgreen DEX" #~ msgstr "View on Hashgreen DEX" -#: src/components/nfts/NFTContextualActions.tsx:643 +#: src/components/nfts/NFTContextualActions.tsx:646 #: src/components/offers/OfferShareDialog.tsx:441 msgid "View on MintGarden" msgstr "" @@ -5727,7 +5736,7 @@ msgstr "" msgid "View on Offerpool" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:651 +#: src/components/nfts/NFTContextualActions.tsx:654 #: src/components/offers/OfferShareDialog.tsx:538 msgid "View on Spacescan.io" msgstr "" @@ -5866,6 +5875,10 @@ msgstr "" msgid "Warning Threshold" msgstr "" +#: src/hooks/useOpenUnsafeLink.tsx:21 +msgid "Warning: Invalid URL" +msgstr "" + #: src/components/app/AppVersionWarning.tsx:30 msgid "Warning: Mismatched Versions" msgstr "" @@ -5875,7 +5888,7 @@ msgstr "" msgid "Warning: Verify that the offered CAT asset IDs match the asset IDs of the tokens you expect to receive." msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:30 +#: src/hooks/useOpenUnsafeLink.tsx:59 msgid "Warning: You're about to visit a website" msgstr "" diff --git a/packages/gui/src/locales/sr-SP/messages.po b/packages/gui/src/locales/sr-SP/messages.po index cc419fdf93..c1180287ec 100644 --- a/packages/gui/src/locales/sr-SP/messages.po +++ b/packages/gui/src/locales/sr-SP/messages.po @@ -44,134 +44,134 @@ msgid "Would you like to transfer {count} NFTs to a new owner?" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "No" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "Yes" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:511 +#: src/electron/main.tsx:522 msgid "Confirm" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:513 +#: src/electron/main.tsx:524 msgid "Are you sure you want to quit?" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:518 +#: src/electron/main.tsx:529 msgid "Keep service running in the background" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:636 -#: src/electron/main.tsx:844 +#: src/electron/main.tsx:647 +#: src/electron/main.tsx:855 msgid "File" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:644 +#: src/electron/main.tsx:655 msgid "Edit" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:676 +#: src/electron/main.tsx:687 msgid "View" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:685 +#: src/electron/main.tsx:696 msgid "Developer" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:688 +#: src/electron/main.tsx:699 msgid "Developer Tools" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:696 +#: src/electron/main.tsx:707 msgid "Trigger Desktop Notification" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:725 +#: src/electron/main.tsx:736 msgid "Full Screen" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:732 +#: src/electron/main.tsx:743 msgid "Window" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:746 +#: src/electron/main.tsx:757 msgid "Help" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:750 +#: src/electron/main.tsx:761 msgid "Chia Blockchain Wiki" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:756 +#: src/electron/main.tsx:767 msgid "Frequently Asked Questions" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:762 +#: src/electron/main.tsx:773 msgid "Release Notes" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:768 +#: src/electron/main.tsx:779 msgid "Contribute on GitHub" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:777 +#: src/electron/main.tsx:788 msgid "Report an Issue..." msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:783 +#: src/electron/main.tsx:794 msgid "Chat on Discord" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:789 +#: src/electron/main.tsx:800 msgid "Follow on Twitter" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:801 +#: src/electron/main.tsx:812 msgid "Chia" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:804 -#: src/electron/main.tsx:897 +#: src/electron/main.tsx:815 +#: src/electron/main.tsx:908 msgid "About Chia Blockchain" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:810 +#: src/electron/main.tsx:821 msgid "Check for Updates..." msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:858 +#: src/electron/main.tsx:869 msgid "Speech" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:903 +#: src/electron/main.tsx:914 msgid "Check for updates..." msgstr "" @@ -302,6 +302,10 @@ msgstr "" msgid "*Usually it takes seconds to complete restarting." msgstr "" +#: src/components/notification/NotificationAnnouncementDialog.tsx:39 +msgid "##### Redacted for security reason #####" +msgstr "" + #: src/components/plot/overview/PlotOverviewPlots.tsx:42 msgid "+ Add a Plot" msgstr "" @@ -364,7 +368,7 @@ msgstr "Акција" #: src/components/farm/FarmFullNodeConnections.tsx:54 #: src/components/farm/FarmYourHarvesterNetwork.tsx:54 #: src/components/fullNode/FullNodeConnections.tsx:65 -#: src/components/nfts/NFTContextualActions.tsx:587 +#: src/components/nfts/NFTContextualActions.tsx:590 #: src/components/offers2/OfferIncomingTable.tsx:111 msgid "Actions" msgstr "Акције" @@ -553,7 +557,7 @@ msgstr "" msgid "An NFT's provenance is a complete record of its ownership history. It provides a direct lineage that connects everyone who has owned the NFT, all the way back to the original artist. This helps to verify that the NFT is authentic." msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:35 +#: src/components/notification/NotificationAnnouncementDialog.tsx:49 msgid "Announcement" msgstr "" @@ -779,7 +783,7 @@ msgstr "Претражи" #: src/components/nfts/NFTBurnDialog.tsx:90 #: src/components/nfts/NFTBurnDialog.tsx:185 -#: src/components/nfts/NFTContextualActions.tsx:525 +#: src/components/nfts/NFTContextualActions.tsx:528 msgid "Burn" msgstr "" @@ -834,7 +838,7 @@ msgstr "" #: src/components/signVerify/VerifyMessage.tsx:271 #: src/components/vcs/VCEditTitle.tsx:76 #: src/components/vcs/VCRevokeDialog.tsx:28 -#: src/hooks/useOpenUnsafeLink.tsx:33 +#: src/hooks/useOpenUnsafeLink.tsx:62 msgid "Cancel" msgstr "Откажи" @@ -996,7 +1000,7 @@ msgstr "" #: src/components/nfts/MultipleDownloadDialog.tsx:116 #: src/components/nfts/NFTMoveToProfileDialog.tsx:328 #: src/components/nfts/NFTTransferAction.tsx:166 -#: src/components/notification/NotificationAnnouncementDialog.tsx:75 +#: src/components/notification/NotificationAnnouncementDialog.tsx:87 #: src/components/notification/NotificationSendDialog.tsx:308 #: src/components/offers/ConfirmOfferCancellation.tsx:126 #: src/components/offers/OfferShareDialog.tsx:373 @@ -1569,7 +1573,7 @@ msgid "Display sharing options after creating a new offer" msgstr "" #: src/components/offers/OfferShareDialog.tsx:945 -#: src/hooks/useOpenUnsafeLink.tsx:64 +#: src/hooks/useOpenUnsafeLink.tsx:93 msgid "Do not show this dialog again" msgstr "" @@ -2112,7 +2116,7 @@ msgstr "" #~ msgid "Frequently Asked Questions" #~ msgstr "Често Постављана Питања" -#: src/components/notification/NotificationAnnouncementDialog.tsx:44 +#: src/components/notification/NotificationAnnouncementDialog.tsx:58 msgid "From" msgstr "" @@ -2343,7 +2347,7 @@ msgstr "" #~ msgid "Hidden ({0})" #~ msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Hide" msgstr "" @@ -2834,7 +2838,7 @@ msgstr "" msgid "Memos" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:53 +#: src/components/notification/NotificationAnnouncementDialog.tsx:67 #: src/components/signVerify/SignMessage.tsx:200 #: src/components/signVerify/VerifyMessage.tsx:207 #: src/constants/WalletConnectCommands.tsx:184 @@ -3529,7 +3533,7 @@ msgstr "" msgid "Open in Browser" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:31 +#: src/hooks/useOpenUnsafeLink.tsx:60 msgid "Open Link" msgstr "" @@ -3720,7 +3724,7 @@ msgstr "" msgid "Pending removal" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:38 +#: src/hooks/useOpenUnsafeLink.tsx:67 msgid "Please check the following link to verify the site you are going to visit. Proceed at your own risk." msgstr "" @@ -4211,7 +4215,7 @@ msgstr "" msgid "Recursive Plot Scan" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:566 +#: src/components/nfts/NFTContextualActions.tsx:569 msgid "Refresh NFT data" msgstr "" @@ -4685,7 +4689,7 @@ msgstr "" #~ msgid "Share Privately" #~ msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Show" msgstr "" @@ -5229,6 +5233,10 @@ msgstr "" msgid "This table shows you the last time your farm attempted to win a block challenge. <0>Learn more" msgstr "Ова табела ти показује када је твоја фарма последњи пут покушала да победи у блок изазову. <0> Сазнај више " +#: src/hooks/useOpenUnsafeLink.tsx:24 +msgid "This type of the URL is not allowed to open for security reasons." +msgstr "" + #: src/components/settings/SettingsIntegration.tsx:398 msgid "This will reset all previously granted permissions across all Dapps that have been connected to. After resetting you will be asked to grant permission again." msgstr "" @@ -5579,9 +5587,10 @@ msgstr "" msgid "Uris" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:62 +#: src/components/notification/NotificationAnnouncementDialog.tsx:76 #: src/constants/WalletConnectCommands.tsx:964 -#: src/hooks/useOpenUnsafeLink.tsx:43 +#: src/hooks/useOpenUnsafeLink.tsx:27 +#: src/hooks/useOpenUnsafeLink.tsx:72 msgid "URL" msgstr "" @@ -5714,7 +5723,7 @@ msgstr "" #~ msgid "View on Hashgreen DEX" #~ msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:643 +#: src/components/nfts/NFTContextualActions.tsx:646 #: src/components/offers/OfferShareDialog.tsx:441 msgid "View on MintGarden" msgstr "" @@ -5727,7 +5736,7 @@ msgstr "" msgid "View on Offerpool" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:651 +#: src/components/nfts/NFTContextualActions.tsx:654 #: src/components/offers/OfferShareDialog.tsx:538 msgid "View on Spacescan.io" msgstr "" @@ -5866,6 +5875,10 @@ msgstr "" msgid "Warning Threshold" msgstr "" +#: src/hooks/useOpenUnsafeLink.tsx:21 +msgid "Warning: Invalid URL" +msgstr "" + #: src/components/app/AppVersionWarning.tsx:30 msgid "Warning: Mismatched Versions" msgstr "" @@ -5875,7 +5888,7 @@ msgstr "" msgid "Warning: Verify that the offered CAT asset IDs match the asset IDs of the tokens you expect to receive." msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:30 +#: src/hooks/useOpenUnsafeLink.tsx:59 msgid "Warning: You're about to visit a website" msgstr "" diff --git a/packages/gui/src/locales/sv-SE/messages.po b/packages/gui/src/locales/sv-SE/messages.po index eee04e8226..4b70c55ec9 100644 --- a/packages/gui/src/locales/sv-SE/messages.po +++ b/packages/gui/src/locales/sv-SE/messages.po @@ -44,134 +44,134 @@ msgid "Would you like to transfer {count} NFTs to a new owner?" msgstr "Vill du överföra {count} NFT:er till en ny ägare?" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "No" msgstr "Nej" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "Yes" msgstr "Ja" #. js-lingui-explicit-id -#: src/electron/main.tsx:511 +#: src/electron/main.tsx:522 msgid "Confirm" msgstr "Bekräfta" #. js-lingui-explicit-id -#: src/electron/main.tsx:513 +#: src/electron/main.tsx:524 msgid "Are you sure you want to quit?" msgstr "Är du säker på att du vill avsluta?" #. js-lingui-explicit-id -#: src/electron/main.tsx:518 +#: src/electron/main.tsx:529 msgid "Keep service running in the background" msgstr "Håll tjänsten igång i bakgrunden" #. js-lingui-explicit-id -#: src/electron/main.tsx:636 -#: src/electron/main.tsx:844 +#: src/electron/main.tsx:647 +#: src/electron/main.tsx:855 msgid "File" msgstr "Fil" #. js-lingui-explicit-id -#: src/electron/main.tsx:644 +#: src/electron/main.tsx:655 msgid "Edit" msgstr "Redigera" #. js-lingui-explicit-id -#: src/electron/main.tsx:676 +#: src/electron/main.tsx:687 msgid "View" msgstr "Visa" #. js-lingui-explicit-id -#: src/electron/main.tsx:685 +#: src/electron/main.tsx:696 msgid "Developer" msgstr "Utvecklare" #. js-lingui-explicit-id -#: src/electron/main.tsx:688 +#: src/electron/main.tsx:699 msgid "Developer Tools" msgstr "Utvecklarverktyg" #. js-lingui-explicit-id -#: src/electron/main.tsx:696 +#: src/electron/main.tsx:707 msgid "Trigger Desktop Notification" msgstr "Utlös skrivbordsavisering" #. js-lingui-explicit-id -#: src/electron/main.tsx:725 +#: src/electron/main.tsx:736 msgid "Full Screen" msgstr "Helskärm" #. js-lingui-explicit-id -#: src/electron/main.tsx:732 +#: src/electron/main.tsx:743 msgid "Window" msgstr "Fönster" #. js-lingui-explicit-id -#: src/electron/main.tsx:746 +#: src/electron/main.tsx:757 msgid "Help" msgstr "Hjälp" #. js-lingui-explicit-id -#: src/electron/main.tsx:750 +#: src/electron/main.tsx:761 msgid "Chia Blockchain Wiki" msgstr "Chia Blockchains wiki" #. js-lingui-explicit-id -#: src/electron/main.tsx:756 +#: src/electron/main.tsx:767 msgid "Frequently Asked Questions" msgstr "Vanliga frågor" #. js-lingui-explicit-id -#: src/electron/main.tsx:762 +#: src/electron/main.tsx:773 msgid "Release Notes" msgstr "Viktig information" #. js-lingui-explicit-id -#: src/electron/main.tsx:768 +#: src/electron/main.tsx:779 msgid "Contribute on GitHub" msgstr "Delta på GitHub" #. js-lingui-explicit-id -#: src/electron/main.tsx:777 +#: src/electron/main.tsx:788 msgid "Report an Issue..." msgstr "Rapportera ett problem ..." #. js-lingui-explicit-id -#: src/electron/main.tsx:783 +#: src/electron/main.tsx:794 msgid "Chat on Discord" msgstr "Chatta på Discord" #. js-lingui-explicit-id -#: src/electron/main.tsx:789 +#: src/electron/main.tsx:800 msgid "Follow on Twitter" msgstr "Följ på Twitter" #. js-lingui-explicit-id -#: src/electron/main.tsx:801 +#: src/electron/main.tsx:812 msgid "Chia" msgstr "Chia" #. js-lingui-explicit-id -#: src/electron/main.tsx:804 -#: src/electron/main.tsx:897 +#: src/electron/main.tsx:815 +#: src/electron/main.tsx:908 msgid "About Chia Blockchain" msgstr "Om Chia Blockchain" #. js-lingui-explicit-id -#: src/electron/main.tsx:810 +#: src/electron/main.tsx:821 msgid "Check for Updates..." msgstr "Sök efter uppdateringar ..." #. js-lingui-explicit-id -#: src/electron/main.tsx:858 +#: src/electron/main.tsx:869 msgid "Speech" msgstr "Tal" #. js-lingui-explicit-id -#: src/electron/main.tsx:903 +#: src/electron/main.tsx:914 msgid "Check for updates..." msgstr "Sök efter uppdateringar ..." @@ -302,6 +302,10 @@ msgstr "* Aktiverad - använd enhet vid angivet index om tillgänglig; annars fe msgid "*Usually it takes seconds to complete restarting." msgstr "*Vanligtvis tar det sekunder att slutföra omstart." +#: src/components/notification/NotificationAnnouncementDialog.tsx:39 +msgid "##### Redacted for security reason #####" +msgstr "" + #: src/components/plot/overview/PlotOverviewPlots.tsx:42 msgid "+ Add a Plot" msgstr "+ Lägg till en plott" @@ -364,7 +368,7 @@ msgstr "Åtgärd" #: src/components/farm/FarmFullNodeConnections.tsx:54 #: src/components/farm/FarmYourHarvesterNetwork.tsx:54 #: src/components/fullNode/FullNodeConnections.tsx:65 -#: src/components/nfts/NFTContextualActions.tsx:587 +#: src/components/nfts/NFTContextualActions.tsx:590 #: src/components/offers2/OfferIncomingTable.tsx:111 msgid "Actions" msgstr "Åtgärder" @@ -553,7 +557,7 @@ msgstr "" msgid "An NFT's provenance is a complete record of its ownership history. It provides a direct lineage that connects everyone who has owned the NFT, all the way back to the original artist. This helps to verify that the NFT is authentic." msgstr "En NFT:s proveniens är ett fullständigt register över dess ägandehistoria. Den ger ett direkt ursprung som länkar ihop alla som har ägt NFT:n, hela vägen tillbaka till den ursprungliga konstnären. Detta hjälper till att verifiera att NFT:n är äkta." -#: src/components/notification/NotificationAnnouncementDialog.tsx:35 +#: src/components/notification/NotificationAnnouncementDialog.tsx:49 msgid "Announcement" msgstr "Meddelande" @@ -779,7 +783,7 @@ msgstr "Bläddra" #: src/components/nfts/NFTBurnDialog.tsx:90 #: src/components/nfts/NFTBurnDialog.tsx:185 -#: src/components/nfts/NFTContextualActions.tsx:525 +#: src/components/nfts/NFTContextualActions.tsx:528 msgid "Burn" msgstr "Bränn" @@ -834,7 +838,7 @@ msgstr "Cachestorlek (GB)" #: src/components/signVerify/VerifyMessage.tsx:271 #: src/components/vcs/VCEditTitle.tsx:76 #: src/components/vcs/VCRevokeDialog.tsx:28 -#: src/hooks/useOpenUnsafeLink.tsx:33 +#: src/hooks/useOpenUnsafeLink.tsx:62 msgid "Cancel" msgstr "Avbryt" @@ -996,7 +1000,7 @@ msgstr "Att klicka på en raderingsikon tar bara bort en katalog från denna lis #: src/components/nfts/MultipleDownloadDialog.tsx:116 #: src/components/nfts/NFTMoveToProfileDialog.tsx:328 #: src/components/nfts/NFTTransferAction.tsx:166 -#: src/components/notification/NotificationAnnouncementDialog.tsx:75 +#: src/components/notification/NotificationAnnouncementDialog.tsx:87 #: src/components/notification/NotificationSendDialog.tsx:308 #: src/components/offers/ConfirmOfferCancellation.tsx:126 #: src/components/offers/OfferShareDialog.tsx:373 @@ -1569,7 +1573,7 @@ msgid "Display sharing options after creating a new offer" msgstr "Visa delningsalternativ efter att ett nytt erbjudande skapats" #: src/components/offers/OfferShareDialog.tsx:945 -#: src/hooks/useOpenUnsafeLink.tsx:64 +#: src/hooks/useOpenUnsafeLink.tsx:93 msgid "Do not show this dialog again" msgstr "Visa inte denna dialog igen" @@ -2112,7 +2116,7 @@ msgstr "Anpassa bilder till kort" #~ msgid "Frequently Asked Questions" #~ msgstr "Frequently Asked Questions" -#: src/components/notification/NotificationAnnouncementDialog.tsx:44 +#: src/components/notification/NotificationAnnouncementDialog.tsx:58 msgid "From" msgstr "Från" @@ -2343,7 +2347,7 @@ msgstr "Dolda  <0/>" #~ msgid "Hidden ({0})" #~ msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Hide" msgstr "Dölj" @@ -2834,7 +2838,7 @@ msgstr "Medlemskap" msgid "Memos" msgstr "Meddelanden" -#: src/components/notification/NotificationAnnouncementDialog.tsx:53 +#: src/components/notification/NotificationAnnouncementDialog.tsx:67 #: src/components/signVerify/SignMessage.tsx:200 #: src/components/signVerify/VerifyMessage.tsx:207 #: src/constants/WalletConnectCommands.tsx:184 @@ -3529,7 +3533,7 @@ msgstr "" msgid "Open in Browser" msgstr "Öppna i webbläsare" -#: src/hooks/useOpenUnsafeLink.tsx:31 +#: src/hooks/useOpenUnsafeLink.tsx:60 msgid "Open Link" msgstr "Öppna länk" @@ -3720,7 +3724,7 @@ msgstr "Väntar på bekräftelse" msgid "Pending removal" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:38 +#: src/hooks/useOpenUnsafeLink.tsx:67 msgid "Please check the following link to verify the site you are going to visit. Proceed at your own risk." msgstr "Kontrollera följande länk för att verifiera webbplatsen du ska besöka. Fortsätt på egen risk." @@ -4211,7 +4215,7 @@ msgstr "Rekommenderat" msgid "Recursive Plot Scan" msgstr "Rekursiv plottskanning" -#: src/components/nfts/NFTContextualActions.tsx:566 +#: src/components/nfts/NFTContextualActions.tsx:569 msgid "Refresh NFT data" msgstr "Uppdatera NFT-data" @@ -4685,7 +4689,7 @@ msgstr "Dela på Spacescan.io" #~ msgid "Share Privately" #~ msgstr "Share Privately" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Show" msgstr "Visa" @@ -5229,6 +5233,10 @@ msgstr "Denna plott-NFT är tilldelad till en annan nyckel. Du kan fortfarande s msgid "This table shows you the last time your farm attempted to win a block challenge. <0>Learn more" msgstr "Denna tabell visar den sista tidpunkt då din odling försökte vinna en blockverifiering. <0>Läs mer" +#: src/hooks/useOpenUnsafeLink.tsx:24 +msgid "This type of the URL is not allowed to open for security reasons." +msgstr "" + #: src/components/settings/SettingsIntegration.tsx:398 msgid "This will reset all previously granted permissions across all Dapps that have been connected to. After resetting you will be asked to grant permission again." msgstr "" @@ -5579,9 +5587,10 @@ msgstr "Uppdatering väntar" msgid "Uris" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:62 +#: src/components/notification/NotificationAnnouncementDialog.tsx:76 #: src/constants/WalletConnectCommands.tsx:964 -#: src/hooks/useOpenUnsafeLink.tsx:43 +#: src/hooks/useOpenUnsafeLink.tsx:27 +#: src/hooks/useOpenUnsafeLink.tsx:72 msgid "URL" msgstr "URL" @@ -5714,7 +5723,7 @@ msgstr "Visa på Dexie" #~ msgid "View on Hashgreen DEX" #~ msgstr "View on Hashgreen DEX" -#: src/components/nfts/NFTContextualActions.tsx:643 +#: src/components/nfts/NFTContextualActions.tsx:646 #: src/components/offers/OfferShareDialog.tsx:441 msgid "View on MintGarden" msgstr "Visa på MintGarden" @@ -5727,7 +5736,7 @@ msgstr "Visa på MintGarden" msgid "View on Offerpool" msgstr "Visa på Offerpool" -#: src/components/nfts/NFTContextualActions.tsx:651 +#: src/components/nfts/NFTContextualActions.tsx:654 #: src/components/offers/OfferShareDialog.tsx:538 msgid "View on Spacescan.io" msgstr "Visa på Spacescan.io" @@ -5866,6 +5875,10 @@ msgstr "Varning" msgid "Warning Threshold" msgstr "Varningströskelvärde" +#: src/hooks/useOpenUnsafeLink.tsx:21 +msgid "Warning: Invalid URL" +msgstr "" + #: src/components/app/AppVersionWarning.tsx:30 msgid "Warning: Mismatched Versions" msgstr "Varning: Versioner som inte matchar" @@ -5875,7 +5888,7 @@ msgstr "Varning: Versioner som inte matchar" msgid "Warning: Verify that the offered CAT asset IDs match the asset IDs of the tokens you expect to receive." msgstr "Varning: Verifiera att tillgångs-ID för erbjudna CAT matchar tillgångs-ID för de token du förväntar dig att ta emot." -#: src/hooks/useOpenUnsafeLink.tsx:30 +#: src/hooks/useOpenUnsafeLink.tsx:59 msgid "Warning: You're about to visit a website" msgstr "Varning: Du är på väg att besöka en webbplats" diff --git a/packages/gui/src/locales/tr-TR/messages.po b/packages/gui/src/locales/tr-TR/messages.po index 1bf9727488..b6f0c7e714 100644 --- a/packages/gui/src/locales/tr-TR/messages.po +++ b/packages/gui/src/locales/tr-TR/messages.po @@ -44,134 +44,134 @@ msgid "Would you like to transfer {count} NFTs to a new owner?" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "No" msgstr "Hayır" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "Yes" msgstr "Evet" #. js-lingui-explicit-id -#: src/electron/main.tsx:511 +#: src/electron/main.tsx:522 msgid "Confirm" msgstr "Onayla" #. js-lingui-explicit-id -#: src/electron/main.tsx:513 +#: src/electron/main.tsx:524 msgid "Are you sure you want to quit?" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:518 +#: src/electron/main.tsx:529 msgid "Keep service running in the background" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:636 -#: src/electron/main.tsx:844 +#: src/electron/main.tsx:647 +#: src/electron/main.tsx:855 msgid "File" msgstr "Dosya" #. js-lingui-explicit-id -#: src/electron/main.tsx:644 +#: src/electron/main.tsx:655 msgid "Edit" msgstr "Düzenle" #. js-lingui-explicit-id -#: src/electron/main.tsx:676 +#: src/electron/main.tsx:687 msgid "View" msgstr "Görünüm" #. js-lingui-explicit-id -#: src/electron/main.tsx:685 +#: src/electron/main.tsx:696 msgid "Developer" msgstr "Geliştirici" #. js-lingui-explicit-id -#: src/electron/main.tsx:688 +#: src/electron/main.tsx:699 msgid "Developer Tools" msgstr "Geliştirici araçları" #. js-lingui-explicit-id -#: src/electron/main.tsx:696 +#: src/electron/main.tsx:707 msgid "Trigger Desktop Notification" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:725 +#: src/electron/main.tsx:736 msgid "Full Screen" msgstr "Tam Ekran" #. js-lingui-explicit-id -#: src/electron/main.tsx:732 +#: src/electron/main.tsx:743 msgid "Window" msgstr "Pencere" #. js-lingui-explicit-id -#: src/electron/main.tsx:746 +#: src/electron/main.tsx:757 msgid "Help" msgstr "Yardım" #. js-lingui-explicit-id -#: src/electron/main.tsx:750 +#: src/electron/main.tsx:761 msgid "Chia Blockchain Wiki" msgstr "Chia Blokchain Wiki" #. js-lingui-explicit-id -#: src/electron/main.tsx:756 +#: src/electron/main.tsx:767 msgid "Frequently Asked Questions" msgstr "Sıkça Sorulan Sorular" #. js-lingui-explicit-id -#: src/electron/main.tsx:762 +#: src/electron/main.tsx:773 msgid "Release Notes" msgstr "Sürüm notları" #. js-lingui-explicit-id -#: src/electron/main.tsx:768 +#: src/electron/main.tsx:779 msgid "Contribute on GitHub" msgstr "GitHub'da Katkıda Bulun" #. js-lingui-explicit-id -#: src/electron/main.tsx:777 +#: src/electron/main.tsx:788 msgid "Report an Issue..." msgstr "Sorun Bildirin..." #. js-lingui-explicit-id -#: src/electron/main.tsx:783 +#: src/electron/main.tsx:794 msgid "Chat on Discord" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:789 +#: src/electron/main.tsx:800 msgid "Follow on Twitter" msgstr "Twitter'da Takip Et" #. js-lingui-explicit-id -#: src/electron/main.tsx:801 +#: src/electron/main.tsx:812 msgid "Chia" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:804 -#: src/electron/main.tsx:897 +#: src/electron/main.tsx:815 +#: src/electron/main.tsx:908 msgid "About Chia Blockchain" msgstr "Chia Blokzinciri Hakkında" #. js-lingui-explicit-id -#: src/electron/main.tsx:810 +#: src/electron/main.tsx:821 msgid "Check for Updates..." msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:858 +#: src/electron/main.tsx:869 msgid "Speech" msgstr "Konuşma" #. js-lingui-explicit-id -#: src/electron/main.tsx:903 +#: src/electron/main.tsx:914 msgid "Check for updates..." msgstr "" @@ -302,6 +302,10 @@ msgstr "" msgid "*Usually it takes seconds to complete restarting." msgstr "" +#: src/components/notification/NotificationAnnouncementDialog.tsx:39 +msgid "##### Redacted for security reason #####" +msgstr "" + #: src/components/plot/overview/PlotOverviewPlots.tsx:42 msgid "+ Add a Plot" msgstr "+ Plot Ekle" @@ -364,7 +368,7 @@ msgstr "İşlem" #: src/components/farm/FarmFullNodeConnections.tsx:54 #: src/components/farm/FarmYourHarvesterNetwork.tsx:54 #: src/components/fullNode/FullNodeConnections.tsx:65 -#: src/components/nfts/NFTContextualActions.tsx:587 +#: src/components/nfts/NFTContextualActions.tsx:590 #: src/components/offers2/OfferIncomingTable.tsx:111 msgid "Actions" msgstr "İşlemler" @@ -553,7 +557,7 @@ msgstr "" msgid "An NFT's provenance is a complete record of its ownership history. It provides a direct lineage that connects everyone who has owned the NFT, all the way back to the original artist. This helps to verify that the NFT is authentic." msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:35 +#: src/components/notification/NotificationAnnouncementDialog.tsx:49 msgid "Announcement" msgstr "" @@ -779,7 +783,7 @@ msgstr "Göz at" #: src/components/nfts/NFTBurnDialog.tsx:90 #: src/components/nfts/NFTBurnDialog.tsx:185 -#: src/components/nfts/NFTContextualActions.tsx:525 +#: src/components/nfts/NFTContextualActions.tsx:528 msgid "Burn" msgstr "" @@ -834,7 +838,7 @@ msgstr "" #: src/components/signVerify/VerifyMessage.tsx:271 #: src/components/vcs/VCEditTitle.tsx:76 #: src/components/vcs/VCRevokeDialog.tsx:28 -#: src/hooks/useOpenUnsafeLink.tsx:33 +#: src/hooks/useOpenUnsafeLink.tsx:62 msgid "Cancel" msgstr "İptal Et" @@ -996,7 +1000,7 @@ msgstr "" #: src/components/nfts/MultipleDownloadDialog.tsx:116 #: src/components/nfts/NFTMoveToProfileDialog.tsx:328 #: src/components/nfts/NFTTransferAction.tsx:166 -#: src/components/notification/NotificationAnnouncementDialog.tsx:75 +#: src/components/notification/NotificationAnnouncementDialog.tsx:87 #: src/components/notification/NotificationSendDialog.tsx:308 #: src/components/offers/ConfirmOfferCancellation.tsx:126 #: src/components/offers/OfferShareDialog.tsx:373 @@ -1569,7 +1573,7 @@ msgid "Display sharing options after creating a new offer" msgstr "" #: src/components/offers/OfferShareDialog.tsx:945 -#: src/hooks/useOpenUnsafeLink.tsx:64 +#: src/hooks/useOpenUnsafeLink.tsx:93 msgid "Do not show this dialog again" msgstr "" @@ -2112,7 +2116,7 @@ msgstr "" #~ msgid "Frequently Asked Questions" #~ msgstr "Frequently Asked Questions" -#: src/components/notification/NotificationAnnouncementDialog.tsx:44 +#: src/components/notification/NotificationAnnouncementDialog.tsx:58 msgid "From" msgstr "" @@ -2343,7 +2347,7 @@ msgstr "" #~ msgid "Hidden ({0})" #~ msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Hide" msgstr "" @@ -2834,7 +2838,7 @@ msgstr "" msgid "Memos" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:53 +#: src/components/notification/NotificationAnnouncementDialog.tsx:67 #: src/components/signVerify/SignMessage.tsx:200 #: src/components/signVerify/VerifyMessage.tsx:207 #: src/constants/WalletConnectCommands.tsx:184 @@ -3529,7 +3533,7 @@ msgstr "" msgid "Open in Browser" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:31 +#: src/hooks/useOpenUnsafeLink.tsx:60 msgid "Open Link" msgstr "" @@ -3720,7 +3724,7 @@ msgstr "" msgid "Pending removal" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:38 +#: src/hooks/useOpenUnsafeLink.tsx:67 msgid "Please check the following link to verify the site you are going to visit. Proceed at your own risk." msgstr "" @@ -4211,7 +4215,7 @@ msgstr "" msgid "Recursive Plot Scan" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:566 +#: src/components/nfts/NFTContextualActions.tsx:569 msgid "Refresh NFT data" msgstr "" @@ -4685,7 +4689,7 @@ msgstr "" #~ msgid "Share Privately" #~ msgstr "Share Privately" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Show" msgstr "" @@ -5229,6 +5233,10 @@ msgstr "" msgid "This table shows you the last time your farm attempted to win a block challenge. <0>Learn more" msgstr "Bu tablo, çiftliğinizin bir blok için en son ne zaman kazanmaya çalıştığını gösterir. <0> Daha fazla bilgi edinin " +#: src/hooks/useOpenUnsafeLink.tsx:24 +msgid "This type of the URL is not allowed to open for security reasons." +msgstr "" + #: src/components/settings/SettingsIntegration.tsx:398 msgid "This will reset all previously granted permissions across all Dapps that have been connected to. After resetting you will be asked to grant permission again." msgstr "" @@ -5579,9 +5587,10 @@ msgstr "" msgid "Uris" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:62 +#: src/components/notification/NotificationAnnouncementDialog.tsx:76 #: src/constants/WalletConnectCommands.tsx:964 -#: src/hooks/useOpenUnsafeLink.tsx:43 +#: src/hooks/useOpenUnsafeLink.tsx:27 +#: src/hooks/useOpenUnsafeLink.tsx:72 msgid "URL" msgstr "" @@ -5714,7 +5723,7 @@ msgstr "" #~ msgid "View on Hashgreen DEX" #~ msgstr "View on Hashgreen DEX" -#: src/components/nfts/NFTContextualActions.tsx:643 +#: src/components/nfts/NFTContextualActions.tsx:646 #: src/components/offers/OfferShareDialog.tsx:441 msgid "View on MintGarden" msgstr "" @@ -5727,7 +5736,7 @@ msgstr "" msgid "View on Offerpool" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:651 +#: src/components/nfts/NFTContextualActions.tsx:654 #: src/components/offers/OfferShareDialog.tsx:538 msgid "View on Spacescan.io" msgstr "" @@ -5866,6 +5875,10 @@ msgstr "" msgid "Warning Threshold" msgstr "" +#: src/hooks/useOpenUnsafeLink.tsx:21 +msgid "Warning: Invalid URL" +msgstr "" + #: src/components/app/AppVersionWarning.tsx:30 msgid "Warning: Mismatched Versions" msgstr "" @@ -5875,7 +5888,7 @@ msgstr "" msgid "Warning: Verify that the offered CAT asset IDs match the asset IDs of the tokens you expect to receive." msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:30 +#: src/hooks/useOpenUnsafeLink.tsx:59 msgid "Warning: You're about to visit a website" msgstr "" diff --git a/packages/gui/src/locales/uk-UA/messages.po b/packages/gui/src/locales/uk-UA/messages.po index b0038e95fc..da26510ab3 100644 --- a/packages/gui/src/locales/uk-UA/messages.po +++ b/packages/gui/src/locales/uk-UA/messages.po @@ -44,134 +44,134 @@ msgid "Would you like to transfer {count} NFTs to a new owner?" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "No" msgstr "Ні" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "Yes" msgstr "Так" #. js-lingui-explicit-id -#: src/electron/main.tsx:511 +#: src/electron/main.tsx:522 msgid "Confirm" msgstr "Підтвердити" #. js-lingui-explicit-id -#: src/electron/main.tsx:513 +#: src/electron/main.tsx:524 msgid "Are you sure you want to quit?" msgstr "Ви дійсно хочете вийти?" #. js-lingui-explicit-id -#: src/electron/main.tsx:518 +#: src/electron/main.tsx:529 msgid "Keep service running in the background" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:636 -#: src/electron/main.tsx:844 +#: src/electron/main.tsx:647 +#: src/electron/main.tsx:855 msgid "File" msgstr "Файл" #. js-lingui-explicit-id -#: src/electron/main.tsx:644 +#: src/electron/main.tsx:655 msgid "Edit" msgstr "Редагувати" #. js-lingui-explicit-id -#: src/electron/main.tsx:676 +#: src/electron/main.tsx:687 msgid "View" msgstr "Вигляд" #. js-lingui-explicit-id -#: src/electron/main.tsx:685 +#: src/electron/main.tsx:696 msgid "Developer" msgstr "Розробник" #. js-lingui-explicit-id -#: src/electron/main.tsx:688 +#: src/electron/main.tsx:699 msgid "Developer Tools" msgstr "Інструменти розробника" #. js-lingui-explicit-id -#: src/electron/main.tsx:696 +#: src/electron/main.tsx:707 msgid "Trigger Desktop Notification" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:725 +#: src/electron/main.tsx:736 msgid "Full Screen" msgstr "Повний екран" #. js-lingui-explicit-id -#: src/electron/main.tsx:732 +#: src/electron/main.tsx:743 msgid "Window" msgstr "Вікно" #. js-lingui-explicit-id -#: src/electron/main.tsx:746 +#: src/electron/main.tsx:757 msgid "Help" msgstr "Допомога" #. js-lingui-explicit-id -#: src/electron/main.tsx:750 +#: src/electron/main.tsx:761 msgid "Chia Blockchain Wiki" msgstr "Chia Blockchain Wiki" #. js-lingui-explicit-id -#: src/electron/main.tsx:756 +#: src/electron/main.tsx:767 msgid "Frequently Asked Questions" msgstr "Найчастіші питання" #. js-lingui-explicit-id -#: src/electron/main.tsx:762 +#: src/electron/main.tsx:773 msgid "Release Notes" msgstr "Докладно про реліз" #. js-lingui-explicit-id -#: src/electron/main.tsx:768 +#: src/electron/main.tsx:779 msgid "Contribute on GitHub" msgstr "Внести свій внесок на GitHub" #. js-lingui-explicit-id -#: src/electron/main.tsx:777 +#: src/electron/main.tsx:788 msgid "Report an Issue..." msgstr "Повідомити про проблему..." #. js-lingui-explicit-id -#: src/electron/main.tsx:783 +#: src/electron/main.tsx:794 msgid "Chat on Discord" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:789 +#: src/electron/main.tsx:800 msgid "Follow on Twitter" msgstr "Слідкувати у Twitter" #. js-lingui-explicit-id -#: src/electron/main.tsx:801 +#: src/electron/main.tsx:812 msgid "Chia" msgstr "Chia" #. js-lingui-explicit-id -#: src/electron/main.tsx:804 -#: src/electron/main.tsx:897 +#: src/electron/main.tsx:815 +#: src/electron/main.tsx:908 msgid "About Chia Blockchain" msgstr "Про програму Chia Blockchain" #. js-lingui-explicit-id -#: src/electron/main.tsx:810 +#: src/electron/main.tsx:821 msgid "Check for Updates..." msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:858 +#: src/electron/main.tsx:869 msgid "Speech" msgstr "Мовлення" #. js-lingui-explicit-id -#: src/electron/main.tsx:903 +#: src/electron/main.tsx:914 msgid "Check for updates..." msgstr "" @@ -302,6 +302,10 @@ msgstr "" msgid "*Usually it takes seconds to complete restarting." msgstr "" +#: src/components/notification/NotificationAnnouncementDialog.tsx:39 +msgid "##### Redacted for security reason #####" +msgstr "" + #: src/components/plot/overview/PlotOverviewPlots.tsx:42 msgid "+ Add a Plot" msgstr "+ Додати ділянку" @@ -364,7 +368,7 @@ msgstr "Дія" #: src/components/farm/FarmFullNodeConnections.tsx:54 #: src/components/farm/FarmYourHarvesterNetwork.tsx:54 #: src/components/fullNode/FullNodeConnections.tsx:65 -#: src/components/nfts/NFTContextualActions.tsx:587 +#: src/components/nfts/NFTContextualActions.tsx:590 #: src/components/offers2/OfferIncomingTable.tsx:111 msgid "Actions" msgstr "Дії" @@ -553,7 +557,7 @@ msgstr "" msgid "An NFT's provenance is a complete record of its ownership history. It provides a direct lineage that connects everyone who has owned the NFT, all the way back to the original artist. This helps to verify that the NFT is authentic." msgstr "Походження NFT – це повний запис історії володіння ним. Він забезпечує пряме походження, яке пов’язує всіх, хто володів NFT, аж до оригінального творця. Це допомагає перевірити автентичність NFT." -#: src/components/notification/NotificationAnnouncementDialog.tsx:35 +#: src/components/notification/NotificationAnnouncementDialog.tsx:49 msgid "Announcement" msgstr "Анонс" @@ -779,7 +783,7 @@ msgstr "Огляд" #: src/components/nfts/NFTBurnDialog.tsx:90 #: src/components/nfts/NFTBurnDialog.tsx:185 -#: src/components/nfts/NFTContextualActions.tsx:525 +#: src/components/nfts/NFTContextualActions.tsx:528 msgid "Burn" msgstr "Спалити" @@ -834,7 +838,7 @@ msgstr "Розмір кешу (GB)" #: src/components/signVerify/VerifyMessage.tsx:271 #: src/components/vcs/VCEditTitle.tsx:76 #: src/components/vcs/VCRevokeDialog.tsx:28 -#: src/hooks/useOpenUnsafeLink.tsx:33 +#: src/hooks/useOpenUnsafeLink.tsx:62 msgid "Cancel" msgstr "Відміна" @@ -996,7 +1000,7 @@ msgstr "" #: src/components/nfts/MultipleDownloadDialog.tsx:116 #: src/components/nfts/NFTMoveToProfileDialog.tsx:328 #: src/components/nfts/NFTTransferAction.tsx:166 -#: src/components/notification/NotificationAnnouncementDialog.tsx:75 +#: src/components/notification/NotificationAnnouncementDialog.tsx:87 #: src/components/notification/NotificationSendDialog.tsx:308 #: src/components/offers/ConfirmOfferCancellation.tsx:126 #: src/components/offers/OfferShareDialog.tsx:373 @@ -1569,7 +1573,7 @@ msgid "Display sharing options after creating a new offer" msgstr "" #: src/components/offers/OfferShareDialog.tsx:945 -#: src/hooks/useOpenUnsafeLink.tsx:64 +#: src/hooks/useOpenUnsafeLink.tsx:93 msgid "Do not show this dialog again" msgstr "Більше не показувати" @@ -2112,7 +2116,7 @@ msgstr "" #~ msgid "Frequently Asked Questions" #~ msgstr "Frequently Asked Questions" -#: src/components/notification/NotificationAnnouncementDialog.tsx:44 +#: src/components/notification/NotificationAnnouncementDialog.tsx:58 msgid "From" msgstr "" @@ -2343,7 +2347,7 @@ msgstr "" #~ msgid "Hidden ({0})" #~ msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Hide" msgstr "Приховати" @@ -2834,7 +2838,7 @@ msgstr "" msgid "Memos" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:53 +#: src/components/notification/NotificationAnnouncementDialog.tsx:67 #: src/components/signVerify/SignMessage.tsx:200 #: src/components/signVerify/VerifyMessage.tsx:207 #: src/constants/WalletConnectCommands.tsx:184 @@ -3529,7 +3533,7 @@ msgstr "" msgid "Open in Browser" msgstr "Відкрити в браузері" -#: src/hooks/useOpenUnsafeLink.tsx:31 +#: src/hooks/useOpenUnsafeLink.tsx:60 msgid "Open Link" msgstr "Відкрити посилання" @@ -3720,7 +3724,7 @@ msgstr "Очікує підтвердження" msgid "Pending removal" msgstr "" -#: src/hooks/useOpenUnsafeLink.tsx:38 +#: src/hooks/useOpenUnsafeLink.tsx:67 msgid "Please check the following link to verify the site you are going to visit. Proceed at your own risk." msgstr "Перейдіть за наведеним нижче посиланням, щоб підтвердити сайт, який ви збираєтеся відвідати. Продовжуйте на свій страх і ризик." @@ -4211,7 +4215,7 @@ msgstr "Рекомендується" msgid "Recursive Plot Scan" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:566 +#: src/components/nfts/NFTContextualActions.tsx:569 msgid "Refresh NFT data" msgstr "" @@ -4685,7 +4689,7 @@ msgstr "Поділитися у Spacescan.io" #~ msgid "Share Privately" #~ msgstr "Share Privately" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Show" msgstr "Показати" @@ -5229,6 +5233,10 @@ msgstr "Ця NFT ділянка прив'язана до іншого ключа msgid "This table shows you the last time your farm attempted to win a block challenge. <0>Learn more" msgstr "Ця таблиця показує вам останній раз, коли ваша ферма спробувала виграти блок <0>Докладніше " +#: src/hooks/useOpenUnsafeLink.tsx:24 +msgid "This type of the URL is not allowed to open for security reasons." +msgstr "" + #: src/components/settings/SettingsIntegration.tsx:398 msgid "This will reset all previously granted permissions across all Dapps that have been connected to. After resetting you will be asked to grant permission again." msgstr "" @@ -5579,9 +5587,10 @@ msgstr "Очікується оновлення" msgid "Uris" msgstr "" -#: src/components/notification/NotificationAnnouncementDialog.tsx:62 +#: src/components/notification/NotificationAnnouncementDialog.tsx:76 #: src/constants/WalletConnectCommands.tsx:964 -#: src/hooks/useOpenUnsafeLink.tsx:43 +#: src/hooks/useOpenUnsafeLink.tsx:27 +#: src/hooks/useOpenUnsafeLink.tsx:72 msgid "URL" msgstr "URL" @@ -5714,7 +5723,7 @@ msgstr "Переглянути на Dexie" #~ msgid "View on Hashgreen DEX" #~ msgstr "View on Hashgreen DEX" -#: src/components/nfts/NFTContextualActions.tsx:643 +#: src/components/nfts/NFTContextualActions.tsx:646 #: src/components/offers/OfferShareDialog.tsx:441 msgid "View on MintGarden" msgstr "Переглянути на MintGarden" @@ -5727,7 +5736,7 @@ msgstr "Переглянути на MintGarden" msgid "View on Offerpool" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:651 +#: src/components/nfts/NFTContextualActions.tsx:654 #: src/components/offers/OfferShareDialog.tsx:538 msgid "View on Spacescan.io" msgstr "Переглянути на Spacescan.io" @@ -5866,6 +5875,10 @@ msgstr "Попередження" msgid "Warning Threshold" msgstr "" +#: src/hooks/useOpenUnsafeLink.tsx:21 +msgid "Warning: Invalid URL" +msgstr "" + #: src/components/app/AppVersionWarning.tsx:30 msgid "Warning: Mismatched Versions" msgstr "" @@ -5875,7 +5888,7 @@ msgstr "" msgid "Warning: Verify that the offered CAT asset IDs match the asset IDs of the tokens you expect to receive." msgstr "Попередження: Переконайтеся, що запропоновані ідентифікатори активів CAT відповідають ідентифікаторам активів токенів, які ви очікуєте отримати." -#: src/hooks/useOpenUnsafeLink.tsx:30 +#: src/hooks/useOpenUnsafeLink.tsx:59 msgid "Warning: You're about to visit a website" msgstr "Попередження: Ви збираєтеся відвідати веб-сайт" diff --git a/packages/gui/src/locales/zh-CN/messages.po b/packages/gui/src/locales/zh-CN/messages.po index 47bc6f93ab..ef993089ee 100644 --- a/packages/gui/src/locales/zh-CN/messages.po +++ b/packages/gui/src/locales/zh-CN/messages.po @@ -44,134 +44,134 @@ msgid "Would you like to transfer {count} NFTs to a new owner?" msgstr "确定将 {count} 个NFT转移给一个新的所有者吗?" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "No" msgstr "否" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "Yes" msgstr "是" #. js-lingui-explicit-id -#: src/electron/main.tsx:511 +#: src/electron/main.tsx:522 msgid "Confirm" msgstr "确定" #. js-lingui-explicit-id -#: src/electron/main.tsx:513 +#: src/electron/main.tsx:524 msgid "Are you sure you want to quit?" msgstr "您确定要退出吗?" #. js-lingui-explicit-id -#: src/electron/main.tsx:518 +#: src/electron/main.tsx:529 msgid "Keep service running in the background" msgstr "保持服务在后台运行" #. js-lingui-explicit-id -#: src/electron/main.tsx:636 -#: src/electron/main.tsx:844 +#: src/electron/main.tsx:647 +#: src/electron/main.tsx:855 msgid "File" msgstr "文件" #. js-lingui-explicit-id -#: src/electron/main.tsx:644 +#: src/electron/main.tsx:655 msgid "Edit" msgstr "编辑" #. js-lingui-explicit-id -#: src/electron/main.tsx:676 +#: src/electron/main.tsx:687 msgid "View" msgstr "查看" #. js-lingui-explicit-id -#: src/electron/main.tsx:685 +#: src/electron/main.tsx:696 msgid "Developer" msgstr "开发者" #. js-lingui-explicit-id -#: src/electron/main.tsx:688 +#: src/electron/main.tsx:699 msgid "Developer Tools" msgstr "开发者工具" #. js-lingui-explicit-id -#: src/electron/main.tsx:696 +#: src/electron/main.tsx:707 msgid "Trigger Desktop Notification" msgstr "触发桌面通知" #. js-lingui-explicit-id -#: src/electron/main.tsx:725 +#: src/electron/main.tsx:736 msgid "Full Screen" msgstr "全屏" #. js-lingui-explicit-id -#: src/electron/main.tsx:732 +#: src/electron/main.tsx:743 msgid "Window" msgstr "窗口" #. js-lingui-explicit-id -#: src/electron/main.tsx:746 +#: src/electron/main.tsx:757 msgid "Help" msgstr "帮助" #. js-lingui-explicit-id -#: src/electron/main.tsx:750 +#: src/electron/main.tsx:761 msgid "Chia Blockchain Wiki" msgstr "Chia区块链百科" #. js-lingui-explicit-id -#: src/electron/main.tsx:756 +#: src/electron/main.tsx:767 msgid "Frequently Asked Questions" msgstr "常见问题解答" #. js-lingui-explicit-id -#: src/electron/main.tsx:762 +#: src/electron/main.tsx:773 msgid "Release Notes" msgstr "版本发布说明" #. js-lingui-explicit-id -#: src/electron/main.tsx:768 +#: src/electron/main.tsx:779 msgid "Contribute on GitHub" msgstr "在 GitHub 上贡献" #. js-lingui-explicit-id -#: src/electron/main.tsx:777 +#: src/electron/main.tsx:788 msgid "Report an Issue..." msgstr "报告问题" #. js-lingui-explicit-id -#: src/electron/main.tsx:783 +#: src/electron/main.tsx:794 msgid "Chat on Discord" msgstr "在Discord上讨论" #. js-lingui-explicit-id -#: src/electron/main.tsx:789 +#: src/electron/main.tsx:800 msgid "Follow on Twitter" msgstr "关注我们的Twitter" #. js-lingui-explicit-id -#: src/electron/main.tsx:801 +#: src/electron/main.tsx:812 msgid "Chia" msgstr "Chia" #. js-lingui-explicit-id -#: src/electron/main.tsx:804 -#: src/electron/main.tsx:897 +#: src/electron/main.tsx:815 +#: src/electron/main.tsx:908 msgid "About Chia Blockchain" msgstr "关于Chia区块链项目" #. js-lingui-explicit-id -#: src/electron/main.tsx:810 +#: src/electron/main.tsx:821 msgid "Check for Updates..." msgstr "检查更新..." #. js-lingui-explicit-id -#: src/electron/main.tsx:858 +#: src/electron/main.tsx:869 msgid "Speech" msgstr "演说" #. js-lingui-explicit-id -#: src/electron/main.tsx:903 +#: src/electron/main.tsx:914 msgid "Check for updates..." msgstr "检查更新..." @@ -302,6 +302,10 @@ msgstr "已启用 - 如果可用,使用指定索引的设备;否则报错。 msgid "*Usually it takes seconds to complete restarting." msgstr "*通常情况下,完成重启需要几秒钟。" +#: src/components/notification/NotificationAnnouncementDialog.tsx:39 +msgid "##### Redacted for security reason #####" +msgstr "" + #: src/components/plot/overview/PlotOverviewPlots.tsx:42 msgid "+ Add a Plot" msgstr "+ 添加图块" @@ -364,7 +368,7 @@ msgstr "操作" #: src/components/farm/FarmFullNodeConnections.tsx:54 #: src/components/farm/FarmYourHarvesterNetwork.tsx:54 #: src/components/fullNode/FullNodeConnections.tsx:65 -#: src/components/nfts/NFTContextualActions.tsx:587 +#: src/components/nfts/NFTContextualActions.tsx:590 #: src/components/offers2/OfferIncomingTable.tsx:111 msgid "Actions" msgstr "操作" @@ -553,7 +557,7 @@ msgstr "缺失提交(signage points,SPs) 的增加表明可能与全节点网 msgid "An NFT's provenance is a complete record of its ownership history. It provides a direct lineage that connects everyone who has owned the NFT, all the way back to the original artist. This helps to verify that the NFT is authentic." msgstr "一个NFT的起源是其所有权历史的完整记录。 它提供了一个连接了过去拥有此NFT的每一个人的线,直到原艺术家。 这有助于验证NFT的真实性。" -#: src/components/notification/NotificationAnnouncementDialog.tsx:35 +#: src/components/notification/NotificationAnnouncementDialog.tsx:49 msgid "Announcement" msgstr "通知" @@ -779,7 +783,7 @@ msgstr "浏览" #: src/components/nfts/NFTBurnDialog.tsx:90 #: src/components/nfts/NFTBurnDialog.tsx:185 -#: src/components/nfts/NFTContextualActions.tsx:525 +#: src/components/nfts/NFTContextualActions.tsx:528 msgid "Burn" msgstr "销毁" @@ -834,7 +838,7 @@ msgstr "缓存大小(GB)" #: src/components/signVerify/VerifyMessage.tsx:271 #: src/components/vcs/VCEditTitle.tsx:76 #: src/components/vcs/VCRevokeDialog.tsx:28 -#: src/hooks/useOpenUnsafeLink.tsx:33 +#: src/hooks/useOpenUnsafeLink.tsx:62 msgid "Cancel" msgstr "取消" @@ -996,7 +1000,7 @@ msgstr "单击删除图标只会从列表中移除文件夹,而不会删除文 #: src/components/nfts/MultipleDownloadDialog.tsx:116 #: src/components/nfts/NFTMoveToProfileDialog.tsx:328 #: src/components/nfts/NFTTransferAction.tsx:166 -#: src/components/notification/NotificationAnnouncementDialog.tsx:75 +#: src/components/notification/NotificationAnnouncementDialog.tsx:87 #: src/components/notification/NotificationSendDialog.tsx:308 #: src/components/offers/ConfirmOfferCancellation.tsx:126 #: src/components/offers/OfferShareDialog.tsx:373 @@ -1569,7 +1573,7 @@ msgid "Display sharing options after creating a new offer" msgstr "在创建新报价后显示分享选项" #: src/components/offers/OfferShareDialog.tsx:945 -#: src/hooks/useOpenUnsafeLink.tsx:64 +#: src/hooks/useOpenUnsafeLink.tsx:93 msgid "Do not show this dialog again" msgstr "不再显示此对话框" @@ -2112,7 +2116,7 @@ msgstr "使图像适应卡片" #~ msgid "Frequently Asked Questions" #~ msgstr "Frequently Asked Questions" -#: src/components/notification/NotificationAnnouncementDialog.tsx:44 +#: src/components/notification/NotificationAnnouncementDialog.tsx:58 msgid "From" msgstr "来自" @@ -2343,7 +2347,7 @@ msgstr "隐藏  <0/>" #~ msgid "Hidden ({0})" #~ msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Hide" msgstr "隐藏" @@ -2838,7 +2842,7 @@ msgstr "成员资格" msgid "Memos" msgstr "备注" -#: src/components/notification/NotificationAnnouncementDialog.tsx:53 +#: src/components/notification/NotificationAnnouncementDialog.tsx:67 #: src/components/signVerify/SignMessage.tsx:200 #: src/components/signVerify/VerifyMessage.tsx:207 #: src/constants/WalletConnectCommands.tsx:184 @@ -3533,7 +3537,7 @@ msgstr "独一无二的收藏品资产" msgid "Open in Browser" msgstr "在浏览器中打开" -#: src/hooks/useOpenUnsafeLink.tsx:31 +#: src/hooks/useOpenUnsafeLink.tsx:60 msgid "Open Link" msgstr "打开链接" @@ -3724,7 +3728,7 @@ msgstr "待确认" msgid "Pending removal" msgstr "等待移除" -#: src/hooks/useOpenUnsafeLink.tsx:38 +#: src/hooks/useOpenUnsafeLink.tsx:67 msgid "Please check the following link to verify the site you are going to visit. Proceed at your own risk." msgstr "请检查以下链接以验证您要访问的站点。请自行承担操作风险。" @@ -4215,7 +4219,7 @@ msgstr "推荐" msgid "Recursive Plot Scan" msgstr "递归图块扫描" -#: src/components/nfts/NFTContextualActions.tsx:566 +#: src/components/nfts/NFTContextualActions.tsx:569 msgid "Refresh NFT data" msgstr "刷新 NFT 数据" @@ -4689,7 +4693,7 @@ msgstr "分享到Spacescan.io" #~ msgid "Share Privately" #~ msgstr "Share Privately" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Show" msgstr "显示" @@ -5233,6 +5237,10 @@ msgstr "此联合耕种农田绑定了其它密钥。你仍然可以为此联合 msgid "This table shows you the last time your farm attempted to win a block challenge. <0>Learn more" msgstr "这个表格里面显示的是你的农场尝试过的区块挑战. <0>了解更多" +#: src/hooks/useOpenUnsafeLink.tsx:24 +msgid "This type of the URL is not allowed to open for security reasons." +msgstr "" + #: src/components/settings/SettingsIntegration.tsx:398 msgid "This will reset all previously granted permissions across all Dapps that have been connected to. After resetting you will be asked to grant permission again." msgstr "这将重置与所有已连接的 Dapp 相关的先前授予的权限。重置后,将要求重新授予权限。" @@ -5583,9 +5591,10 @@ msgstr "等待更新状态" msgid "Uris" msgstr "网址" -#: src/components/notification/NotificationAnnouncementDialog.tsx:62 +#: src/components/notification/NotificationAnnouncementDialog.tsx:76 #: src/constants/WalletConnectCommands.tsx:964 -#: src/hooks/useOpenUnsafeLink.tsx:43 +#: src/hooks/useOpenUnsafeLink.tsx:27 +#: src/hooks/useOpenUnsafeLink.tsx:72 msgid "URL" msgstr "URL" @@ -5718,7 +5727,7 @@ msgstr "在 Dexie 上查看" #~ msgid "View on Hashgreen DEX" #~ msgstr "View on Hashgreen DEX" -#: src/components/nfts/NFTContextualActions.tsx:643 +#: src/components/nfts/NFTContextualActions.tsx:646 #: src/components/offers/OfferShareDialog.tsx:441 msgid "View on MintGarden" msgstr "在 MintGarden 上查看" @@ -5731,7 +5740,7 @@ msgstr "在 MintGarden 上查看" msgid "View on Offerpool" msgstr "在Offerpool上查看" -#: src/components/nfts/NFTContextualActions.tsx:651 +#: src/components/nfts/NFTContextualActions.tsx:654 #: src/components/offers/OfferShareDialog.tsx:538 msgid "View on Spacescan.io" msgstr "在 Spacescan.io 上查看" @@ -5870,6 +5879,10 @@ msgstr "警告" msgid "Warning Threshold" msgstr "警告阈值" +#: src/hooks/useOpenUnsafeLink.tsx:21 +msgid "Warning: Invalid URL" +msgstr "" + #: src/components/app/AppVersionWarning.tsx:30 msgid "Warning: Mismatched Versions" msgstr "警告:不匹配的版本" @@ -5879,7 +5892,7 @@ msgstr "警告:不匹配的版本" msgid "Warning: Verify that the offered CAT asset IDs match the asset IDs of the tokens you expect to receive." msgstr "警告:验证提供的资产代币ID是否与您预期收到的资产代币ID相匹配。" -#: src/hooks/useOpenUnsafeLink.tsx:30 +#: src/hooks/useOpenUnsafeLink.tsx:59 msgid "Warning: You're about to visit a website" msgstr "警告:您即将访问一个网站" diff --git a/packages/gui/src/locales/zh-TW/messages.po b/packages/gui/src/locales/zh-TW/messages.po index cbbd1997bd..0ede09cf57 100644 --- a/packages/gui/src/locales/zh-TW/messages.po +++ b/packages/gui/src/locales/zh-TW/messages.po @@ -44,134 +44,134 @@ msgid "Would you like to transfer {count} NFTs to a new owner?" msgstr "你要將 {count} 張 NFT 轉移給新擁有者嗎?" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "No" msgstr "否" #. js-lingui-explicit-id -#: src/electron/main.tsx:510 +#: src/electron/main.tsx:521 msgid "Yes" msgstr "是" #. js-lingui-explicit-id -#: src/electron/main.tsx:511 +#: src/electron/main.tsx:522 msgid "Confirm" msgstr "確認" #. js-lingui-explicit-id -#: src/electron/main.tsx:513 +#: src/electron/main.tsx:524 msgid "Are you sure you want to quit?" msgstr "您確定要離開嗎?" #. js-lingui-explicit-id -#: src/electron/main.tsx:518 +#: src/electron/main.tsx:529 msgid "Keep service running in the background" msgstr "" #. js-lingui-explicit-id -#: src/electron/main.tsx:636 -#: src/electron/main.tsx:844 +#: src/electron/main.tsx:647 +#: src/electron/main.tsx:855 msgid "File" msgstr "檔案" #. js-lingui-explicit-id -#: src/electron/main.tsx:644 +#: src/electron/main.tsx:655 msgid "Edit" msgstr "編輯" #. js-lingui-explicit-id -#: src/electron/main.tsx:676 +#: src/electron/main.tsx:687 msgid "View" msgstr "檢視" #. js-lingui-explicit-id -#: src/electron/main.tsx:685 +#: src/electron/main.tsx:696 msgid "Developer" msgstr "開發者" #. js-lingui-explicit-id -#: src/electron/main.tsx:688 +#: src/electron/main.tsx:699 msgid "Developer Tools" msgstr "開發者工具" #. js-lingui-explicit-id -#: src/electron/main.tsx:696 +#: src/electron/main.tsx:707 msgid "Trigger Desktop Notification" msgstr "觸發桌面通知" #. js-lingui-explicit-id -#: src/electron/main.tsx:725 +#: src/electron/main.tsx:736 msgid "Full Screen" msgstr "全畫面" #. js-lingui-explicit-id -#: src/electron/main.tsx:732 +#: src/electron/main.tsx:743 msgid "Window" msgstr "視窗" #. js-lingui-explicit-id -#: src/electron/main.tsx:746 +#: src/electron/main.tsx:757 msgid "Help" msgstr "幫助" #. js-lingui-explicit-id -#: src/electron/main.tsx:750 +#: src/electron/main.tsx:761 msgid "Chia Blockchain Wiki" msgstr "Chia 區塊鏈維基" #. js-lingui-explicit-id -#: src/electron/main.tsx:756 +#: src/electron/main.tsx:767 msgid "Frequently Asked Questions" msgstr "常見問題" #. js-lingui-explicit-id -#: src/electron/main.tsx:762 +#: src/electron/main.tsx:773 msgid "Release Notes" msgstr "發行說明" #. js-lingui-explicit-id -#: src/electron/main.tsx:768 +#: src/electron/main.tsx:779 msgid "Contribute on GitHub" msgstr "在 GitHub 上貢獻" #. js-lingui-explicit-id -#: src/electron/main.tsx:777 +#: src/electron/main.tsx:788 msgid "Report an Issue..." msgstr "回報問題..." #. js-lingui-explicit-id -#: src/electron/main.tsx:783 +#: src/electron/main.tsx:794 msgid "Chat on Discord" msgstr "在 Discord 上聊天" #. js-lingui-explicit-id -#: src/electron/main.tsx:789 +#: src/electron/main.tsx:800 msgid "Follow on Twitter" msgstr "Twitter 上追隨" #. js-lingui-explicit-id -#: src/electron/main.tsx:801 +#: src/electron/main.tsx:812 msgid "Chia" msgstr "奇亞" #. js-lingui-explicit-id -#: src/electron/main.tsx:804 -#: src/electron/main.tsx:897 +#: src/electron/main.tsx:815 +#: src/electron/main.tsx:908 msgid "About Chia Blockchain" msgstr "關於 Chia 區塊鏈" #. js-lingui-explicit-id -#: src/electron/main.tsx:810 +#: src/electron/main.tsx:821 msgid "Check for Updates..." msgstr "檢查更新..." #. js-lingui-explicit-id -#: src/electron/main.tsx:858 +#: src/electron/main.tsx:869 msgid "Speech" msgstr "語音" #. js-lingui-explicit-id -#: src/electron/main.tsx:903 +#: src/electron/main.tsx:914 msgid "Check for updates..." msgstr "檢查更新..." @@ -302,6 +302,10 @@ msgstr "" msgid "*Usually it takes seconds to complete restarting." msgstr "" +#: src/components/notification/NotificationAnnouncementDialog.tsx:39 +msgid "##### Redacted for security reason #####" +msgstr "" + #: src/components/plot/overview/PlotOverviewPlots.tsx:42 msgid "+ Add a Plot" msgstr "+新增一個耕地" @@ -364,7 +368,7 @@ msgstr "動作" #: src/components/farm/FarmFullNodeConnections.tsx:54 #: src/components/farm/FarmYourHarvesterNetwork.tsx:54 #: src/components/fullNode/FullNodeConnections.tsx:65 -#: src/components/nfts/NFTContextualActions.tsx:587 +#: src/components/nfts/NFTContextualActions.tsx:590 #: src/components/offers2/OfferIncomingTable.tsx:111 msgid "Actions" msgstr "動作" @@ -553,7 +557,7 @@ msgstr "" msgid "An NFT's provenance is a complete record of its ownership history. It provides a direct lineage that connects everyone who has owned the NFT, all the way back to the original artist. This helps to verify that the NFT is authentic." msgstr "NFT 的來源是它的所有權歷史的完整記錄。它提供了一條直接的血統,將所有擁有過該 NFT 的人連接起來,直至原始藝術家。這有助於驗證 NFT 的真實性。" -#: src/components/notification/NotificationAnnouncementDialog.tsx:35 +#: src/components/notification/NotificationAnnouncementDialog.tsx:49 msgid "Announcement" msgstr "公告" @@ -779,7 +783,7 @@ msgstr "瀏覽" #: src/components/nfts/NFTBurnDialog.tsx:90 #: src/components/nfts/NFTBurnDialog.tsx:185 -#: src/components/nfts/NFTContextualActions.tsx:525 +#: src/components/nfts/NFTContextualActions.tsx:528 msgid "Burn" msgstr "燒毀" @@ -834,7 +838,7 @@ msgstr "快取大小(GB)" #: src/components/signVerify/VerifyMessage.tsx:271 #: src/components/vcs/VCEditTitle.tsx:76 #: src/components/vcs/VCRevokeDialog.tsx:28 -#: src/hooks/useOpenUnsafeLink.tsx:33 +#: src/hooks/useOpenUnsafeLink.tsx:62 msgid "Cancel" msgstr "取消" @@ -996,7 +1000,7 @@ msgstr "" #: src/components/nfts/MultipleDownloadDialog.tsx:116 #: src/components/nfts/NFTMoveToProfileDialog.tsx:328 #: src/components/nfts/NFTTransferAction.tsx:166 -#: src/components/notification/NotificationAnnouncementDialog.tsx:75 +#: src/components/notification/NotificationAnnouncementDialog.tsx:87 #: src/components/notification/NotificationSendDialog.tsx:308 #: src/components/offers/ConfirmOfferCancellation.tsx:126 #: src/components/offers/OfferShareDialog.tsx:373 @@ -1569,7 +1573,7 @@ msgid "Display sharing options after creating a new offer" msgstr "在建立新的報價後顯示分享選項" #: src/components/offers/OfferShareDialog.tsx:945 -#: src/hooks/useOpenUnsafeLink.tsx:64 +#: src/hooks/useOpenUnsafeLink.tsx:93 msgid "Do not show this dialog again" msgstr "不要再顯示這個對話窗" @@ -2112,7 +2116,7 @@ msgstr "將圖片調整至卡片大小" #~ msgid "Frequently Asked Questions" #~ msgstr "Frequently Asked Questions" -#: src/components/notification/NotificationAnnouncementDialog.tsx:44 +#: src/components/notification/NotificationAnnouncementDialog.tsx:58 msgid "From" msgstr "來自" @@ -2343,7 +2347,7 @@ msgstr "隱藏  <0/>" #~ msgid "Hidden ({0})" #~ msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Hide" msgstr "隱藏" @@ -2834,7 +2838,7 @@ msgstr "會員身份" msgid "Memos" msgstr "備註" -#: src/components/notification/NotificationAnnouncementDialog.tsx:53 +#: src/components/notification/NotificationAnnouncementDialog.tsx:67 #: src/components/signVerify/SignMessage.tsx:200 #: src/components/signVerify/VerifyMessage.tsx:207 #: src/constants/WalletConnectCommands.tsx:184 @@ -3529,7 +3533,7 @@ msgstr "獨一無二的收藏品資產" msgid "Open in Browser" msgstr "在瀏覽器中打開" -#: src/hooks/useOpenUnsafeLink.tsx:31 +#: src/hooks/useOpenUnsafeLink.tsx:60 msgid "Open Link" msgstr "打開連結" @@ -3720,7 +3724,7 @@ msgstr "等待確認" msgid "Pending removal" msgstr "等待移除" -#: src/hooks/useOpenUnsafeLink.tsx:38 +#: src/hooks/useOpenUnsafeLink.tsx:67 msgid "Please check the following link to verify the site you are going to visit. Proceed at your own risk." msgstr "請檢查以下連結以驗證您要訪問的網站。請自行承擔風險。" @@ -4211,7 +4215,7 @@ msgstr "建議" msgid "Recursive Plot Scan" msgstr "" -#: src/components/nfts/NFTContextualActions.tsx:566 +#: src/components/nfts/NFTContextualActions.tsx:569 msgid "Refresh NFT data" msgstr "刷新NFT資料" @@ -4685,7 +4689,7 @@ msgstr "分享在Spacescan.io" #~ msgid "Share Privately" #~ msgstr "Share Privately" -#: src/components/nfts/NFTContextualActions.tsx:493 +#: src/components/nfts/NFTContextualActions.tsx:496 msgid "Show" msgstr "顯示" @@ -5229,6 +5233,10 @@ msgstr "此農場分配給其他的金鑰。你仍然可以為此農場建立耕 msgid "This table shows you the last time your farm attempted to win a block challenge. <0>Learn more" msgstr "此表顯示您的農場最後一次嘗試贏得區塊挑戰的時間。<0>了解更多" +#: src/hooks/useOpenUnsafeLink.tsx:24 +msgid "This type of the URL is not allowed to open for security reasons." +msgstr "" + #: src/components/settings/SettingsIntegration.tsx:398 msgid "This will reset all previously granted permissions across all Dapps that have been connected to. After resetting you will be asked to grant permission again." msgstr "這將重置您之前在所有連接過的 Dapps 上授予的所有權限。重置後,您將被要求再次授予權限。" @@ -5579,9 +5587,10 @@ msgstr "更新等待中" msgid "Uris" msgstr "Uris" -#: src/components/notification/NotificationAnnouncementDialog.tsx:62 +#: src/components/notification/NotificationAnnouncementDialog.tsx:76 #: src/constants/WalletConnectCommands.tsx:964 -#: src/hooks/useOpenUnsafeLink.tsx:43 +#: src/hooks/useOpenUnsafeLink.tsx:27 +#: src/hooks/useOpenUnsafeLink.tsx:72 msgid "URL" msgstr "網址" @@ -5714,7 +5723,7 @@ msgstr "在 Dexie 上檢視" #~ msgid "View on Hashgreen DEX" #~ msgstr "View on Hashgreen DEX" -#: src/components/nfts/NFTContextualActions.tsx:643 +#: src/components/nfts/NFTContextualActions.tsx:646 #: src/components/offers/OfferShareDialog.tsx:441 msgid "View on MintGarden" msgstr "在 MintGarden 上檢視" @@ -5727,7 +5736,7 @@ msgstr "在 MintGarden 上檢視" msgid "View on Offerpool" msgstr "在 Offerpool 上檢視" -#: src/components/nfts/NFTContextualActions.tsx:651 +#: src/components/nfts/NFTContextualActions.tsx:654 #: src/components/offers/OfferShareDialog.tsx:538 msgid "View on Spacescan.io" msgstr "在 Spacescan.io 上檢視" @@ -5866,6 +5875,10 @@ msgstr "警告" msgid "Warning Threshold" msgstr "" +#: src/hooks/useOpenUnsafeLink.tsx:21 +msgid "Warning: Invalid URL" +msgstr "" + #: src/components/app/AppVersionWarning.tsx:30 msgid "Warning: Mismatched Versions" msgstr "警告:版本不匹配" @@ -5875,7 +5888,7 @@ msgstr "警告:版本不匹配" msgid "Warning: Verify that the offered CAT asset IDs match the asset IDs of the tokens you expect to receive." msgstr "警告:請驗證所提供的CAT資產ID是否與您預期收到的代幣ID匹配。" -#: src/hooks/useOpenUnsafeLink.tsx:30 +#: src/hooks/useOpenUnsafeLink.tsx:59 msgid "Warning: You're about to visit a website" msgstr "警告:您即將訪問一個網站"