From b7364342be16c6ea6acda17933175d68a5baabee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bego=C3=B1a=20Alvarez?= Date: Thu, 9 May 2024 10:34:56 +0200 Subject: [PATCH 01/11] chore: bump version to 2.1.15 --- packages/desktop/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/desktop/package.json b/packages/desktop/package.json index c1d5d6f609f..c98c2a338b2 100644 --- a/packages/desktop/package.json +++ b/packages/desktop/package.json @@ -1,7 +1,7 @@ { "name": "desktop", "productName": "Firefly Shimmer", - "version": "2.1.15-beta-1", + "version": "2.1.15", "description": "Official wallet application of Shimmer", "main": "public/build/main.js", "repository": "git@github.com:iotaledger/firefly.git", From 03867bcaffbb248aea9e3bffe37da3209c543d24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bego=C3=B1a=20=C3=81lvarez=20de=20la=20Cruz?= Date: Tue, 4 Jun 2024 06:08:53 -0600 Subject: [PATCH 02/11] feat: add support for the IOTA EVM (#8293) * feat: add support for the IOTA EVM * feat: add iota evm chain data * chore: rename IOTAEVM to IOTA EVM --- .../desktop/components/modals/AccountActionsMenu.svelte | 2 +- .../lib/core/layer-2/enums/destination-network.enum.ts | 1 + .../constants/default-chain-configurations.constant.ts | 9 +++++++++ packages/shared/lib/core/network/enums/chain-id.enum.ts | 1 + .../profile/actions/profiles/checkAndMigrateProfiles.ts | 9 ++++++++- .../core/profile/constants/profile-version.constant.ts | 2 +- 6 files changed, 21 insertions(+), 3 deletions(-) diff --git a/packages/desktop/components/modals/AccountActionsMenu.svelte b/packages/desktop/components/modals/AccountActionsMenu.svelte index 8a698474e5e..ed713602119 100644 --- a/packages/desktop/components/modals/AccountActionsMenu.svelte +++ b/packages/desktop/components/modals/AccountActionsMenu.svelte @@ -84,7 +84,7 @@ onClick={onViewAddressHistoryClick} /> {/if} - {#if $activeProfile?.network?.id === NetworkId.Shimmer || $activeProfile?.network?.id === NetworkId.ShimmerTestnet || $activeProfile?.network?.id === NetworkId.IotaTestnet} + {#if $activeProfile?.network?.id === NetworkId.Shimmer || $activeProfile?.network?.id === NetworkId.ShimmerTestnet || $activeProfile?.network?.id === NetworkId.IotaTestnet || $activeProfile?.network?.id === NetworkId.Iota} {/if} diff --git a/packages/shared/lib/core/layer-2/enums/destination-network.enum.ts b/packages/shared/lib/core/layer-2/enums/destination-network.enum.ts index d038d7745f2..c65ffcdc0de 100644 --- a/packages/shared/lib/core/layer-2/enums/destination-network.enum.ts +++ b/packages/shared/lib/core/layer-2/enums/destination-network.enum.ts @@ -3,4 +3,5 @@ export enum DestinationNetwork { Shimmer = 'Shimmer', ShimmerEvm = 'ShimmerEVM', ShimmerEvmTestnet = 'ShimmerEVM Testnet', + IOTAEVM = 'IOTA EVM', } diff --git a/packages/shared/lib/core/network/constants/default-chain-configurations.constant.ts b/packages/shared/lib/core/network/constants/default-chain-configurations.constant.ts index 6adfb636f6a..49088438576 100644 --- a/packages/shared/lib/core/network/constants/default-chain-configurations.constant.ts +++ b/packages/shared/lib/core/network/constants/default-chain-configurations.constant.ts @@ -22,6 +22,15 @@ export const DEFAULT_CHAIN_CONFIGURATIONS: Readonly<{ [id in NetworkId]?: ChainM 'https://api.evm.testnet.shimmer.network/v1/chains/rms1ppp00k5mmd2m8my8ukkp58nd3rskw6rx8l09aj35984k74uuc5u2cywn3ex', archiveEndpoint: 'https://archive.evm.testnet.shimmer.network', }, + [NetworkId.Iota]: { + type: ChainType.Iscp, + name: DestinationNetwork.IOTAEVM, + chainId: ChainId.IOTAEVM, + aliasAddress: 'iota1pzt3mstq6khgc3tl0mwuzk3eqddkryqnpdxmk4nr25re2466uxwm28qqxu5', + iscpEndpoint: + 'https://api.evm.iotaledger.net/v1/chains/iota1pzt3mstq6khgc3tl0mwuzk3eqddkryqnpdxmk4nr25re2466uxwm28qqxu5', + archiveEndpoint: 'https://archive.evm.iotaledger.net', + }, [NetworkId.IotaTestnet]: { type: ChainType.Iscp, name: DestinationNetwork.IotaEvmTestnet, diff --git a/packages/shared/lib/core/network/enums/chain-id.enum.ts b/packages/shared/lib/core/network/enums/chain-id.enum.ts index 23d91da4b5b..3de22bcc19e 100644 --- a/packages/shared/lib/core/network/enums/chain-id.enum.ts +++ b/packages/shared/lib/core/network/enums/chain-id.enum.ts @@ -2,5 +2,6 @@ export enum ChainId { Layer1 = 0, ShimmerEVM = 148, ShimmerEVMTestnet = 1073, + IOTAEVM = 8822, IotaEVMTestnet = 1075, } diff --git a/packages/shared/lib/core/profile/actions/profiles/checkAndMigrateProfiles.ts b/packages/shared/lib/core/profile/actions/profiles/checkAndMigrateProfiles.ts index 8dcbdbae95f..e34742543ac 100644 --- a/packages/shared/lib/core/profile/actions/profiles/checkAndMigrateProfiles.ts +++ b/packages/shared/lib/core/profile/actions/profiles/checkAndMigrateProfiles.ts @@ -74,6 +74,7 @@ const persistedProfileMigrationsMap: Record Date: Mon, 24 Jun 2024 10:35:04 +0200 Subject: [PATCH 03/11] chore(deps-dev): bump ts-node from 10.9.1 to 10.9.2 (#8512) Bumps [ts-node](https://github.com/TypeStrong/ts-node) from 10.9.1 to 10.9.2. - [Release notes](https://github.com/TypeStrong/ts-node/releases) - [Changelog](https://github.com/TypeStrong/ts-node/blob/main/development-docs/release-template.md) - [Commits](https://github.com/TypeStrong/ts-node/compare/v10.9.1...v10.9.2) --- updated-dependencies: - dependency-name: ts-node dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- packages/desktop/package.json | 2 +- yarn.lock | 45 +++++++++++++++++++++++++++-------- 2 files changed, 36 insertions(+), 11 deletions(-) diff --git a/packages/desktop/package.json b/packages/desktop/package.json index 10f89cbe27e..8039ad01c39 100644 --- a/packages/desktop/package.json +++ b/packages/desktop/package.json @@ -56,7 +56,7 @@ "node-loader": "^2.0.0", "npm-run-all": "^4.1.5", "postcss-url": "^10.1.2", - "ts-node": "^10.9.1", + "ts-node": "^10.9.2", "typescript": "^5.0.3", "webpack": "^5.89.0", "webpack-cli": "^5.1.4", diff --git a/yarn.lock b/yarn.lock index fe7cc9e2821..0802020c896 100644 --- a/yarn.lock +++ b/yarn.lock @@ -6447,9 +6447,9 @@ npm-run-path@^4.0.1: path-key "^3.0.0" nwsapi@^2.2.1, nwsapi@^2.2.2: - version "2.2.9" - resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.9.tgz#7f3303218372db2e9f27c27766bcfc59ae7e61c6" - integrity sha512-2f3F0SEEer8bBu0dsNCFF50N0cTThV1nWFYcEYFZttdW0lDAoybv9cQoK7X7/68Z89S7FoRrVjP1LPX4XRf9vg== + version "2.2.10" + resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.10.tgz#0b77a68e21a0b483db70b11fad055906e867cda8" + integrity sha512-QK0sRs7MKv0tKe1+5uZIQk/C8XGza4DAnztJG8iD+TpJIORARrCxczA738awHrZoHeTjSSoHqao2teO0dC/gFQ== object-assign@^4.0.1: version "4.1.1" @@ -7885,7 +7885,16 @@ string-length@^4.0.1: char-regex "^1.0.2" strip-ansi "^6.0.0" -"string-width-cjs@npm:string-width@^4.2.0", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: +"string-width-cjs@npm:string-width@^4.2.0": + version "4.2.3" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.1" + +string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: version "4.2.3" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== @@ -7953,7 +7962,14 @@ string_decoder@~1.1.1: dependencies: safe-buffer "~5.1.0" -"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1: +"strip-ansi-cjs@npm:strip-ansi@^6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + +strip-ansi@^6.0.0, strip-ansi@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== @@ -8399,10 +8415,10 @@ ts-interface-checker@^0.1.9: resolved "https://registry.yarnpkg.com/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz#784fd3d679722bc103b1b4b8030bcddb5db2a699" integrity sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA== -ts-node@^10.9.1: - version "10.9.1" - resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.9.1.tgz#e73de9102958af9e1f0b168a6ff320e25adcff4b" - integrity sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw== +ts-node@^10.9.2: + version "10.9.2" + resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.9.2.tgz#70f021c9e185bccdca820e26dc413805c101c71f" + integrity sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ== dependencies: "@cspotcode/source-map-support" "^0.8.0" "@tsconfig/node10" "^1.0.7" @@ -8989,7 +9005,7 @@ wildcard@^2.0.0: resolved "https://registry.yarnpkg.com/wildcard/-/wildcard-2.0.1.tgz#5ab10d02487198954836b6349f74fff961e10f67" integrity sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ== -"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0: +"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0": version "7.0.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== @@ -9007,6 +9023,15 @@ wrap-ansi@^6.2.0: string-width "^4.1.0" strip-ansi "^6.0.0" +wrap-ansi@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + wrap-ansi@^8.1.0: version "8.1.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214" From 0902bc09e5c7b05cb16aacda0ea73941809f586d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 24 Jun 2024 10:37:00 +0200 Subject: [PATCH 04/11] New Crowdin translations by Github Action (#8537) Co-authored-by: Crowdin Bot --- packages/shared/locales/tr.json | 1960 +++++++++++++++---------------- 1 file changed, 980 insertions(+), 980 deletions(-) diff --git a/packages/shared/locales/tr.json b/packages/shared/locales/tr.json index b7b135419ed..b4645d600bf 100644 --- a/packages/shared/locales/tr.json +++ b/packages/shared/locales/tr.json @@ -3,187 +3,187 @@ "onboarding": { "appSetup": { "welcome": { - "title": "Send, Receive & Manage your {network} tokens", - "body": "Firefly is the official wallet software for {network}." + "title": "IOTA tokenlerinizi Gönderin, Alın ve Yönetin", + "body": "Firefly, {network} için resmi cüzdan yazılımıdır." }, "legal": { - "title": "Privacy Policy & Terms of Service", - "body": "Please review the Privacy Policy and Terms of Service.", - "checkbox": "I've read and I accept the Privacy Policy and Terms of Service" + "title": "Gizlilik Politikası ve Hizmet Şartları", + "body": "Lütfen Gizlilik Politikası ve Hizmet Şartları'nı gözden geçirin.", + "checkbox": "Gizlilik Politikası ve Hizmet Şartları'nı okudum ve kabul ediyorum" }, "languageAndAppearance": { - "title": "Language & appearance", - "body": "Choose your language and theme." + "title": "Dil & Görünüm", + "body": "Lütfen dil ve tema seçiminizi belirtin." } }, "networkSetup": { "chooseProtocol": { - "title": "Choose protocol", - "body": "Set the protocol for your profile.", - "iota": "Default IOTA network", - "shimmer": "Experimental IOTA staging network" + "title": "Protokol seçiniz", + "body": "Profiliniz için protokolü ayarlayın.", + "iota": "Varsayılan IOTA Ağı", + "shimmer": "Deneysel IOTA evreleme ağı" }, "chooseNetwork": { - "title": "Choose network", - "body": "Set the network for your profile.", + "title": "Ağ'ı seçin", + "body": "Ağı profiliniz için ayarlayın.", "shimmer": { "title": "Shimmer", - "body": "Staging network for IOTA" + "body": "IOTA için Evreleme Ağı" }, "shimmerTestnet": { - "title": "Shimmer Testnet", - "body": "Public testnet network for Shimmer" + "title": "Shimmer Test ağı", + "body": "Shimmer için Public TestNet Ağı" }, "iota": { "title": "IOTA", - "body": "IOTA Mainnet" + "body": "IOTA Ana Ağı" }, "iotaTestnet": { - "title": "IOTA Testnet", - "body": "Public testnet network for Mainnet" + "title": "IOTA Test ağı", + "body": "Mainnet için Public TestNet Ağı" }, "iotaAlphanet": { "title": "IOTA Alphanet", "body": "IOTA Alphanet" }, "custom": { - "title": "Custom network", - "body": "Support for custom networks and/or nodes" + "title": "Özel Ağ", + "body": "Özel ağlar ve/veya düğümler için destek" } }, "setupCustomNetwork": { - "title": "Connect to a custom network or node", - "body": "Fill the form with the node information and connect to a custom network or node." + "title": "Özel bir ağa veya düğüme bağlan", + "body": "Formu düğüm bilgileriyle doldurun ve özel bir ağa veya düğüme bağlanın." } }, "profileSetup": { "setup": { - "title": "Set up {network, select, IOTA {an} Shimmer {a} Testnet {a} other {a}} {network} profile", - "body": "Select the appropriate method to set up your {network} profile." + "title": "{network, select,IOTA {bir} Shimmer {bir} Testnet {bir} other {bir}} {network} ağ profilini kurun", + "body": "{network} profilinizi kurmak için uygun yöntemi seçin." }, "setupNew": { - "title": "Create a profile", - "body": "You can choose a regular software wallet, or if you have a Ledger device, you can set up a hardware wallet.", + "title": "Bir profil oluştur", + "body": "Düzenli bir yazılım cüzdanını seçebilir veya bir Ledger cihazınız varsa donanım cüzdanı kurabilirsiniz.", "softwareAccount": { - "title": "Create a software profile", - "description": "Provides a Stronghold file and recovery phrase" + "title": "Bir yazılım profil oluşturun", + "description": "Güvenli depolama dosyası ve kurtarma ifadesi sağlar" }, "ledgerAccount": { - "title": "Create a hardware profile", - "description": "Ledger Nano S, Nano S Plus or Nano X required" + "title": "Bir donanım profili oluşturun", + "description": "Ledger Nano S, Nano S Plus veya Nano X gereklidir" } }, "setupRecovered": { - "title": "Recover {network} profile", - "body": "If you have an existing mnemonic or Stronghold backup file, you can import it here.", - "importMnemonic": "Use recovery phrase", - "importMnemonicDescription": "Enter your 24-word mnemonic phrase", - "importFile": "Use Stronghold backup", - "importFileDescription": "Import your Stronghold backup file", - "importLedger": "Use Ledger device", - "importLedgerDescription": "Restore from your Ledger Nano S, Nano S Plus or X device" + "title": "{network} profilini kurtar", + "body": "Mevcut bir kurtarma kelimesi veya Stronghold yedek dosyanız varsa, buraya aktarabilirsiniz.", + "importMnemonic": "Kurtarma ifadesini kullan", + "importMnemonicDescription": "24 kelimelik kurtarma ifadesini girin", + "importFile": "Stronghold yedek dosyasını kullanın", + "importFileDescription": "Stronghold yedek dosyanızı içe aktarın", + "importLedger": "Ledger cihazını kullanın", + "importLedgerDescription": "Ledger Nano S, Nano S Plus veya X cihazınızdan geri yükleyin" }, "setupClaimed": { - "title": "Claim Shimmer staking rewards", - "body": "Import your IOTA profile and claim your Shimmer staking rewards." + "title": "Shimmer staking ödüllerini talep edin", + "body": "IOTA profilinizi içe aktarın ve Shimmer staking ödüllerinizi talep edin." }, "enterName": { - "title": "Create your {network} profile", - "profileName": "Profile name", - "body1": "You can create multiple user profiles to organise your wallets and improve privacy.", + "title": "{network} profilinizi oluşturun", + "profileName": "Profil adı", + "body1": "Cüzdanlarınızı düzenlemek ve gizliliği artırmak için birden fazla kullanıcı profil oluşturabilirsiniz.", "body2": { - "first": "For now, let's start with your first profile name.", - "nonFirst": "For now, let's start with your profile name." + "first": "Şimdilik, ilk profil adınızla başlayalım.", + "nonFirst": "Şimdilik, profil adınızla başlayalım." }, - "addMore": "You can add more profiles later." + "addMore": "Daha sonra daha fazla profil ekleyebilirsiniz." } }, "strongholdSetup": { "setupStrongholdPassword": { - "title": "Create a password", - "body1": "You need a strong password to protect your funds. Use a combination of words, and avoid common phrases, names or dates.", - "body2": "It is recommended that you write down your password in your Recovery Kit." + "title": "Bir şifre oluşturun", + "body1": "Fonlarınızı korumak için güçlü bir şifre gereklidir. Kelime kombinasyonları kullanın ve yaygın ifadelerden, isimlerden veya tarihlerden kaçının.", + "body2": "Şifrenizi Kurtarma Kitinize yazmanız önerilir." } }, "storageProtectionSetup": { "setupPinProtection": { - "title": "Set up PIN code", - "body1": "Enter a 6-digit PIN below. You will be asked for your PIN to access your profile.", - "body2": "Use numbers only" + "title": "PIN kodunu ayarlayın", + "body1": "Aşağıya 6 haneli bir PIN girin. Profilinize erişmek için PIN'iniz istenecektir.", + "body2": "Sadece sayıları kullanın" } }, "profileBackup": { "backupMnemonic": { - "title": "Back up your recovery phrase", - "body1": "You will now be shown a recovery phrase. Write it down in your Recovery Kit.", - "body2": "Do not share your recovery phrase with anyone. It can be used to access your tokens from anywhere.", - "body3": "If you lose your recovery phrase, you may lose your funds." + "title": "Kurtarma ifadenizi yedekleyin", + "body1": "Şimdi size bir kurtarma ifadesi gösterilecek. Bu ifadeyi Kurtarma Kiti'nize yazın.", + "body2": "Kurtarma ifadenizi kimseyle paylaşmayın. Bu ifade, tokenlerinize herhangi bir yerden erişim sağlamak için kullanılabilir.", + "body3": "Kurtarma ifadenizi kaybederseniz, fonlarınızı kaybedebilirsiniz." }, "viewMnemonic": { - "title": "Recovery phrase", - "body1": "In your Recovery Kit, write down the words in the exact order shown.", - "body2": "Keep this private and safely stored.", - "body3": "It is important to have a written backup. Computers often fail and files can corrupt.", - "revealRecoveryPhrase": "Reveal recovery phrase", - "hideRecoveryPhrase": "Hide recovery phrase" + "title": "Kurtarma ifadesi", + "body1": "Kurtarma Kitinizde, kelimeleri tam olarak gösterildiği sırayla yazın.", + "body2": "Bunu gizli tutun ve güvenli bir şekilde saklayın.", + "body3": "Yazılı bir yedeklemenin olması önemlidir. Bilgisayarlar sık sık arızalanır ve dosyalar bozulabilir.", + "revealRecoveryPhrase": "Kurtarma ifadesini göster", + "hideRecoveryPhrase": "Kurtarma ifadesini gizle" }, "verifyMnemonic": { - "title": "Verify recovery phrase", - "body": "Let's check you wrote down the phrase correctly. Please select each word in numbered order. Tip: You can press the number next to the word in your keyboard to select it.", - "word": "Word", - "verified": "Recovery phrase verified", - "verifiedBody": "Remember to keep it private and safely stored." + "title": "Kurtarma ifadenizi doğrulayın", + "body": "Kurtarma ifadesini doğru yazıp yazmadığınızı kontrol edelim. Lütfen her kelimeyi numaralandırılmış sırayla seçin. İpucu: Klavyenizdeki sayıya basarak kelimeyi seçebilirsiniz.", + "word": "Kelime", + "verified": "Kurtarma ifadesi doğrulandı", + "verifiedBody": "Gizli ve güvenli bir şekilde saklamayı unutmayın." }, "backupStronghold": { - "title": "Back up to a Stronghold file", - "body1": "Enter your password to create a Stronghold backup of your profile. Your password is used to encrypt the backup file.", - "body2": "Reasons why digital backups are important:", - "reason1": "Easily recover your wallets without typing in your recovery phrase", - "reason2": "Import your wallets on other devices", - "reason3": "Recover your full transaction history" + "title": "Stronghold dosyasına yedekle", + "body1": "Profilinizin Stronghold yedeğini oluşturmak için şifrenizi girin. Şifreniz yedek dosyasını şifrelemek için kullanılacaktır.", + "body2": "Dijital yedeklemelerin önemli olmasının nedenleri:", + "reason1": "Kurtarma ifadenizi yazmanıza gerek kalmadan cüzdanlarınızı kolayca kurtarın", + "reason2": "Cüzdanlarınızı diğer cihazlara aktarın", + "reason3": "Tüm işlem geçmişinizi kurtarın" } }, "profileRecovery": { "importMnemonicPhrase": { - "title": "Enter your recovery phrase", - "body": "A recovery phrase is 24 words long, all lower case, with spaces between. This is used to recover existing Firefly profiles.", - "enter": "Enter your secret recovery phrase", - "phraseDetected": "24 word recovery phrase detected" + "title": "Kurtarma ifadenizi girin", + "body": "Kurtarma cümlesi 24 kelime uzunluğundadır, hepsi küçük harfle ve aralarında boşluklarla yazılır. Bu, mevcut Firefly profillerini kurtarmak için kullanılır.", + "enter": "Gizli kurtarma ifadenizi girin", + "phraseDetected": "24 kelime kurtarma cümlesi tespit edildi" }, "importStrongholdBackup": { - "title": "Import your Stronghold backup", - "body": "Import a Stronghold backup file to restore your profile." + "title": "Yedek Stronghold dosyanızı içe aktarın", + "body": "Profilinizi geri yüklemek için bir Stronghold yedek dosyası içe aktarın." }, "backupPassword": { - "body1": "Please enter your backup password.", - "body2": "This is the password you set when you first created your backup." + "body1": "Lütfen yedekleme şifrenizi girin.", + "body2": "Bu, yedeklemenizi ilk oluşturduğunuzda belirlediğiniz şifredir." }, "success": { - "title": "You have successfully recovered your backup", - "body": "You can now set up your new profile." + "title": "Yedeklemenizi başarıyla geri yüklediniz", + "body": "Artık yeni profilinizi oluşturabilirsiniz." } }, "shimmerClaiming": { "claimRewards": { - "title": "Your Shimmer staking rewards", - "body": "Check that your Shimmer staking rewards are correct. You may need to search multiple times to find your full balance." + "title": "Shimmer stake etme ödülleriniz", + "body": "Shimmer staking ödüllerinizin doğru olduğundan emin olun. Tam bakiyenizi bulmak için birkaç kez arama yapmanız gerekebilir." }, "success": { - "title": "Shimmer claimed", - "body": "You have successfully claimed your Shimmer tokens.", - "totalRewards": "Total rewards", - "successfullyFound": "Successfully found {amount}" + "title": "Shimmer talep edildi", + "body": "Shimmer token'larını başarıyla talep ettiniz.", + "totalRewards": "Toplam ödüller", + "successfullyFound": "Başarıyla {amount} bulundu" } }, "congratulations": { - "title": "Profile setup almost complete...", - "fundsMigrated": "Funds migrated", - "body": "Your new profile will be ready once the dashboard has successfully loaded.", - "ledgerHint": "Do not disconnect your Ledger device until the dashboard has finished loading.", - "softwareMigratedBody": "You have successfully migrated your funds to the new network", - "fireflyLedgerBody": "Your Ledger profile was successfully recovered and you can now continue.", - "trinityLedgerBody": "You have successfully migrated your Ledger to the new network.", - "exportMigration": "Export migration log and finish setup" + "title": "Profil kurulumu neredeyse tamamlandı...", + "fundsMigrated": "Bakiye taşındı", + "body": "Yeni profiliniz, gösterge paneli başarıyla yüklendikten sonra hazır olacaktır.", + "ledgerHint": "Gösterge paneli yükleme işlemi tamamlanana kadar Ledger cihazınızı çıkarmayın.", + "softwareMigratedBody": "Bakiyenizi başarılı bir şekilde yeni ağa aktardınız", + "fireflyLedgerBody": "Ledger profiliniz başarıyla kurtarıldı ve şimdi devam edebilirsiniz.", + "trinityLedgerBody": "Ledger'ınızı yeni ağa başarıyla taşıdınız.", + "exportMigration": "Taşıma kaydını dışa aktar ve yüklemeyi bitir" } }, "setupLedger": { @@ -195,10 +195,10 @@ "videoGuide": "Ledger geçişi video kılavuzu" }, "ledgerInstallationGuide": { - "title": "Have you installed the {network} app on your Ledger device?", - "body1": "Before you proceed, you must use Ledger Live to find and install the {network} app.", + "title": "Ledger cihazınıza {network} uygulamasını yüklediniz mi?", + "body1": "Devam etmeden önce, Ledger Live kullanarak {network} uygulamasını bulup yüklemeniz gerekmektedir.", "body2": "Ledger yazılımının güncel olduğundan emin olun. Önceden yüklenmiş tüm uygulamalar en son sürümlerine güncellenmelidir.", - "action": "Yes, I've installed the {network} app" + "action": "Evet, {network} uygulamasını yükledim" }, "importFromLedger": { "title": "Ledger'ınızı Geri Yükleyin veya Taşıyın", @@ -211,9 +211,9 @@ "connectLedger": { "title": "Ledger'ınızı Firefly'a bağlayın", "body": "Ledger cihazınızın Firefly tarafından bulunabilmesi için lütfen resmi Ledger Live uygulamasının kapalı olduğundan emin olunuz.", - "connect": "Connect your Ledger device", - "unlock": "Unlock your Ledger with its pin", - "openApp": "Open the {network} app on your Ledger", + "connect": "Ledger cihazınızı bağlayın", + "unlock": "Ledger'ınızın kilidini pin ile açın", + "openApp": "Ledger cihazınızda {network} uygulamasını açın", "tips": "Ledger'ınız bağlanmadığı durumlar için ipuçları" }, "restoreFromFireflyLedger": { @@ -228,7 +228,7 @@ "readMore": "Geçiş süreci nasıl olacak" }, "generateNewLedgerAddress": { - "title": "Generate new address", + "title": "Yeni adres oluştur", "body": "Firefly ile tokenlarınızı taşımak için yeni bir adres oluşturmanız gerekir. Devam etmek için aşağıdaki butona tıklayın.", "confirmTitle": "Yeni adresi onaylayın", "confirmBody": "Güvenlik için lütfen Ledger cihazınızda oluşturulan adresi aşağıda gösterilen adresle karşılaştırın. Eğer eşleşirlerse, gösterildiği gibi Ledger'ınızdaki her iki düğmeye de basın.", @@ -254,26 +254,26 @@ "settings": { "settings": "Ayarlar", "general": { - "title": "General", - "description": "Configure your app's appearance and other general settings" + "title": "Genel", + "description": "Uygulamanızın görünümünü ve diğer genel ayarları düzenleyin" }, "profile": { "title": "Profil", "description": "Profil isminizi değiştirin veya bir avatar ayarlayın" }, "network": { - "title": "Network" + "title": "Ağ" }, "collectibles": { - "title": "Collectibles" + "title": "Koleksiyonlar" }, "security": { "title": "Güvenlik", "description": "Parolanızı değiştirin ve güvenlikle ilgili ayarları yapın" }, "advanced": { - "title": "Advanced", - "description": "Tools and manual settings for technical users" + "title": "Gelişmiş", + "description": "Teknik kullanıcılar için araçlar ve manuel ayarlar" }, "helpAndInfo": { "title": "Yardım ve Bilgiler", @@ -293,7 +293,7 @@ "description": "" }, "appName": { - "title": "App Name" + "title": "Uygulama Adı" }, "currency": { "title": "Para Birimi", @@ -312,24 +312,24 @@ "description": "Bir Stronghold dosyasına aktarın - cüzdanlarınızın ve en son işlem geçmişinizin şifrelenmiş tam yedeği" }, "appLock": { - "title": "Automatic logout", + "title": "Otomatik oturum kapatma", "description": "Cüzdanlarınız kilitlenmeden ve çıkış yapılmadan önce hareketsizlik süresi" }, "strongholdPasswordTimeout": { - "title": "Stronghold Timeout", - "description": "Length of time before your Stronghold password is required again" + "title": "Stronghold zaman aşımı", + "description": "Stronghold şifrenizin tekrar gerektiği zaman aralığı" }, "maxMediaSize": { - "title": "Maximum media size", - "description": "NFT media with sizes greater than this limit will not be downloaded and a placeholder representing the media type will be displayed instead" + "title": "Maksimum medya boyutu", + "description": "Bu limitin üstünde olan boyuttaki NFT medyaları indirilmeyecek ve bunun yerine medya türünü temsil eden bir yer tutucu gösterilecektir" }, "maxMediaDownloadTime": { - "title": "Maximum download time", - "description": "NFT media which take longer than this limit to download will be canceled and a placeholder representing the media type will be displayed instead" + "title": "Maksimum indirme süresi", + "description": "Bu süreden daha uzun süren NFT medyaları indirme işlemi iptal edilecek ve yerine medya türünü temsil eden bir yer tutucu gösterilecektir" }, "refreshNftMedia": { - "title": "Refresh NFT media", - "description": "NFT media cached for this account will be deleted and then downloaded again" + "title": "NFT medyasını yenileyin", + "description": "Bu hesap için önbelleğe alınan NFT medyası silinecek ve daha sonra tekrar indirilecektir" }, "changePassword": { "title": "Şifre Değiştir", @@ -350,7 +350,7 @@ }, "balanceFinder": { "title": "Bakiye bulucu", - "description": "Perform an extended search of your balance" + "description": "Bakiyenizin genişletilmiş bir aramasını yapın" }, "hiddenAccounts": { "title": "Gizli cüzdanlar", @@ -361,12 +361,12 @@ "description": "Tüm profilinizi, cüzdanlarınızı ve işlem geçmişinizi siler. Bir yedeğiniz olduğundan emin olun" }, "deepLinks": { - "title": "Deep links", - "description": "Automatically fill transaction data in Firefly upon clicking a deep link starting with {appProtocol}://" + "title": "Derin Bağlantılar", + "description": "{appProtocol}:// ile başlayan bir derin bağlantıya tıkladığınızda, Firefly'da işlem verilerini otomatik olarak doldurun" }, "networkInformation": { - "title": "Network information", - "connectedTo": "Connected to" + "title": "Ağ Bilgisi", + "connectedTo": "Bağlantı yapıldı" }, "configureNodeList": { "title": "Düğüm yapılandırması", @@ -376,16 +376,16 @@ "includeNode": "Düğümü dahil et", "editDetails": "Ayrıntıları düzenle", "viewInfo": "Bilgileri görüntüle", - "setAsPrimary": "Set primary node", - "unsetAsPrimary": "Clear primary node", - "removeNode": "Remove node", + "setAsPrimary": "Birincil düğümü ayarlayın", + "unsetAsPrimary": "Birincil düğümü temizleyin", + "removeNode": "Düğümü kaldır", "includeOfficialNodeList": "Resmi düğüm listesini dahil et", "noNodes": "Düğüm yok, ağa bağlanamıyor", "noNodesAuto": "Düğüm yok, bunun yerine otomatik seçim kullanılacak" }, "localProofOfWork": { - "title": "Proof of work", - "description": "Complete proof of work locally on your device or outsource to the node" + "title": "PoW (İş kanıtı)", + "description": "Proof of work'u cihazınızda yerel olarak tamamlayın veya düğüme dış kaynak kullanarak işletin" }, "errorLog": { "title": "Hata Kaydı", @@ -431,41 +431,41 @@ "description": "Geliştiricilere bir hata bildirin. Daha önce rapor edilmediğinden emin olmak için kontrol edin" }, "developerToggle": { - "title": "Developer Mode", - "description": "Switch developer mode on to enable more features in experimental state" + "title": "Geliştirici Modu", + "description": "Deneysel durumda daha fazla özellik etkinleştirmek için geliştirici modunu açın" } }, "login": { "pleaseWait": "Lütfen bekleyin {time, plural, one {# second} other {# seconds}}", "incorrectAttempts": "{attempts, plural, one {# yanlış deneme} other {# yanlış denemeler}}", - "hintStronghold": "Your Stronghold's version is out of date. Please log in to update your Stronghold." + "hintStronghold": "Stronghold versiyonun güncel değil. Stronghold versiyonu güncellemek için lütfen giriş yapın." }, "loadProfile": { "loginSteps": { - "buildProfileManager": "Initialising profile manager", - "updateNodeInfo": "Checking node health", - "recoverAccounts": "Generating accounts", - "loadAccounts": "Syncing accounts", - "loadAssets": "Loading native assets", - "loadActivities": "Building activity history", - "setStrongholdStatus": "Securing stronghold", - "startBackgroundSync": "Starting background sync", - "loggingIn": "Loading dashboard" + "buildProfileManager": "Profil yöneticisi başlatılıyor", + "updateNodeInfo": "Düğüm sağlığı kontrol ediliyor", + "recoverAccounts": "Hesaplar oluşturma", + "loadAccounts": "Hesapları senkronize etme", + "loadAssets": "Yerel varlıklar yükleniyor", + "loadActivities": "İnşa faaliyet geçmişi", + "setStrongholdStatus": "Stronghold güvenliğini sağlamak", + "startBackgroundSync": "Arka planda senkronizasyon başlatılıyor", + "loggingIn": "Kontrol paneli yükleniyor" } }, "dashboard": { "network": { - "operational": "Network operational", - "degraded": "Network degraded", - "down": "Network down", - "disconnected": "Disconnected from node", + "operational": "Ağ çalışır durumda", + "degraded": "Ağ bozuldu", + "down": "Ağ düşük", + "disconnected": "Düğüm bağlantısı kesildi", "status": "Durum", "messagesPerSecond": "Saniye başına mesaj sayısı", "referencedRate": "Referans alınan oran" }, "profileModal": { - "allSettings": "All settings", - "profileApplication": "Profile, application, security", + "allSettings": "Tüm ayarlar", + "profileApplication": "Profil, uygulama, güvenlik", "logout": "Çıkış yap", "stronghold": { "title": "Profil kilidi", @@ -475,18 +475,18 @@ "hardware": { "title": "Donanım Aygıtı", "statuses": { - "appNotOpen": "Ledger unlocked but app not open", - "correctAppOpen": "Ledger unlocked and app open ", - "locked": "Ledger securely locked", + "appNotOpen": "Ledger'in kilidi açıldı ancak uygulama açık değil", + "correctAppOpen": "Ledger'in kilidi açıldı ve uygulama açıldı ", + "locked": "Ledger güvenli bir şekilde kilitlendi", "mnemonicMismatch": "Yanlış Defter veya anımsatıcı", - "notConnected": "Ledger not connected", + "notConnected": "Ledger bağlı değil", "otherConnected": "Uygulama açık" } }, "backup": { "title": "Cüzdanlarınızı yedekleyin", - "lastBackup": "You last backed up {date}", - "notBackedUp": "Not backed up", + "lastBackup": "Aldığınız son yedek {date}", + "notBackedUp": "Yedeklenmedi", "button": "Yedekleme" }, "version": { @@ -519,7 +519,7 @@ }, "bodies": { "upcoming": "{date} tarihinde bahis başladıktan sonra her 10 saniyede bir ödülleri otomatik olarak almak için {token} jetonlarınızı kullanın.", - "commencing": "Stake your {token} tokens to automatically receive rewards every 10 seconds once staking starts on {date}.", + "commencing": "{date} tarihinde staking başladığında her 10 saniyede bir otomatik olarak ödül almak için {token} jetonlarınızı stake edin.", "holdingAndStaking": "Her 10 saniyede bir otomatik olarak ödül alırsınız.", "holdingAndNotStaking": "Her 10 saniyede bir ödül almak için IOTA jetonlarınızı kullanın.", "endedAndDidStake": "{token} ödülleri, ağ başlatıldığında cüzdanınıza dağıtılacaktır.", @@ -535,7 +535,7 @@ "totalWalletRewards": "Toplam cüzdan ödülleri", "assembly": { "name": "Assembly", - "description": "Assembly is a permissionless, highly scalable multi-chain network to build and deploy composable smart contracts. Assembly is the future of web3. " + "description": "Assembly, şekillendirilebilir akıllı sözleşmeler oluşturmak ve dağıtmak için izin gerektirmeyen, yüksek düzeyde ölçeklenebilir, çok zincirli bir ağdır. Assembly Web3'ün geleceğidir." }, "shimmer": { "name": "Shimmer", @@ -555,261 +555,261 @@ }, "collectibles": { "gallery": { - "title": "Collectibles", - "emptyTitle": "No collectibles", - "noResults": "No results", - "emptyDescription": "Deposit or Receive your first collectible now!" + "title": "Koleksiyonlar", + "emptyTitle": "Koleksiyon yok", + "noResults": "Sonuç yok", + "emptyDescription": "İlk koleksiyonunuzu şimdi yatırın veya alın!" }, "details": { - "storageDepositDescription": "A refundable deposit required to store your NFT on the Tangle.", - "attributes": "Attributes", + "storageDepositDescription": "NFT'nizi Tangle'da saklamak için iade edilebilir bir depozito gereklidir.", + "attributes": "Öznitelikler", "menu": { - "download": "Download", - "setPfp": "Set NFT profile pic", - "unsetPfp": "Unset NFT profile pic", - "view": "View media in browser", - "burn": "Burn NFT" + "download": "İndirmek", + "setPfp": "NFT profil resmini ayarla", + "unsetPfp": "NFT profil resmini ayarlanmamış", + "view": "Medyayı tarayıcıda görüntüle", + "burn": "NFT'yi Yak" } } }, "governance": { "votingPower": { - "title": "Voting power", - "maximal": "Maximal voting power: {value}", - "manage": "Manage voting power" + "title": "Oylama güçü", + "maximal": "Maksimum oylama gücü:{value}", + "manage": "Oy gücünü yönetin" }, "proposalsDetails": { - "title": "Details", - "totalProposals": "Total proposals", - "activeProposals": "Active proposals", - "votingProposals": "Proposals you are voting on", - "votedProposals": "Total proposals you voted on" + "title": "Ayrıntılar", + "totalProposals": "Toplam teklifler", + "activeProposals": "Aktif teklifler", + "votingProposals": "Oy vereceğiniz teklifler", + "votedProposals": "Oy verdiğiniz toplam teklifler" }, "proposals": { - "title": "Proposals", - "voted": "Voted", - "successEdit": "Proposal successfully edited", - "successAdd": "{numberOfProposals, select, one {Proposal} other {Proposals}} successfully added", - "successAddAll": "{numberOfProposals, select, one {Proposal} other {Proposals}} successfully added to all accounts", - "successRemove": "Proposal successfully removed", - "emptyTitle": "No proposals" + "title": "Teklifler", + "voted": "Oy verildi", + "successEdit": "Teklif başarıyla düzenlendi", + "successAdd": "{numberOfProposals, select, one {Teklifler} other {Teklifler}} başarıyla eklendi", + "successAddAll": "{numberOfProposals, select, one {Proposal} other {Proposals}} tüm hesaplara başarıyla eklendi", + "successRemove": "Teklif başarıyla kaldırıldı", + "emptyTitle": "Teklif yok" }, "statusTimeline": { - "upcoming": "Announcement", - "commencing": "Voting open", - "holding": "Counting starts", - "ended": "Counting stops" + "upcoming": "Duyuru", + "commencing": "Oylama açıldı", + "holding": "Sayım başlıyor", + "ended": "Sayım duruyor" }, "details": { "yourVote": { - "title": "Your vote", - "total": "Total votes counted", - "power": "Voting power" + "title": "Oyunuz", + "total": "Sayılan toplam oylar", + "power": "Oylama güçü" }, "proposalInformation": { - "title": "Proposal information", - "votingOpens": "Voting opens on", - "countingStarts": "Counting starts on", - "countingEnds": "Counting ends on", - "countingEnded": "Counting ended on", - "eventId": "Event ID", - "nodeUrl": "Node URL" + "title": "Teklif bilgileri", + "votingOpens": "Oylama açılıyor", + "countingStarts": "Sayım başlıyor", + "countingEnds": "Sayım bitiyor", + "countingEnded": "Sayım sona erdi", + "eventId": "Etkinlik ID", + "nodeUrl": "Node URL'si" }, - "fetching": "Fetching proposal data", - "hintVote": "You can not vote on a proposal that is in the announcement phase, voting will open in {time}." + "fetching": "Teklif verileri getiriliyor", + "hintVote": "Duyuru aşamasında olan bir teklife oy veremezsiniz, oylama {time} içinde açılacaktır." } }, "updateStronghold": { "update": { - "title": "Update Stronghold", - "loginBody": "Your Stronghold's version is out of date. Provide your password to update Stronghold.", - "recoveryBody": "The imported Stronghold’s version is out of date, to continue we will need to update the stronghold to the latest version." + "title": "Stronghold'ı güncelle", + "loginBody": "Stronghold'unuzun sürümü güncel değil. Stronghold'u güncellemek için şifrenizi girin.", + "recoveryBody": "İçe aktarılan Stronghold sürümü güncel değil, devam etmek için kaleyi en son sürüme güncellememiz gerekiyor." }, "updateBackup": { - "loginTitle": "Stronghold updated", - "loginBody": "It's all good now - you're running the latest Stronghold version", - "recoveryTitle": "Stronghold is successfully recovered and updated", - "recoveryBody": "You can now continue setting up your wallet", - "hint": "We highly recommend to delete all previous Stronghold backup files and save a new one" + "loginTitle": "Stronghold güncellendi", + "loginBody": "Artık her şey yolunda - Stronghold'un en son sürümünü çalıştırıyorsunuz", + "recoveryTitle": "Stronghold başarıyla kurtarıldı ve güncellendi", + "recoveryBody": "Şimdi cüzdanınızı kurmaya devam edebilirsiniz", + "hint": "Önceki tüm Stronghold yedekleme dosyalarını silmenizi ve yenisini kaydetmenizi önemle tavsiye ederiz" }, "changePassword": { - "hint": "Your Stronghold was out of date and has been updated. We recommend that you change your Stronghold password." + "hint": "Stronghold'unuz güncel olmadığı için güncellendi. Stronghold şifrenizi değiştirmenizi öneririz." } }, "vesting": { - "title": "Vesting", + "title": "Hakediş", "overview": { - "unlocked": "Unlocked", - "locked": "Locked", - "total": "Total" + "unlocked": "Kilitli değil", + "locked": "Kilitli", + "total": "Toplam" }, - "timeUntilNextUnlock": "Time until next unlock", - "collect": "Collect", - "search": "Find vesting rewards", + "timeUntilNextUnlock": "Bir sonraki kilidin açılmasına kadar geçen süre", + "collect": "Toplamak", + "search": "Kazanılan ödülleri bulun", "payouts": { - "title": "Biweekly Unlock Schedule", - "information": "Payout Information", + "title": "İki Haftalık Kilit Açma Programı", + "information": "Ödeme Bilgileri", "tooltip": { - "title": "Payout", - "amount": "Amount", - "unlockDate": "Unlock Date" + "title": "Ödeme", + "amount": "Tutar", + "unlockDate": "Kilit açma tarihi" } }, "infoTooltip": { - "title": "Vesting of tokens", - "body": "From the tokens users received through an IOTA token airdrop, 10% are being available to users immediately at the genesis of the IOTA Stardust network. The rest is gradually unlocked over the course of two years in equal proportion happening every two weeks." + "title": "Jetonları kazanılması", + "body": "Kullanıcıların bir IOTA token airdrop'u yoluyla aldıkları tokenlerin %10'u, IOTA Stardust ağının oluşumunda anında kullanıcılara sunuluyor. Geri kalanının kilidi, iki haftada bir eşit oranda olmak üzere iki yıl boyunca kademeli olarak açılır." } } }, "popups": { "payoutDetails": { - "title": "Payout Details", - "amount": "Total amount", - "unlockDate": "Unlock date", - "status": "Status" + "title": "Ödeme Detayları", + "amount": "Toplam tutar", + "unlockDate": "Kilit açma tarihi", + "status": "Durum" }, "vestingCollect": { - "title": "Collect", - "body": "Don't miss out on your unclaimed funds! Click the button below to check and claim your funds now.", - "unclaimedFunds": "Unclaimed funds", - "button": "Collect" + "title": "Toplamak", + "body": "Talep edilmeyen fonlarınızı kaçırmayın! Paranızı şimdi kontrol etmek ve talep etmek için aşağıdaki düğmeyi tıklayın.", + "unclaimedFunds": "Talep edilmemiş fonlar", + "button": "Toplamak" }, "metricSystemInfo": { - "title": "Transitioning from metric prefixes", - "body1": "At the inception of IOTA, we intended to adhere to standards by using metric system prefixes. However, indicating a multiple or submultiple of the unit has been proven impractical.", - "body2": "Instead of kilo (KIOTA), mega (MIOTA), etc, the new smallest unit in IOTA is called 'micro', or 'micros' for multiple units. What was previously 1 MIOTA will now simply be called one IOTA. 1,000,000 micros equal 1 IOTA.", - "body3": "Please be assured that this change will not affect the value of your assets - it's a linguistic refinement, not a functional change. You can find more information in the blog post announcing the change.", - "link": "New IOTA token denomination: moving away from metric unit prefixes" + "title": "Metrik ön eklerden geçiş", + "body1": "IOTA'nın başlangıcında, metrik sistem ön eklerini kullanarak standartlara uygun olmayı amaçladık. Ancak birimin bir katı veya alt katını belirtmek pratikte mümkün olmadığı kanıtlandı.", + "body2": "KIOTA, MIOTA vb. yerine, IOTA'daki yeni en küçük birim 'mikro' olarak adlandırılır, birden fazla birim için 'mikro'lar kullanılır. Daha önce 1 MIOTA olarak adlandırılan şimdi sadece bir IOTA olarak adlandırılacaktır. 1.000.000 mikro, 1 IOTA'ya eşittir.", + "body3": "Bu değişikliğin varlıklarınızın değerini etkilemeyeceğinden emin olabilirsiniz - bu, dilbilgisel bir iyileştirme, işlevsel bir değişiklik değil. Değişikliği duyuran blog gönderisinde daha fazla bilgi bulabilirsiniz.", + "link": "Yeni IOTA token birimi: metrik ön eklerden uzaklaşma" }, "enableLedgerBlindSigning": { - "title": "Enable Blind Signing", - "info": "In order to confirm this transaction you need to enable Blind Signing on your ledger device.", - "step_1": "Connect and unlock your Ledger Device", - "step_2": "Open {network} Application", - "step_3": "Press the right button to navigate to Settings. Then press both buttons to validate. Your Ledger device displays Blind Signing.", - "step_4": "Press both buttons to enable transaction blind signing. The device displays Enabled. You're done." + "title": "Kör İmzalamayı Etkinleştir", + "info": "Bu işlemi onaylamak için Ledger cihazınızda Blind Signing'i etkinleştirmeniz gerekmektedir.", + "step_1": "Ledger'ınızı bağlayın ve kilidini açın", + "step_2": "{network} Uygulamasını açın", + "step_3": "Ayarlar'a gitmek için sağ düğmeye basın. Ardından doğrulamak için her iki düğmeye de basın. Ledger cihazınız Blind Signing'i gösterir.", + "step_4": "Blind signing'i etkinleştirmek için her iki düğmeye de basın. Cihaz Etkin'i görüntüler. İşlem tamam." }, "balanceBreakdown": { - "title": "Balance breakdown", + "title": "Bakiye dökümü", "available": { - "title": "Available", - "subtitle": "Funds fully available for spending" + "title": "Mevcut", + "subtitle": "Tamamen harcamaya hazır fonlar" }, "pending": { - "title": "Pending", - "subtitle": "Temporarily locked in transactions (excluding vesting)" + "title": "Bekleniyor", + "subtitle": "İşlemlerde geçici olarak kilitlendi (hakedilen hariç)" }, "locked": { - "title": "Locked", - "subtitle": "Temporarily locked for governance" + "title": "Kilitli", + "subtitle": "Yönetim için geçici olarak kilitlendi" }, "storageDeposit": { - "title": "Storage deposit", - "subtitle": "These funds are reserved for storing native assets." + "title": "Depolama depozitosu", + "subtitle": "Bu fonlar yerel varlıkların depolanması için ayrılmıştır." }, "totalBalance": { - "title": "Total balance", + "title": "Toplam bakiye", "subtitle": "" }, "basicOutputs": { - "title": "Native Tokens", - "subtitle": "Reserved for Native Token storage" + "title": "Yerel Tokenlar", + "subtitle": "Yerel Token depolaması için ayrılmıştır" }, "nftOutputs": { - "title": "NFTs", - "subtitle": "Reserved for NFT storage" + "title": "NFT'ler", + "subtitle": "NFT depolama için ayrılmıştır" }, "aliasOutputs": { - "title": "Aliases", - "subtitle": "Reserved for Alias storage" + "title": "Takma adlar", + "subtitle": "Takma ad depolaması için ayrılmıştır" }, "foundryOutputs": { - "title": "Foundries", - "subtitle": "Reserved for Native Token Foundry storage" + "title": "Dökümhaneler", + "subtitle": "Yerel Token Dökümhanesi depolaması için ayrılmıştır" }, "unclaimed": { - "title": "Unclaimed transaction", - "subtitle": "Temporarily locked in unclaimed transactions" + "title": "Talep edilmemiş işlem", + "subtitle": "Talep edilmeyen işlemlerde geçici olarak kilitlendi" }, "timelock": { - "title": "Time lock", - "subtitle": "Temporarily locked in timelocked transactions" + "title": "Zamanlı kilidi", + "subtitle": "Geçici olarak zaman kilidindeki işlemler kilitlenmiş" }, "storageDepositReturn": { - "title": "SDRUC", - "subtitle": "Temporarily locked in Storage Deposit Return" + "title": "Depozito geri ödemeleri", + "subtitle": "Depolama Depozito İadesinde Geçici Olarak Kilitlendi" }, "governance": { - "title": "Governance", - "subtitle": "Reserved for voting power" + "title": "Yönetim", + "subtitle": "Oy kullanma gücü için ayrılmış" }, "vesting": { - "title": "Vesting", - "subtitle": "Locked funds awaiting unlock based on the vesting schedule" + "title": "Hakediş", + "subtitle": "Hak kazanma planına göre kilidi açılmayı bekleyen kilitli fonlar" }, - "minimizeStorageDepositButton": "Minimize storage deposit" + "minimizeStorageDepositButton": "Depolama depozitosunu en aza indirin" }, "minimizeStorageDeposit": { - "title": "Minimize storage deposit", - "description": "Consolidate outputs to minimize your required storage deposit and increase your available balance.", - "confirmButton": "Consolidate" + "title": "Depolama depozitosunu en aza indirin", + "description": "Gerekli depolama depozitonuzu en aza indirmek ve mevcut bakiyenizi artırmak için çıktıları birleştirin.", + "confirmButton": "Birleştir" }, "alias": { - "title": "Confirm alias creation" + "title": "Takma ad oluşturmayı onaylayın" }, "password": { "title": "Parola gerekli", - "subtitle": "Please provide your password to unlock your wallets", + "subtitle": "Cüzdanlarınızın kilidini açmak için lütfen şifrenizi girin", "backup": "Bir yedeği dışa aktarmak için lütfen şifrenizi girin" }, "qr": { "title": "QR Kodunuz" }, "appUpdate": { - "title": "Check for updates", - "installedVersion": "Installed version", - "newVerion": "New version", - "stage": "Stage", - "prod": "Production", - "alpha": "Alpha", + "title": "Güncellemeleri kontrol et", + "installedVersion": "Yüklü sürüm", + "newVerion": "Yeni versiyon ", + "stage": "Aşama", + "prod": "Üretim", + "alpha": "Alfa", "beta": "Beta", - "releasedAt": "Released at", - "updateAvailable": "Update is available", - "updatesDisabled": "There are updates available, but in-app upgrade is disabled for your operating system.", - "latestInstalled": "You are running the latest and safest version" + "releasedAt": "Yayınlanma", + "updateAvailable": "Güncelleme mevcut", + "updatesDisabled": "Güncellemeler mevcuttur, ancak işletim sisteminiz için uygulama içi yükseltme devre dışı bırakılmıştır.", + "latestInstalled": "En son ve en güvenli sürümü çalıştırıyorsunuz" }, "backupStronghold": { - "title": "Backup your stronghold file", - "body": "It is important to back up your wallet regularly to ensure you have a copy of your wallets and transaction history. If you lose your backup and recovery phrase you will lose access to your funds." + "title": "Stronghold dosyanızı yedekleyin", + "body": "Cüzdanlarınızın ve işlem geçmişinizin bir kopyasına sahip olduğunuzdan emin olmak için cüzdanınızı düzenli olarak yedeklemeniz önemlidir. Yedekleme ve kurtarma ifadenizi kaybederseniz fonlarınıza erişiminizi kaybedersiniz." }, "deeplinkAccountSwitch": { - "title": "Select a wallet", - "body": "You just followed a deep link. Please select the wallet with which you want to continue." + "title": "Bir cüzdan seçin", + "body": "Az önce derin bir bağlantıyı takip ettiniz. Lütfen devam etmek istediğiniz cüzdanı seçin." }, "deeplinkError": { - "title": "Failed link", - "body": "This link failed or is invalid. Please try again or double check the source of the link." + "title": "Başarısız bağlantı", + "body": "Bu bağlantı başarısız oldu veya geçersiz. Lütfen tekrar deneyin veya bağlantının kaynağını tekrar kontrol edin." }, "deleteAccount": { "title": "Sil {name}?", - "body": "Are you sure you want to delete this wallet?", - "hint": "Note: once deleted, you can restore this wallet by using the \"Wallet Finder\" in the settings.", + "body": "Bu cüzdanı silmek istediğinizden emin misiniz?", + "hint": "Not: Silindikten sonra bu cüzdanı ayarlardaki \"Cüzdan Bulucu\"yu kullanarak geri yükleyebilirsiniz.", "typePassword": "Doğrulama için lütfen cüzdan parolanızı giriniz.", "hideAccount": "Cüzdanı sil", "errorTitle": "Silinemedi: {name}", "errorBody1": "Bu cüzdanı silemezsiniz, en az bir cüzdana sahip olmanız gerekmektedir." }, "externalUrl": { - "title": "Open URL in Browser", - "body": "Are you sure you want to open \"{url}\" in the browser?", - "hint": "This URL is unknown to Firefly. Please double check the URL before opening it.", - "action": "Open URL", - "invalidProtocol": "Cannot open URL with invalid protocol" + "title": "Tarayıcıda URL aç", + "body": "\"{url}\" adresini tarayıcıda açmak istediğinizden emin misiniz?", + "hint": "Bu URL Firefly tarafından bilinmiyor. Lütfen açmadan önce URL'yi tekrar kontrol edin.", + "action": "URL'yi aç", + "invalidProtocol": "URL geçersiz protokolle açılamıyor" }, "hideAccount": { "title": "Gizle {name}?", "body": "Bu cüzdanı daha sonra Gelişmiş Ayarlar'da \"Gizli cüzdanları göster\" seçeneğini etkinleştirerek bulabilirsiniz.", - "typePassword": "Type your wallet password to confirm.", + "typePassword": "Onaylamak için cüzdan şifrenizi girin.", "hideAccount": "Cüzdanı gizle", "errorTitle": "Gizlenemedi: {name}", "errorBody1": "Bir cüzdanı gizlemek için bakiyesi olmamalıdır.", @@ -817,12 +817,12 @@ "errorBody3": "Bu cüzdanı gizleyemezsiniz, en az bir cüzdanınız bulunmalıdır." }, "excludeNode": { - "title": "Exclude node", - "body": "Are you sure you want to exclude {url} from the available node pool?" + "title": "Düğümü hariç tut", + "body": "{url}'yi mevcut düğüm havuzundan hariç tutmak istediğinizden emin misiniz?" }, "unsetAsPrimaryNode": { - "title": "Clear primary node", - "body": "Are you sure you want to clear {url} as the primary node?" + "title": "Birincil düğümü temizleyin", + "body": "{url}'yi birincil düğüm olarak temizlemek istediğinizden emin misiniz?" }, "node": { "titleAdd": "Bir node ekle", @@ -830,7 +830,7 @@ "titleRemove": "Düğüm kaldır", "titleRemoveAll": "Tüm düğümleri kaldır", "titleDetails": "Node detayları", - "titleInfo": "Node information", + "titleInfo": "Düğüm bilgisi", "addingNode": "Düğüm ekle", "updatingNode": "Düğümü güncelle", "loadingNodeInfo": "Düğüm bilgisi yükleniyor", @@ -842,39 +842,39 @@ "removeConfirmation": "Bu klasörü kaldırmak istediğinize emin misiniz?", "info": { "general": { - "tab": "General", - "name": "Name", + "tab": "Genel", + "name": "İsim", "url": "URL", - "version": "Version", - "latestMilestone": "Latest milestone", - "confirmedMilestone": "Confirmed milestone", - "pruningIndex": "Pruning index", - "features": "Features" + "version": "Versiyon", + "latestMilestone": "Son kilometre taşı", + "confirmedMilestone": "Onaylanmış kilometre taşı", + "pruningIndex": "Budama indeksi", + "features": "Özellikler" }, "metrics": { - "tab": "Metrics", - "blocksPerSecond": "Blocks per second", - "referencedBlocksPerSecond": "Referenced blocks per second", - "referencedRate": "Referenced rate", - "latestMilestone": "Latest milestone", - "confirmedMilestone": "Confirmed milestone" + "tab": "Metrikler", + "blocksPerSecond": "Saniye başına bloklar", + "referencedBlocksPerSecond": "Saniye başına başvurulan bloklar", + "referencedRate": "Referans alınan oran", + "latestMilestone": "Son kilometre taşı", + "confirmedMilestone": "Onaylanmış kilometre taşı" }, "protocol": { - "tab": "Protocol", - "network": "Network", + "tab": "Protokol", + "network": "Ağ", "bech32Hrp": "Bech32 HRP", - "tokenSupply": "Token supply", - "version": "Version", - "minPowScore": "Min PoW Score" + "tokenSupply": "Token arzı", + "version": "Versiyon", + "minPowScore": "Minimum PoW Puanı" }, "baseToken": { - "tab": "Base token", - "token": "Token", + "tab": "Temel token", + "token": "Token (Jeton)", "tickerSymbol": "Ticker", - "unit": "Unit", - "subunit": "Sub-unit", - "decimals": "Decimals", - "useMetricPrefix": "Use metric prefix" + "unit": "Birim", + "subunit": "Alt birim", + "decimals": "Ondalık sayılar", + "useMetricPrefix": "Metrik önekini kullan" } } }, @@ -890,7 +890,7 @@ "empty": "Hata geçmişi boş." }, "deleteProfile": { - "title": "Delete profile", + "title": "Profili sil", "confirmation": "Bu dosyayı silmek istiyor musunuz? Bu işlem geri alınamaz.", "typePassword": "Onaylamak için parolanızı girin." }, @@ -906,34 +906,34 @@ "userPath": "Kullanıcı yolu" }, "transaction": { - "title": "Send asset", + "title": "Varlıkları gönder", "body": "Bu kadar miktar göndermek üzeresiniz {amount}", - "selectToken": "Select a token", - "selectAmount": "Send {tokenName}", - "selectRecipient": "Send {assetName} to", - "transactionSummary": "Transaction to {recipient}", - "surplusIncluded": "This transaction contains a surplus amount. Please double check this is the amount you want to send.", + "selectToken": "Bir token seçin", + "selectAmount": "Gönder {tokenName}", + "selectRecipient": "{assetName}'i şuraya gönder", + "transactionSummary": "{recipient} yapılan işlem", + "surplusIncluded": "Bu işlem fazla tutar içermektedir. Lütfen göndermek istediğiniz tutarın bu olup olmadığını bir kez daha kontrol edin.", "sendingFromStakedAccount": "Şu anda stake edilen bir cüzdandan transfer gönderiyorsunuz. Bu, tokenlarınızın stake durumunu iptal edebilir. Transferi göndermekten çekinmeyin, ancak daha sonra kalan tokenlarınızı yeniden stake etmeniz gerekebilir.", "sendingFromStakedAccountBelowMinReward": "Henüz minimum stake ödüllerine ulaşmamış bir cüzdandan transfer gönderiyorsunuz.\nBu jetonlarınızı geri alabilir ve bu cüzdandaki stake ödüllerinizi kaybedebilirsiniz." }, "balanceFinder": { - "title": "Balance finder", - "body": "Perform a more exhaustive search of balances.", - "addressesSearched": "Addresses searched", - "addressesFound": "Addresses found", - "totalAddressBalance": "Total balance", - "searchAgainHint": "Is your balance or number of wallets incorrect? Search again until your full balance is shown.", - "currentWallet": "Search only in the current wallet" + "title": "Bakiye bulucu", + "body": "Bakiyeleri daha kapsamlı bir şekilde araştırın.", + "addressesSearched": "Aranan adresler", + "addressesFound": "Bulunan adresler", + "totalAddressBalance": "Toplam bakiye", + "searchAgainHint": "Bakiyeniz veya cüzdan sayınız yanlış mı? Bakiyenizin tamamı gösterilene kadar arama yapın.", + "currentWallet": "Yalnızca mevcut cüzdanda ara" }, "balanceOverview": { - "title": "Balance overview", - "body": "Find information about all your wallets and the balance of each." + "title": "Bakiyeye genel bakış", + "body": "Tüm cüzdanlarınız ve her birinin bakiyesi hakkında bilgi edinin." }, "vestingRewards": { - "title": "Find vesting rewards", - "body": "Perform a more exhaustive search of your rewards.", - "totalAddressBalance": "Total rewards", - "searchAgainHint": "Are your vesting rewards incorrect? Search again until all your rewards are shown." + "title": "Kazanılan ödülleri bulun", + "body": "Ödülleriniz üzerinde daha kapsamlı bir arama yapın.", + "totalAddressBalance": "Toplam ödüller", + "searchAgainHint": "Hakediş ödülleriniz yanlış mı? Tüm ödülleriniz gösterilene kadar tekrar arayın." }, "riskFunds": { "title": "Uyarı: taşıma sırasında bakiye risk altında", @@ -953,31 +953,31 @@ "bodyFirefly": "İşlem tamamlanana kadar Firefly devre dışı bırakıldı. Token taşıma daha sonra hala mümkün olacak." }, "ledgerNotConnected": { - "title": "Connect your Ledger", - "notConnected": "Connect your Ledger device to continue.", - "locked": "Unlock your Ledger device to continue.", - "appNotOpen": "Open the {legacy} app on your Ledger device to continue.", - "correctAppOpen": "Ledger successfully connected, please continue." + "title": "Ledger'inizi bağlayın", + "notConnected": "Devam etmek için Ledger cihazınızı bağlayın.", + "locked": "Devam etmek için Ledger cihazınızın kilidini açın.", + "appNotOpen": "Devam etmek için Ledger cihazınızdaki {legacy} uygulamasını açın.", + "correctAppOpen": "Ledger başarıyla bağlandı, lütfen devam edin." }, "ledgerConfirmation": { "confirm": "Devam etmek için Ledger cihazınızda görüntülenen istemi onaylayın" }, "ledgerAppGuide": { - "title": "Guide to installing the {legacy} app", + "title": "{legacy} uygulamasını yükleme rehberi", "steps": { "0": "Ledger Live uygulamasını kurun ve açın", "1": "Ledger'ınızın bağlı olduğundan emin olun", - "2": "Search for the {legacy} app. You may need to enable Ledger Live developer mode.", - "3": "Install the {legacy} app", + "2": "{legacy} uygulamasını arayın. Ledger Live geliştirici modunu etkinleştirmeniz gerekebilir.", + "3": "{legacy} uygulamasını kurun", "4": "Firefly'a dönmeden önce Ledger Live'ı kapatmanın önemli olduğunu unutmayın" } }, "ledgerConnectionGuide": { - "title": "Tips if your Ledger isn’t connecting", + "title": "Ledger'ınız bağlanmadığı durumlar için ipuçları", "steps": { "0": "Bilgisayarınızda Ledger Live'ın açık olmadığından emin olun", "1": "PIN'inizle Ledger cihazınızın kilidini açtığınızdan emin olun", - "2": "Open the new {network} app on your Ledger device", + "2": "Ledger cihazınızda yeni {network} uygulamasını açın", "3": { "text": "Hala olmadı mı?", "link": "Resmi Ledger destek sayfasını deneyin" @@ -985,13 +985,13 @@ } }, "verifyLedgerTransaction": { - "title": "Verify transaction", - "info": "Compare and confirm the transaction information displayed on your ledger device against the information below." + "title": "İşlemi doğrula", + "info": "Ledger cihazınızda görüntülenen işlem bilgilerini aşağıdaki bilgilerle karşılaştırın ve onaylayın." }, "verifyInternalLedgerTransaction": { - "title": "Verify internal transaction", - "info": "Please confirm the internal transaction on your ledger.", - "hint": "All assets will remain on your wallet when sending an internal transaction." + "title": "Dahili işlemi doğrula", + "info": "Lütfen Ledger'ınızda ki dahili işlemi onaylayın.", + "hint": "Dahili bir işlem gönderirken tüm varlıklar cüzdanınızda kalacaktır." }, "ledgerAddress": { "title": "Alma adresini onayla", @@ -1014,7 +1014,7 @@ "totalFundsStaked": "Stake edilen toplam fon", "stakedSuccessfully": "Fonlarınız {account} için stake edildi.", "unstakedSuccessfully": "Fonlarınızın {account} için stake'i iptal edildi.", - "singleAccountHint": "Looking for your wallets? Firefly has changed. Toggle between your wallets in the top menu bar." + "singleAccountHint": "Cüzdanlarınızı mı arıyorsunuz? Firefly değişti. Üst menü çubuğunda cüzdanlarınız arasında geçiş yapın." }, "stakingConfirmation": { "title": "Katılımı onaylayın", @@ -1064,142 +1064,142 @@ "hint": "Cüzdanı bulamıyor musunuz? Daha önce kullanılmış cüzdanları bulmak için ayarlardaki bakiye bulma aracını kullanın." }, "transactionDetails": { - "title": "Transaction details", + "title": "İşlem detayları", "giftedStorageDeposit": { - "tooltipTitle": "Gift storage deposit", - "tooltipDescription": "Amount kept by the recipient" + "tooltipTitle": "Hediye depolama depozitosu", + "tooltipDescription": "Alıcının elinde tuttuğu miktar" } }, "sendForm": { - "title": "Send funds" + "title": "Fonları gönder" }, "tokenInformation": { - "newTokenTitle": "New token", - "verificationWarning": "This token is unverified. Compare the token metadata against the relevant team’s official website. Only verify tokens that you trust.", + "newTokenTitle": "Yeni token", + "verificationWarning": "Bu token doğrulanmadı. Belirteç meta verilerini ilgili ekibin resmi web sitesiyle karşılaştırın. Yalnızca güvendiğiniz belirteçleri doğrulayın.", "tokenMetadata": { - "standard": "Standard", - "name": "Name", + "standard": "Standart", + "name": "İsim", "tokenId": "Token ID", "url": "URL" }, "buttons": { - "verifyToken": "I verify this token" + "verifyToken": "Bu tokeni doğruluyorum" } }, "sendNft": { - "formTitle": "Send NFT", - "confirmationTitle": "Confirm sending NFT", + "formTitle": "NFT Gönder", + "confirmationTitle": "NFT gönderimini onaylayın", "property": { "nft": "NFT" } }, "nativeToken": { - "formTitle": "Mint native tokens", - "confirmationTitle": "Mint native tokens", + "formTitle": "Yerel tokenleri (jetonları) oluşturmak", + "confirmationTitle": "Yerel tokenleri (jetonları) oluşturmak", "property": { - "totalSupply": "Total supply", - "maximumSupply": "Maximum supply", - "mintedTokens": "Minted tokens", - "meltedTokens": "Melted tokens", - "circulatingSupply": "Circulating supply", - "aliasAddress": "Alias controller address", - "standard": "Standard", - "tokenName": "Name", - "unit": "Unit", - "subunit": "Subunit", - "storageDeposit": "Storage Deposit", - "description": "Description", - "symbol": "Symbol", - "decimals": "Decimals", + "totalSupply": "Toplam arz", + "maximumSupply": "Maksimum arz", + "mintedTokens": "Basılmış jetonlar (Tokenler)", + "meltedTokens": "Erimiş jetonlar (Tokenler)", + "circulatingSupply": "Dolaşımdaki arz", + "aliasAddress": "Takma ad denetleyici adresi", + "standard": "Standart", + "tokenName": "İsim", + "unit": "Birim", + "subunit": "Alt birim", + "storageDeposit": "Depolama Depozitosu", + "description": "Açıklama", + "symbol": "Sembol", + "decimals": "Ondalık sayılar", "url": "URL", "logoUrl": "Logo URL", "logo": "Logo", - "alias": "Alias", - "assetId": "Asset Id" + "alias": "Takma ad", + "assetId": "Varlık ID" } }, "noAlias": { - "title": "Unable to mint", - "description": "You must own an alias output to mint native tokens. To continue, please create an alias first" + "title": "Basılamıyor", + "description": "Yerel belirteçleri basmak için bir takma ad çıktısına sahip olmanız gerekir. Devam etmek için lütfen önce bir takma ad oluşturun" }, "mintNftForm": { - "title": "Mint simple NFT", + "title": "Basit bir NFT oluştur", "errors": { - "invalidMimetype": "Invalid MimeType, check if the file type is supported", - "quantityTooSmall": "Quantity needs to be greater than 0", - "quantityTooLarge": "Quantity needs to be smaller than 64", - "emptyName": "Name is a required field", - "invalidURI": "Invalid URI, please provide a valid URI", - "notReachable": "URI not reachable, unable to check NFT type", - "royaltiesMustBeObject": "Royalties must be an object", - "royaltiesMustBeJSON": "Royalties must be a valid JSON", - "invalidAddress": "Invalid address, must be a valid {networkHrp} address where royalties will be sent to", - "invalidRoyaltyValue": "Invalid value, it must be a numeric decimal representative of the percentage required ie. 0.05", - "invalidRoyaltyValueSum": "Invalid value, the sum of all royalties must be less than or equal to 1'", - "attributesMustBeJSON": "Attributes must be a valid JSON", - "attributesMustBeArrayOfObjects": "Attributes must be an array of objects", - "attributesInvalidKeys": "Invalid key, attributes must have the keys \"trait_type\" and \"value\"", - "attributesInvalidValues": "Invalid value, \"trait_type\" must be a non empty string and \"value\" must be a non empty string or a number" + "invalidMimetype": "Geçersiz MimeType, dosya türünün desteklenip desteklenmediğini kontrol edin", + "quantityTooSmall": "Miktarın 0'dan büyük olması gerekiyor", + "quantityTooLarge": "Miktarın 64'den küçük olması gerekiyor", + "emptyName": "Ad zorunlu bir alandır", + "invalidURI": "Geçersiz URI, lütfen geçerli bir URI sağlayın", + "notReachable": "URI'ye ulaşılamıyor, NFT türü kontrol edilemiyor", + "royaltiesMustBeObject": "Telif hakları bir nesne olmalıdır", + "royaltiesMustBeJSON": "Telif hakları geçerli bir JSON olmalıdır", + "invalidAddress": "Geçersiz adres, telif ücretlerinin gönderileceği geçerli bir {networkHrp} adresi olmalıdır", + "invalidRoyaltyValue": "Geçersiz değer; gerekli yüzdeyi temsil eden sayısal bir ondalık sayı olmalıdır; 0.05", + "invalidRoyaltyValueSum": "Geçersiz değer; tüm telif ücretlerinin toplamı 1'den az veya ona eşit olmalıdır", + "attributesMustBeJSON": "Öznitelikler geçerli bir JSON olmalıdır", + "attributesMustBeArrayOfObjects": "Nitelikler bir nesne dizisi olmalıdır", + "attributesInvalidKeys": "Geçersiz anahtar; özenitelikler \"trait_type\" ve \"value\" anahtarlarına sahip olmalıdır", + "attributesInvalidValues": "Geçersiz değer; \"trait_type\" boş olmayan bir dize olmalı ve \"value\" boş olmayan bir dize veya sayı olmalıdır" } }, "faucetRequest": { - "title": "Faucet request", - "body": "Are you sure you want to request {token} tokens from the {network} faucet?" + "title": "Musluk talebi", + "body": "{network} musluğundan {token} token istemek istediğinizden emin misiniz?" }, "manageVotingPower": { - "title": "Manage voting power", - "body": "Define your voting power to vote on proposals.", - "hint": "All funds that you allocate to voting are locked. In order to make them spendable again, you need to decrease your voting power. This affects all proposals with an active vote.", - "amountZero": "Please be aware that setting your voting power to zero will stop all your votes for all proposals you are currently voting on." + "title": "Oy gücünü yönetin", + "body": "Tekliflere oy vermek için oylama gücünüzü tanımlayın.", + "hint": "Oylamaya ayırdığınız tüm fonlar kilitlenir. Bunları tekrar harcanabilir hale getirmek için oy gücünüzü azaltmanız gerekir. Bu, aktif oylamaya sahip tüm teklifleri etkiler.", + "amountZero": "Oylama gücünüzü sıfıra ayarlamanın, halihazırda oy vermekte olduğunuz tüm tekliflere ilişkin tüm oylarınızı durduracağını lütfen unutmayın." }, "addProposal": { - "title": "Add proposal", - "body": "Please provide the information listed below to add a proposal.", - "addToAllAccounts": "Add the proposal to all accounts" + "title": "Teklif ekle", + "body": "Teklif eklemek için lütfen aşağıda listelenen bilgileri sağlayın.", + "addToAllAccounts": "Teklifi tüm hesaplara ekleyin" }, "editProposal": { - "title": "Edit proposal", - "body": "Please provide the new url for the node that contains this proposal." + "title": "Teklifi düzenle", + "body": "Lütfen bu teklifi içeren düğümün yeni URL'sini sağlayın." }, "voteForProposal": { - "title": "Vote for proposal", - "body": "You're about to vote for {proposal} proposal.", - "key": "Your voting power", - "hasAbstained": "You are abstaining from answering {numberOfQuestions, plural, one {# question} other {# questions}}.", - "noVotingPower": "You do not have any voting power. Please increase your voting power from the Governance dashboard." + "title": "Teklife oy verin", + "body": "{proposal} teklifine oy vermek üzeresiniz.", + "key": "Oy verme gücünüz", + "hasAbstained": "{numberOfQuestions, plural, one{# question} other{# questions}} yanıt vermekten kaçınıyorsunuz.", + "noVotingPower": "Oy kullanma hakkınız yok. Lütfen Yönetim kontrol panelinden oylama gücünüzü artırın." }, "revote": { - "title": "Revote on proposals", - "body": "Changing your voting power temporarily stops your votes for all proposals from being counted. Simply click \"Revote\" to resume voting.", - "hint": "Firefly remembers all of the proposals and answer options you previously voted for." + "title": "Teklifleri yeniden oylayın", + "body": "Oylama gücünüzü değiştirmek, tüm tekliflere verdiğiniz oyların sayılmasını geçici olarak durdurur. Oylamaya devam etmek için \"Yeniden oyla\"ya tıklamanız yeterlidir.", + "hint": "Firefly, daha önce oy verdiğiniz tüm teklifleri ve yanıt seçeneklerini hatırlar." }, "removeProposal": { - "title": "Remove proposal", - "body": "Are you sure you want to remove this proposal?", - "hint": "Please note that removing a proposal during the counting period will stop your votes but won't impact any votes that have already been counted." + "title": "Teklifi kaldır", + "body": "Bu teklifi kaldırmak istediğinizden emin misiniz?", + "hint": "Sayım döneminde bir teklifin kaldırılmasının oylarınızı durduracağını ancak halihazırda sayılmış olan oyları etkilemeyeceğini lütfen unutmayın." }, "stopVoting": { - "title": "Stop voting", - "body": "You're about to stop voting for the {proposalName} proposal.", - "hint": "Please note that stopping voting during the counting period won't impact any votes that have already been counted." + "title": "Oylamayı durdur", + "body": "{proposalName} teklifine oy vermeyi bırakmak üzeresiniz.", + "hint": "Sayım döneminde oylamayı durdurmanın, halihazırda sayılmış olan oyları etkilemeyeceğini lütfen unutmayın." }, "nodeAuthRequired": { - "title": "Authentication required", - "body": "This node requires additional authentication. Please fill in the appropriate information." + "title": "Kimlik doğrulaması gerekli", + "body": "Bu düğüm ek kimlik doğrulama gerektiriyor. Lütfen uygun bilgileri doldurun." }, "addressHistory": { - "title": "Address history", - "indexAndType": "{internal, select, true {Internal address} other {Deposit address}} {index}", - "internal": "Internal", - "errorNoChronicle": "Chronicle not configured", - "errorFailedFetch": "Couldn't fetch address history", - "errorFailedGenerate": "Couldn't generate a new address" + "title": "Adres geçmişi", + "indexAndType": "{internal, select, true {Dahili adres} other {Depozito adres}} {index}", + "internal": "Dahili", + "errorNoChronicle": "Chronicle yapılandırılmamış", + "errorFailedFetch": "Adres geçmişi alınamadı", + "errorFailedGenerate": "Yeni bir adres oluşturulamadı" }, "withdrawFromL2": { - "title": "Withdraw from L2", - "body": "List of addresses with withdrawable funds", - "withdraw": "Withdraw", - "withdrawing": "Withdrawing..." + "title": "Katman 2'den çekilme", + "body": "Çekilebilir fonlara sahip adreslerin listesi", + "withdraw": "Geri çek", + "withdrawing": "Çekiliyor..." } }, "charts": { @@ -1216,7 +1216,7 @@ "timeframe1Month": "1 ay" }, "actions": { - "apply": "Apply", + "apply": "Uygula", "continue": "Devam Et", "back": "Geri", "previous": "Önceki", @@ -1224,62 +1224,62 @@ "cancel": "İptal", "close": "Çıkış", "dismiss": "Vazgeç", - "claim": "Claim", - "claiming": "Claiming", - "claimingRewards": "Claiming rewards", - "reject": "Reject", + "claim": "Talep et", + "claiming": "Talet ediliyor", + "claimingRewards": "Ödülleri talep edin", + "reject": "Reddet", "confirmRejection": { - "title": "Reject transaction", - "description": "Are you sure you want to reject this transaction?", - "node": "Please note that rejecting a transaction only hides it from your Activity feed" + "title": "İşlemi reddet", + "description": "Bu işlemi reddetmek istediğinizden emin misiniz?", + "node": "Bir işlemi reddetmenin sadece Etkinlik akışınızdan gizlediğini unutmayın" }, "confirmTokenBurn": { - "title": "Burn {assetName}", - "hint": "Please note that burning a token may free storage deposit attached to it and is not reversible" + "title": "{assetName} öğesini yak", + "hint": "Bir tokenı yakmanın, ona bağlı depolama depozitosunu serbest bırakabileceğini ve bu işlemin geri alınamaz olduğunu unutmayın" }, "confirmNftBurn": { - "title": "Burn {nftName}", - "description": "Are you sure you want to burn this NFT?", - "hint": "Please note that burning an NFT frees the storage deposit attached to it and is not reversible." + "title": "{nftName} öğesini yak", + "description": "Bu NFT'yi yakmak istediğinizden emin misiniz?", + "hint": "Bir NFT'nin yakılmasının, kendisine bağlı depolama depozitosunu serbest bıraktığını ve bunun geri alınamayacağını lütfen unutmayın." }, "proceedAnyway": "Yine de devam et", "save": "Kaydet", "importSeed": "Mevcut bir Seed'i içe aktarın", "restoreWallet": { - "iota": "Restore IOTA profile", - "iotaAlphanet": "Restore IOTA Alphanet profile", - "shimmer": "Restore Shimmer profile", - "iotaTestnet": "Restore IOTA Testnet profile", - "shimmerTestnet": "Restore Shimmer Testnet profile", - "custom": "Restore Custom Network profile" + "iota": "IOTA profilini geri yükle", + "iotaAlphanet": "IOTA Alphanet profilini geri yükle", + "shimmer": "Shimmer profilini geri yükle", + "iotaTestnet": "IOTA Testnet profilini geri yükle", + "shimmerTestnet": "Shimmer Testnet profilini geri yükle", + "custom": "Özel Ağ profilini geri yükle" }, "restoreWalletDescription": { - "iota": "Restore an existing IOTA profile", - "iotaAlphanet": "Restore an existing IOTA Alphanet profile", - "shimmer": "Restore an existing Shimmer profile", - "iotaTestnet": "Restore an existing IOTA Testnet profile", - "shimmerTestnet": "Restore an existing Shimmer Testnet profile", - "custom": "Restore an existing Custom Network profile" + "iota": "Mevcut bir IOTA profilini geri yükle", + "iotaAlphanet": "Mevcut bir IOTA Alphanet profilini geri yükle", + "shimmer": "Mevcut bir Shimmer profilini geri yükle", + "iotaTestnet": "Mevcut bir IOTA Testnet profilini geri yükle", + "shimmerTestnet": "Mevcut bir Shimmer Testnet profilini geri yükle", + "custom": "Mevcut bir Özel Ağ profilini geri yükle" }, "refreshNftMedia": { - "title": "Refresh NFT media", - "description": "Do you want to delete and re-download all NFT media for this account?" - }, - "createWallet": "Create a new {network} profile", - "createWalletDescription": "Create a fresh profile running on {network, select, iota {Chrysalis} shimmer {Shimmer} shimmerTestnet {Shimmer Testnet} iotaTestnet {IOTA Testnet} custom {Custom Network} other {Unknown}}", - "claimShimmer": "Claim Shimmer staking rewards", - "claimShimmerDescription": "Import IOTA profile and claim staking rewards", - "migrateFromLegacy": "Migrate from Legacy", - "migrateFromLegacyDescription": "Migrate to Stardust", - "createAlias": "Create alias", - "createAliasDescription": "Create alias output", + "title": "NFT medyasını yenileyin", + "description": "Bu hesap için tüm NFT medyasını silip yeniden indirmek istiyor musunuz?" + }, + "createWallet": "Yeni bir {network} profili oluşturun", + "createWalletDescription": " {network, select, iota {Chrysalis} shimmer {Shimmer} shimmerTestnet {Shimmer Testnet} iotaTestnet {IOTA Testnet} custom {Custom Network} other {Unknown}} üzerinde çalışan yeni bir profil oluşturun", + "claimShimmer": "Shimmer stake ödüllerini talep edin", + "claimShimmerDescription": "IOTA profilinizi içe aktarın ve Shimmer stake ödüllerinizi talep edin", + "migrateFromLegacy": "Eski versiyondan geçiş yap", + "migrateFromLegacyDescription": "Stardust'a geçiş yap", + "createAlias": "Takma ad oluştur", + "createAliasDescription": "Takma ad çıktısı oluştur", "savePassword": "Parolayı kaydet", "useBiometric": "Biyometrik güvenlik kullanın", - "setupPinCode": "Setup PIN code", - "setPin": "Set PIN", - "setPinCode": "Set PIN code", - "confirmPin": "Confirm PIN", - "confirmPinCode": "Confirm PIN code", + "setupPinCode": "PIN kodunu ayarla", + "setPin": "PIN Ayarla", + "setPinCode": "PIN kodunu belirle", + "confirmPin": "PIN'i onayla", + "confirmPinCode": "PIN kodunu onayla", "enterYourPin": "Pin'inizi girin", "saveBackupFile": "Yedek dosyasını kaydet", "iveWrittenRecoveryPhrase": "Kurtarma sözcüklerini not aldım", @@ -1290,7 +1290,7 @@ "send": "Gönder", "receive": "Al", "create": "Oluştur", - "updateAndContinue": "Update and continue", + "updateAndContinue": "Güncelle ve devam et", "beginTransfer": "Transfere başla", "tryAgain": "Tekrar deneyin", "visitDiscord": "Discord'a uğra", @@ -1299,12 +1299,12 @@ "chooseFile": "Bir dosya seçin", "dropHere": "Dosyanızı buraya bırakın", "syncAll": "Tümünü eşitle", - "import": "Import", - "importing": "Importing", + "import": "İçe aktar", + "importing": "İçe aktarılıyor", "export": "Dışarı Aktar", "exporting": "Dışa aktarılıyor", "exportNewStronghold": "Yeni bir Stronghold dışa aktarın", - "enableDeepLinks": "Enable deep links", + "enableDeepLinks": "Derin bağlantıları etkinleştir", "enableDeveloperMode": "Geliştirici modunu etkinleştir", "enableSystemNotifications": "Bildirimleri etkinleştir", "exportTransactionHistory": "İşlem geçmişini dışa aktar", @@ -1312,29 +1312,29 @@ "unlock": "Kilidi Aç", "updateFirefly": "Firefly'ı güncelle", "restartNow": "Şimdi yeniden başlat", - "refresh": "Refresh", + "refresh": "Yenile", "saveBackup": "Stronghold yedeklemeyi kaydet", "customizeAcount": "Cüzdanı özelleştir", - "hideAccount": "Hide wallet", + "hideAccount": "Cüzdanı gizle", "showAccount": "Cüzdanı göster", - "deleteAccount": "Delete wallet", + "deleteAccount": "Cüzdanı sil", "max": "En yüksek", "addNode": "Düğüm ekle", - "addingNode": "Adding node", - "addOfficialNodes": "Add official nodes", + "addingNode": "Düğüm (Node) ekleniyor", + "addOfficialNodes": "Resmi düğümleri (Node) ekle", "updateNode": "Düğümü güncelle", "removeNode": "Düğüm kaldır", "hide": "Sakla", "hideOthers": "Diğerlerini sakla", "showAll": "Hepsini göster", - "useMax": "Use Max", + "useMax": "Maksimum Kullan", "quit": "Çıkış", "edit": "Düzenle", "undo": "Geri al", "redo": "Tekrarla", "cut": "Kes", "copy": "Kopyala", - "copyAllInformation": "Copy all information", + "copyAllInformation": "Tüm bilgileri kopyala", "paste": "Yapıştır", "selectAll": "Hepsini seç", "addAccount": "Cüzdan Ekle", @@ -1348,27 +1348,27 @@ "skip": "Atla", "reset": "Sıfırla", "downloadRecoveryKit": "Kurtarma kit taslağını kaydet", - "skipBackup": "Skip wallet backup", + "skipBackup": "Cüzdan yedeklemesini atla", "finishSetup": "Kurulumu Bitir", "readDocumentation": "Dokümantasyonu oku", "visitFaq": "FAQ ziyaret et", - "viewDownloads": "View downloads", + "viewDownloads": "İndirilenleri göster", "viewStatus": "Durumu görüntüle", "viewAddressHistory": "Adres geçmişini göster", - "viewBalanceBreakdown": "View balance breakdown", - "withdrawFromL2": "Withdraw from L2", - "verifyDepositAddress": "Verify deposit address", + "viewBalanceBreakdown": "Bakiye dökümünü görüntüle", + "withdrawFromL2": "L2'den çekilme", + "verifyDepositAddress": "Para yatırma adresini doğrulayın", "showHiddenAccounts": "Gizli cüzdanları göster", "confirm": "Onayla", "hideNetworkStatistics": "Ağ istatistiklerini gizle", - "findWallets": "Find wallets", + "findWallets": "Cüzdanları bulun", "findBalances": "Bakiyeleri bul", - "useBalanceFinder": "Use balance finder", - "search": "Search", - "searching": "Searching", + "useBalanceFinder": "Bakiye bulucuyu kullan", + "search": "Ara", + "searching": "Aranıyor", "searchAgain": "Tekrar ara", "closeFirefly": "Firefly'ı Kapat", - "generateAddress": "Generate address", + "generateAddress": "Adres oluştur", "migrateAgain": "Başka bir indeks taşı", "visitWebsite": "Web sitesini ziyaret et", "howItWorks": "Nasıl çalışır", @@ -1382,43 +1382,43 @@ "done": "Tamamlandı", "okIUnderstand": "Tamam, anladım", "readMore": "Devamını oku", - "searchForRewards": "Search for rewards", - "claimRewards": "Claim rewards", - "rerunClaimProcess": "Rerun claim process", - "addPublicNote": "Add public note", - "backup": "Backup", - "mint": "Mint", - "mintNativeToken": "Mint native token", - "mintNft": "Mint NFT", - "verifyToken": "Verify token", - "unverifyToken": "Unverify token", - "hideToken": "Hide token", - "unhideToken": "Unhide token", - "burn": "Burn", - "burnToken": "Burn token", - "faucetRequest": "Get {token} tokens", - "refreshTokenMetadata": "Refresh token metadata", + "searchForRewards": "Ödülleri ara", + "claimRewards": "Ödülleri talep edin", + "rerunClaimProcess": "Talep sürecini yeniden çalıştırın", + "addPublicNote": "Genel not ekle", + "backup": "Yedekleme", + "mint": "Basım", + "mintNativeToken": "Yerel token oluştur", + "mintNft": "NFT basımı", + "verifyToken": "Token'i doğrula", + "unverifyToken": "Token'in doğrulamayı iptal et", + "hideToken": "Token'ı gizle", + "unhideToken": "Token'i göster", + "burn": "Yak", + "burnToken": "Token'i yak", + "faucetRequest": "{token} jeton alın", + "refreshTokenMetadata": "Token meta verilerini yenile", "test": "Test", - "testDeepLink": "Test deep link", - "initialize": "Initialize", - "initializing": "Initializing", - "delete": "Delete", - "remove": "Remove", - "addReference": "Add reference", - "depositNft": "Deposit NFTs", - "vote": "Vote", - "addProposal": "Add proposal", - "removeProposal": "Remove proposal", - "changeNode": "Change node", - "stopVoting": "Stop voting", - "revote": "Revote", - "skipAndKeep": "Skip and keep old password", - "addChain": "Add chain", - "viewVestingRewardsFinder": "Find vesting rewards", - "copyProfileSystemLocation": "Copy profile system location" + "testDeepLink": "Derin bağlantıyı test edin", + "initialize": "Başlat", + "initializing": "Başlatılıyor", + "delete": "Sil", + "remove": "Kaldır", + "addReference": "Referans ekle", + "depositNft": "NFT'leri yatırın", + "vote": "Oy", + "addProposal": "Teklif ekle", + "removeProposal": "Teklifi kaldır", + "changeNode": "Düğümü değiştir", + "stopVoting": "Oylamayı durdur", + "revote": "Yeniden oyla", + "skipAndKeep": "Atla ve eski şifreyi koru", + "addChain": "Zincir ekle", + "viewVestingRewardsFinder": "Kazanılan ödülleri bulun", + "copyProfileSystemLocation": "Profil sistemi konumunu kopyala" }, "general": { - "recipient": "Recipient", + "recipient": "Alıcı", "password": "Parola", "confirmPassword": "Parolayı doğrula", "currentPassword": "Geçerli parola", @@ -1431,76 +1431,76 @@ "sending": "Gönderiliyor", "received": "Alındı", "receiving": "Alınıyor", - "newVotingPower": "New voting power", - "votingPower": "Voting power", - "increased": "Voting power increased", - "increasing": "Increasing voting power", - "decreased": "Voting power decreased", - "decreasing": "Decreasing voting power", + "newVotingPower": "Yeni oy gücü", + "votingPower": "Oylama güçü", + "increased": "Oy kullanma gücü arttı", + "increasing": "Oy kullanma gücünün artırılması", + "decreased": "Oy kullanma gücü azaldı", + "decreasing": "Oy kullanma gücünün azaltılması", "voted": "Oylandı", "voting": "Oylama", - "changedVote": "Changed vote", - "changingVote": "Changing vote", - "revoted": "Revoted", - "revoting": "Revoting", + "changedVote": "Oy değiştirildi", + "changingVote": "Oy değiştiriliyor", + "revoted": "Yeniden oy kullanıldı", + "revoting": "Yeniden oy kullanılıyor", "unvoted": "Oy geri alındı", "unvoting": "Oylama iptali", - "sentNft": "NFT sent", - "sendingNft": "Sending NFT", - "receivedNft": "NFT received", - "receivingNft": "Receiving NFT", + "sentNft": "NFT Gönderildi", + "sendingNft": "NFT Gönderiliyor", + "receivedNft": "NFT alındı", + "receivingNft": "NFT alınıyor", "transfer": "Transfer", - "transferring": "Transferring", - "transferNft": "Transfer NFT", - "transferringNft": "Transferring NFT", - "mintedNft": "Minted NFT", - "mintingNft": "Minting NFT", - "shimmerClaimed": "Claimed", - "shimmerClaiming": "Claiming", + "transferring": "Transfer işleniyor", + "transferNft": "NFT Transfer", + "transferringNft": "NFT Transfer ediliyor", + "mintedNft": "Basılmış NFT", + "mintingNft": "NFT basılıyor", + "shimmerClaimed": "Hak talebinde bulunuldu", + "shimmerClaiming": "Talep ediliyor", "shimmerGenesis": "Shimmer Genesis", - "vestingReward": "Vesting Reward Airdrop", + "vestingReward": "Hakediş Ödül Airdrop'u", "stardustGenesis": "Stardust Genesis", - "minted": "Minted", - "minting": "Minting", - "burned": "Burned", - "burning": "Burning", - "consolidated": "Outputs consolidated", - "consolidating": "Consolidating outputs", - "aliasCreated": "Alias created", - "creatingAlias": "Creating Alias", + "minted": "Basılmış", + "minting": "Basılıyor", + "burned": "Yanmış", + "burning": "Yakılıyor", + "consolidated": "Çıktılar konsolide edildi", + "consolidating": "Çıktıları konsolide etme", + "aliasCreated": "Takma ad oluşturuldu", + "creatingAlias": "Takma ad oluşturuluyor", "sendPayment": "Ödemeyi Gönder", "moveFunds": "Dahili Aktarım", "sendTo": "Gönder", - "sendAssets": "Send assets", - "sendAssetToAddress": "Send asset to an address", + "sendAssets": "Varlıkları gönder", + "sendAssetToAddress": "Varlıkları bir adrese gönder", "sendToAddress": "Adresini Gönder", - "sendToken": "Send token", - "sendNft": "Send NFT", - "sendNftToAddress": "Send NFT to an address", + "sendToken": "Token gönder", + "sendNft": "NFT gönder", + "sendNftToAddress": "NFT'yi bir adrese gönder", "scanQrOrPaste": "Bir QR kodunu tarayın veya bir Adres yapıştırın", "moveFundsBetweenAccounts": "Cüzdanlarınız arasında bakiye aktarın", "manageAccount": "Cüzdanı Yönet", "customizeAcount": "Cüzdanınızı özelleştirin", - "account": "Wallet", + "account": "Cüzdan", "sendingToAddress": "Adrese gönderiliyor", "amount": "Tutar", "addAddress": "Adres Ekle", "reference": "Referans", "from": "Gönderen", "to": "Kime", - "and": "and", - "receiveFunds": "Receive funds", + "and": "ve", + "receiveFunds": "Gelen varlıklar", "address": "Adres", - "myAddress": "My address", - "myNetworkAddress": "My {networkName} address", + "myAddress": "Adresim", + "myNetworkAddress": "{networkName} adresim", "shareAddress": "Bir adres paylaşın", "yourAddress": "Adresiniz", "newRemainder": "Yeni Kalan", "remainder": "Kalan", "generateNewAddress": "Yeni adres oluştur", - "copyToClipboard": "Copy to clipboard", + "copyToClipboard": "Panoya kopyala", "copyAddress": "Adresi Kopyala", - "viewOnExplorer": "View on Explorer", + "viewOnExplorer": "Tarayıcıda görüntüle", "import": "İçe aktar", "stronghold": "Stronghold", "language": "Dil", @@ -1509,8 +1509,8 @@ "darkTheme": "Koyu", "systemTheme": "Sistem", "balance": "Bakiye", - "balanceWithValue": "Balance: {balance}", - "balanceWithNetwork": "{network} Balance", + "balanceWithValue": "Bakiye {balance}", + "balanceWithNetwork": "{network} Bakiye", "all": "Genel -> hepsi", "incoming": "Gelen", "outgoing": "Giden", @@ -1525,11 +1525,11 @@ "accountName": "Cüzdan adı", "latestTransactions": "Son transferler", "transactions": "Transferler", - "activity": "Activity", + "activity": "Aktivite", "security": "Güvenlik", "accountAddress": "Cüzdan Adresi", "network": "Ağ", - "destinationNetwork": "Destination network", + "destinationNetwork": "Hedef ağ", "nodes": "Düğümler", "wallet": "Cüzdan", "help": "Yardım", @@ -1539,18 +1539,18 @@ "receiveAddress": "Alım Adresi", "newAddress": "Yeni Adres", "date": "Tarih", - "status": "Status", + "status": "Durum", "confirmed": "Onaylandı", "pending": "Bekleniyor", "noAccounts": "Cüzdanınız yok, lütfen bir tane oluşturun.", "loadingAccounts": "Yükleniyor, lütfen bekleyin...", "addProfile": "Profil Ekle", "noRecentHistory": "Geçmiş bulunamadı", - "noFilteredActivity": "No matching activities", - "noAssets": "No assets", - "noFilteredAsset": "No matching assets", - "thisMonth": "This month", - "search": "Search", + "noFilteredActivity": "Eşleşen etkinlik yok", + "noAssets": "Varlık yok", + "noFilteredAsset": "Eşleşen varlık yok", + "thisMonth": "Bu ay", + "search": "Ara", "firstSync": "Geçmiş senkronize ediliyor, bu biraz zaman alabilir...", "transferSyncing": "Cüzdan senkronize ediliyor", "transferSelectingInputs": "Girişlerin seçimi", @@ -1587,12 +1587,12 @@ "creatingProfile": "Yeni bir hesap oluşturuluyor, lütfen bekleyin...", "fundMigration": "Bakiye taşıma", "accountRemoved": "Bu cüzdan gizlidir. Havale işlemlerini gerçekleştirmek için görünür hale getirin.", - "fromAddress": "from {account}", - "toAddress": "to {account}", - "stakedFor": "Staked for {account}", - "unstakedFor": "Unstaked for {account}", - "votedFor": "Voted for {account}", - "unvotedFor": "Unvoted for {account}", + "fromAddress": "{account} dan", + "toAddress": "{account} ına", + "stakedFor": "{account} için stake edildi", + "unstakedFor": "{account} için stake iptal edildi", + "votedFor": "{account} için oy verildi", + "unvotedFor": "{account} için oy verilmedi", "stakingTransaction": "Genel -> stake İşlemi", "unstakingTransaction": "Genel -> unstaking İşlemi", "legacyNetwork": "Eski Ağ", @@ -1600,194 +1600,194 @@ "version": "Sürüm {version}", "yourWallets": "Genel -> Cüzdanlarınız", "unknown": "Bilinmeyen", - "unknownAddress": "Unknown address", + "unknownAddress": "Bilinmeyen adres", "none": "Hiçbiri", "staked": "Stake edildi", "unstaked": "Stake edilmemiş", "staking": "Staking", "unstaking": "Stake geri alınıyor", "notStaked": "Stake edilmemiş", - "stakedFunds": "Staked funds", + "stakedFunds": "Stake edilen fonlar", "unstakedFunds": "Tahsis edilmemiş fonlar", "accountColor": "Genel -> hesap rengi", - "transactionTime": "Transaction time", - "surplus": "Surplus", - "storageDeposit": "Storage deposit", - "giftedStorageDeposit": "Gifted storage deposit", - "storageDepositPerNft": "Storage deposit per NFT", - "totalStorageDeposit": "Total storage deposit", - "expirationTime": "Expiration time", - "timelockDate": "Timelock", - "claimedTime": "Claimed at", - "nftAddress": "NFT Address", + "transactionTime": "İşlem süresi", + "surplus": "Fazlalık", + "storageDeposit": "Depolama depozitosu", + "giftedStorageDeposit": "Hediye depolama depozitosu", + "storageDepositPerNft": "NFT başına depolama depozitosu", + "totalStorageDeposit": "Toplam depolama depozitosu", + "expirationTime": "Bitiş süresi", + "timelockDate": "Zaman kilidi", + "claimedTime": "Talep edilen tarih", + "nftAddress": "NFT Adres", "nftId": "NFT ID", - "nftMetadata": "NFT Metadata", - "aliasId": "Alias ID", - "governorAddress": "Governor Address", - "stateControllerAddress": "State Controller Address", - "copiedToClipboard": "Copied to clipboard", + "nftMetadata": "NFT Meta Verileri", + "aliasId": "Takma Ad ID (Kimliği)", + "governorAddress": "Yönetici Adresi", + "stateControllerAddress": "Durum Denetleyicisinin Adresi", + "copiedToClipboard": "Panoya kopyalandı", "total": "Toplam: {balance}", - "availableBalanceWithValue": "Available balance: {balance}", - "availableBalance": "Available balance", - "availableBalanceTooltip": "An asset's total balance minus any funds that are required to cover the storage deposit (i.e. funds that are locked in pending transactions, reserved for Native Tokens, or reserved for NFTs).", - "amountClaimed": "{amount} claimed", - "metadata": "Metadata", - "amountConsolidatedInputs": "Consolidated outputs", - "name": "Name", - "tag": "Tag", - "nodeList": "Node list", - "claimedIn": "Claimed in", - "claimingIn": "Claiming in", - "assets": "Assets", - "nativeTokens": "Native tokens", - "mintNativeTokenDescription": "Mint native token following IRC30 standard", - "mintNftDescription": "Mint NFT following IRC27 standard", - "faucetRequestDescription": "Request tokens from the {network} faucet", - "refreshTokenMetadataDescription": "Reset and refresh all token metadata", - "refreshTokenMetadataHint": "This will reset all your tokens' metadata including the verification status and unhide any hidden assets.", - "giftStorageDeposit": "Gift storage deposit", - "excluded": "Excluded", - "developerTools": "Developer tools", - "testDeepLinkDescription": "Simulate a deep link request sent to firefly", + "availableBalanceWithValue": "Mevcut bakiye: {balance}", + "availableBalance": "Kullanılabilir bakiye", + "availableBalanceTooltip": "Bir varlığın toplam bakiyesi, depolama depozitosunu karşılamak için gereken fonlar (yani, bekleyen işlemlerde kilitli olan fonlar, Native Token'lar için ayrılanlar veya NFT'ler için ayrılanlar) hariçtir.", + "amountClaimed": "{amount} talep edildi", + "metadata": "Meta veriler", + "amountConsolidatedInputs": "Konsolide çıktılar", + "name": "İsim", + "tag": "Etiket", + "nodeList": "Düğüm listesi", + "claimedIn": "Talep edildiği tarih", + "claimingIn": "Talet ediliyor", + "assets": "Varlıklar", + "nativeTokens": "Yerel tokenler", + "mintNativeTokenDescription": "IRC30 standardını takip ederek yerel token oluşturun", + "mintNftDescription": "IRC27 standardını takip ederek NFT oluşturma", + "faucetRequestDescription": "{network} musluğundan jeton isteyin", + "refreshTokenMetadataDescription": "Tüm token metadata'sını sıfırla ve yenile", + "refreshTokenMetadataHint": "Bu, tüm tokenlerinizin meta verilerini sıfırlayacak, doğrulama durumunu da içeren ve gizlenmiş varlıkları ortaya çıkaracak.", + "giftStorageDeposit": "Hediye depolama depozitosu", + "excluded": "Hariç tutulan", + "developerTools": "Geliştirici araçları", + "testDeepLinkDescription": "Firefly'a gönderilen derin bağlantı isteğini simüle edin", "url": "URL", - "hash": "Hash", - "creating": "Creating", - "updating": "Updating", - "enterAddress": "Enter address", - "transaction": "Transaction", - "alias": "Alias", - "foundry": "Foundry", - "token": "Token", + "hash": "Doğrulama verisi", + "creating": "Oluşturuluyor", + "updating": "Güncelleniyor", + "enterAddress": "Adresi girin", + "transaction": "İşlem", + "alias": "Takma ad", + "foundry": "Dökümhane", + "token": "Token (Jeton)", "nft": "NFT", - "type": "Type", - "immutableIssuer": "Immutable Issuer", - "smartContract": "Smart Contract", - "targetContract": "Target contract", - "contractFunction": "Contract function", - "gasFee": "Gas fee", - "standard": "Standard", - "uri": "URI", - "issuer": "Issuer", - "issuerAddress": "Issuer Address", - "issuerName": "Issuer Name", - "quantity": "Quantity", - "collection": "Collection", - "collectionId": "Collection ID", - "collectionName": "Collection Name", - "royalties": "Royalties", - "description": "Description", - "attributes": "Attributes", - "details": "Details", - "availableAmount": "{amount} available", - "properties": "Properties", - "statistics": "Statistics", - "username": "Username", - "jwt": "JSON web token", - "internalTransaction": "Internal transaction", - "coinType": "Coin type", - "custom": "Custom", - "verifyLedgerDepositAddress": "Please check the ledger device and verify that the deposit address matches the one displayed on the ledger device" + "type": "Tip", + "immutableIssuer": "Değişmez İhraççı", + "smartContract": "Akıllı Sözleşme", + "targetContract": "Hedef sözleşme", + "contractFunction": "Sözleşme işlevi", + "gasFee": "İşlem ücreti", + "standard": "Standart", + "uri": "URl", + "issuer": "İhraççı", + "issuerAddress": "İhraççı Adresi", + "issuerName": "İhraççı Adı", + "quantity": "Miktar", + "collection": "Koleksiyon", + "collectionId": "Koleksiyon ID (Kimliği)", + "collectionName": "Koleksiyon Adı", + "royalties": "Telif Hakları", + "description": "Açıklama", + "attributes": "Öznitelikler", + "details": "Ayrıntılar", + "availableAmount": "{amount} mevcut", + "properties": "Özellikler", + "statistics": "İstatistikler", + "username": "Kullanıcı Adı", + "jwt": "JSON web belirteci", + "internalTransaction": "Dahili işlem", + "coinType": "Coin tipi", + "custom": "Genel", + "verifyLedgerDepositAddress": "Lütfen Ledger cihazını kontrol edin ve yatırma adresinin Ledger cihazında görüntülenen adresle eşleştiğinden emin olun" }, "filters": { - "title": "Filters", + "title": "Filtreler", "showHidden": { - "label": "Show hidden", - "yes": "Yes", - "no": "No" + "label": "Gizlenenleri göster", + "yes": "Evet", + "no": "Hayır" }, "showRejected": { - "label": "Show rejected", - "yes": "Yes", - "no": "No" + "label": "Reddedilenleri göster", + "yes": "Evet", + "no": "Hayır" }, "showValueless": { - "label": "Show valueless", - "yes": "Yes", - "no": "No" + "label": "Değersiz olanı göster", + "yes": "Evet", + "no": "Hayır" }, "ascDesc": { - "Asc": "Ascending", - "Desc": "Descending" + "Asc": "Artan", + "Desc": "Azalan" }, "assetOrder": { - "label": "Order", - "Name": "Name", - "Amount": "Amount" + "label": "Emir", + "Name": "İsim", + "Amount": "Tutar" }, "internalExternal": { - "label": "Internal / External", - "internal": "Internal", - "external": "External" + "label": "Dahili / Harici", + "internal": "Dahili", + "external": "Harici" }, "verificationStatus": { - "label": "Verification status", - "new": "New", - "skipped": "Skipped verification", - "selfVerified": "Self-verified", - "official": "Official" + "label": "Doğrulama durumu", + "new": "Yeni", + "skipped": "Doğrulamayı atla", + "selfVerified": "Kendinden doğrulanmış", + "official": "Resmi" }, "asset": { - "label": "Assets" + "label": "Varlıklar" }, "amount": { - "label": "Amount", - "equal": "is equal to", - "range": "is between", - "greater": "is greater than", - "less": "is less than" + "label": "Tutar", + "equal": "eşittir", + "range": "arasında", + "greater": "daha büyüktür", + "less": "daha küçüktür" }, "date": { - "label": "Date", - "equals": "is equal to", - "last": "in the last", - "range": "is between", - "after": "is after", - "afterOrEquals": "is on or after", - "before": "is before", - "Days": "days", - "Months": "months", - "Years": "years" + "label": "Tarih", + "equals": "eşittir", + "last": "sonunda", + "range": "arasında", + "after": "sonrasında", + "afterOrEquals": "şimdi ya da sonrasında", + "before": "öncesinde", + "Days": "günler", + "Months": "aylar", + "Years": "yıllar" }, "status": { - "label": "Status", - "confirmed": "confirmed", - "pending": "pending", - "claimed": "claimed", - "unclaimed": "unclaimed" + "label": "Durum", + "confirmed": "onaylandı", + "pending": "bekleniyor", + "claimed": "alındı", + "unclaimed": "alınmadı" }, "type": { - "label": "Type", - "basic": "Basic", + "label": "Tip", + "basic": "Temel", "nft": "NFT", - "alias": "Alias", - "foundry": "Foundry", - "governance": "Governance", - "consolidation": "Consolidation", - "vesting": "Vesting" + "alias": "Takma ad", + "foundry": "Dökümhane", + "governance": "Yönetim", + "consolidation": "Konsolidasyon", + "vesting": "Hakediş" }, "direction": { - "label": "Direction", - "incoming": "Incoming", - "outgoing": "Outgoing", - "selfTransaction": "Self transaction" + "label": "Yön", + "incoming": "Gelen", + "outgoing": "Giden", + "selfTransaction": "Kendi kendine işlem" }, "proposalType": { - "label": "Type", - "official": "Official", - "custom": "Custom" + "label": "Tip", + "official": "Resmi", + "custom": "Genel" }, "phase": { - "label": "Phase" + "label": "Aşama" }, "participated": { - "label": "Participated", - "yes": "Yes", - "no": "No" + "label": "Katıldı", + "yes": "Evet", + "no": "Hayır" }, "proposalOrder": { - "label": "Order", - "name": "Name", - "phase": "Phase" + "label": "Emir", + "name": "İsim", + "phase": "Aşama" } }, "dates": { @@ -1827,68 +1827,68 @@ "error": "{accountAlias} için işlem geçmişi dışa aktarılamıyor" }, "deepLinkingRequest": { - "receivedWhileLoggedOut": "Please login to initiate the deep link", - "notEnabled": "Deep links are not enabled", - "invalidFormat": "The deep link you followed is invalid", - "invalidAmount": "The amount in deep link is not an integer number {amount}", - "invalidSurplus": "The surplus in deep link is not a number {surplus}", - "surplusNotSupported": "The surplus is only supported for native tokens", + "receivedWhileLoggedOut": "Derin bağlantıyı başlatmak için lütfen giriş yapın", + "notEnabled": "Derin bağlantılar etkin değil", + "invalidFormat": "Takip ettiğiniz derin bağlantı geçersiz", + "invalidAmount": "Derin bağlantıdaki miktar bir tam sayı değil {amount}", + "invalidSurplus": "Derin bağlantıdaki fazlalık bir sayı değil{surplus}", + "surplusNotSupported": "Fazlalık yalnızca yerel tokenlar için desteklenir", "governance": { - "unrecognizedOperation": "Unrecognized Governance operation: {operation}" + "unrecognizedOperation": "Tanınmayan Yönetişim işlemi: {operation}" }, "wallet": { "send": { - "success": "Payment details added from deep link" + "success": "Ödeme detayları derin bağlantıdan eklendi" }, - "unrecognizedOperation": "Unrecognized wallet operation: {operation}" + "unrecognizedOperation": "Tanınmayan cüzdan işlemi: {operation}" } }, "syncing": "Cüzdanları değiştirmek için lütfen senkronizasyon bitene kadar bekleyin.", - "transferring": "Please wait until all transactions are completed.", - "participating": "Please wait until all staking/voting transactions are completed to change wallets.", + "transferring": "Lütfen tüm işlemler tamamlanana kadar bekleyin.", + "participating": "Cüzdanları değiştirmek için lütfen senkronizasyon bitene kadar bekleyin.", "claimed": { - "success": "Transaction claimed", - "error": "Claiming transaction failed" + "success": "İşlem talep edildi", + "error": "İşlem talep etme başarısız oldu" }, "hideActivity": { - "success": "Activity was hidden", - "error": "Failed to hide activity" + "success": "Etkinlik gizlendi", + "error": "Etkinlik gizlenemedi" }, "faucetRequest": { - "success": "Request for tokens sent to the faucet" + "success": "Token isteği faucet'e gönderildi" }, "mintNativeToken": { - "success": "Native token minting transaction sent" + "success": "Yerel token basım işlemi gönderildi" }, "burnNativeToken": { - "success": "Native token burning transaction sent" + "success": "Yerel token yakma işlemi gönderildi" }, "mintNft": { - "success": "NFT minting transaction sent" + "success": "NFT basım işlemi gönderildi" }, "burnNft": { - "success": "NFT burning transaction sent" + "success": "NFT yakma işlemi gönderildi" }, "refreshTokenMetadata": { - "success": "All token metadata has been reset and refreshed" + "success": "Tüm token meta verileri sıfırlandı ve yenilendi" }, "restoreFromStrongholdBackup": { - "wrongProtocol": "Protocol doesn't match coin type found in Stronghold backup", - "wrongProtocolForClaiming": "You must use an IOTA-based Stronghold backup to claim Shimmer rewards" + "wrongProtocol": "Protokol, Stronghold yedeklemesinde bulunan para birimi tipiyle eşleşmiyor", + "wrongProtocolForClaiming": "Shimmer ödüllerini talep etmek için IOTA tabanlı bir Stronghold yedeği kullanmalısınız" }, "findShimmerRewards": { - "success": "Successfully found Shimmer rewards", - "error": "An error occurred while searching for rewards" + "success": "Shimmer ödülleri başarıyla bulundu", + "error": "Ödüller aranırken bir hata oluştu" }, "claimShimmerRewards": { - "success": "Shimmer rewards claimed for {accountAlias}", - "error": "An error occurred while claiming. Try again." + "success": "{accountAlias} için Shimmer ödülleri talep edildi", + "error": "Talepte bulunurken bir hata oluştu. Tekrar deneyin." }, "vote": { - "success": "Votes successfully cast" + "success": "Oylar başarıyla kullanıldı" }, "stopVoting": { - "success": "Voting successfully stopped" + "success": "Oylama başarıyla durduruldu" } }, "error": { @@ -1898,9 +1898,9 @@ "delete": { "nonEmptyAccounts": "Profilinizi silmeden önce tüm bakiyeleri transfer etmelisiniz." }, - "type": "Unable to determine the profile type", - "setupType": "Unable to determine the profile setup type", - "chrysalisDevnetStardustError": "You can't access this profile because Chrysalis Devnet is not supported in this version of Firefly. Please use a Chrysalis compatible Firefly version." + "type": "Profil tipi belirlenemiyor", + "setupType": "Profil kurulum tipi belirlenemiyor", + "chrysalisDevnetStardustError": "Bu profile erişemezsiniz çünkü Chrysalis Devnet bu Firefly sürümünde desteklenmiyor. Lütfen Chrysalis uyumlu bir Firefly sürümü kullanın." }, "password": { "doNotMatch": "Parolalar eşleşmiyor.", @@ -1918,19 +1918,19 @@ "word": "Tek bir kelimenin tahmin edilmesi kolaydır.", "incorrect": "Şifreniz doğru değil.", "length": "Şifreniz şundan uzun olamaz {length, plural, one {# karakter} other {# karakterler}}.\n", - "sameAsOld": "Your new password must be different from your old password." + "sameAsOld": "Yeni parolanız eski parolanızdan farklı olmalıdır." }, "pincode": { "length": "PIN'iniz {length, plural, one {# rakam} other {# rakamlar}} uzunluğunda olmalıdır.", "match": "PIN'ler eşleşmiyor.", "incorrect": "Mevcut şifreniz yanlış.", - "invalid": "Invalid PIN code." + "invalid": "Geçersiz PIN kodu." }, "address": { - "wrongAddressType": "Wrong address type" + "wrongAddressType": "Yanlış adres türü" }, "account": { - "addressNotFound": "The address cannot be found in your account.", + "addressNotFound": "Adres hesabınızda bulunamadı.", "length": "Cüzdan adınız şundan uzun olamaz {length, plural, one {# karakter} other {# karakterler}}.\n", "emptyName": "hata -> hesap -> boş ad", "notEmpty": "Bu cüzdanı silmeden önce bakiyenizi transfer etmelisiniz.", @@ -1942,70 +1942,70 @@ "index": "Hesap indeksiniz 0 ile 2.147.483.647 arasında bir sayı olmalıdır.", "page": "Hesap sayfanız 0 ile 2.147.483.647 arasında bir sayı olmalıdır.", "syncing": "Cüzdanlarınız senkronize edilirken bir hata oluştu.", - "cannotRemove": "Unable to remove wallet.", - "withBalance": "You must transfer all balances before you can delete this wallet.", - "notLast": "You can only delete your last wallet.", - "notFound": "Unable to find account", - "cannotGetBoundAccount": "Unable to get bound account" + "cannotRemove": "Cüzdan kaldırılamıyor.", + "withBalance": "Bu cüzdanı silmeden önce tüm bakiyeleri aktarmanız gerekir.", + "notLast": "Yalnızca son cüzdanınızı silebilirsiniz.", + "notFound": "Hesap bulunamıyor", + "cannotGetBoundAccount": "Bağlı hesap alınamıyor" }, "send": { "addressLength": "Adresler şu şekilde olmalıdır {length, plural, one {# karakter} other {# karakterler}} long.", "amountTooHigh": "Bu, mevcut bakiyenizden daha büyüktür.", - "amountNoFloat": "Cannot use decimal places with the smallest unit selected", + "amountNoFloat": "En küçük birim seçiliyken ondalık basamaklar kullanılamaz", "amountInvalidFormat": "Miktar geçersiz görünüyor.", - "amountSmallerThanSubunit": "The amount must be greater than the smallest subunit.", - "tagTooLong": "The tag cannot be longer than 64 bytes.", - "metadataTooLong": "The metadata cannot be longer than 8192 bytes.", + "amountSmallerThanSubunit": "Miktar en küçük alt birimden daha büyük olmalıdır.", + "tagTooLong": "Etiket 64 byte'tan uzun olamaz.", + "metadataTooLong": "Meta veri 8192 byte'tan uzun olamaz.", "amountZero": "Miktar 0'dan büyük olmalıdır.", "wrongAddressPrefix": "Adresler {prefix} ön eki ile başlar.", "wrongAddressFormat": "Adres doğru şekilde biçimlendirilmemiş.", "invalidAddress": "Adres geçerli değil.", - "invalidExpirationDate": "The expiration date is not valid.", - "pastExpirationDate": "The expiration date is in the past.", - "invalidAssetId": "The asset id is not valid.", - "unknownAsset": "The asset is not known to this account.", + "invalidExpirationDate": "Son kullanma tarihi geçerli değil.", + "pastExpirationDate": "Son kullanma tarihi geçmişe ait.", + "invalidAssetId": "Varlık kimliği geçerli değil.", + "unknownAsset": "Varlık bu hesap tarafından bilinmiyor.", "insufficientFunds": "Cüzdan bakiyesi yetersiz.", - "insufficientFundsStorageDeposit": "Insufficient funds to cover the storage deposit.", - "ongoingTransaction": "If you have ongoing transactions, please wait for their confirmation.", - "cannotClaimTwice": "Output has been already claimed", + "insufficientFundsStorageDeposit": "Depolama depozitosunu karşılamak için yeterli fon yok.", + "ongoingTransaction": "Devam eden işlemleriniz varsa, lütfen onaylanmasını bekleyin.", + "cannotClaimTwice": "Çıktı zaten talep edildi", "noToAccount": "Bakiyeyi göndermek için bir cüzdan seçmediniz.", "sendingDust": "1 Mi den daha az gönderim yapamazsınız.", - "leavingDust": "You cannot leave less than the minimum required storage deposit ({minRequiredStorageDeposit}) on your address.", + "leavingDust": "Adresinizde minimum gereken depolama depozitosundan ({minRequiredStorageDeposit}) daha az bırakamazsınız.", "cancelled": "İşlem iptal edildi.", "transaction": "İşleminiz gönderilirken bir hata oluştu. Lütfen tekrar deneyin.", - "invalidExpirationDateTime": "The chosen expiration date/time is invalid.", - "noInputs": "No inputs found.", - "notEnoughBalance": "Not enough balance.", - "missingTransactionId": "The transaction ID is missing", - "missingTransactionProgressEventPayload": "The transaction progress event payload is missing", - "recipientRequired": "Recipient is required", - "nftRequired": "NFT is required", - "nftNotInHex": "NFT address has to be in HEX format", - "nftNotInPossession": "NFT not in possession", - "reservedTagKeyword": "Unable to use reserved tag keyword" + "invalidExpirationDateTime": "Seçilen son kullanma tarihi/saati geçersiz.", + "noInputs": "Giriş bulunamadı.", + "notEnoughBalance": "Yetersiz bakiye.", + "missingTransactionId": "İşlem Kimliği (Transaction ID) eksik", + "missingTransactionProgressEventPayload": "İşlem ilerleme olayı verisi eksik", + "recipientRequired": "Alıcı gerekli", + "nftRequired": "NFT gerekli", + "nftNotInHex": "NFT adresi HEX formatında olmalıdır", + "nftNotInPossession": "NFT elde edilmedi", + "reservedTagKeyword": "Ayrılmış etiket anahtar sözcüğü kullanılamıyor" }, "layer2": { - "layer1Recipient": "A layer 2 transaction cannot be sent to a layer 1 account.", - "estimatedGas": "Failed to estimate gas." + "layer1Recipient": "Katman 2 işlemi, katman 1 hesabına gönderilemez.", + "estimatedGas": "Gas (gönderi ücreti) tahmin edilemedi" }, "node": { "invalid": "Lütfen geçerli bir URL giriniz.", - "dns": "Unable to find DNS resolution for node", + "dns": "Düğüm için DNS çözümlemesi bulunamıyor", "timedOut": "Bağlantı zaman aşımına uğradı.", "refused": "Bağlantı reddedildi.", "handshake": "Node ile anlaşma tamamlanamadı.", "invalidCertificate": "Geçersiz sertifika ile bağlanılamadı.", - "https": "External connections must use HTTPS; localhost connections can be made using HTTP. Insecure external HTTP connections are not supported.", + "https": "Harici bağlantılar HTTPS kullanmalıdır; localhost bağlantıları HTTP kullanılarak yapılabilir. Güvensiz harici HTTP bağlantıları desteklenmez.", "duplicate": "Bu sunucu zaten eklenmiş.", - "noSyncedNode": "No synced node is available.", - "timeNotSynced": "Device time is incorrect, unable to sync node.", + "noSyncedNode": "Senkronize edilmiş düğüm mevcut değil.", + "timeNotSynced": "Cihaz saati yanlış, düğüm senkronize edilemiyor.", "answer": "Tüm nodelardan yanıt alınamadı.", "forbidden": "Bu node bağlantısı yasaktır.", "pluginNotAvailable": "\"{nodePlugin}\" eklentisi bu node'da mevcut değil.", - "unabledToConnect": "Unable to connect to the node", - "differentNetwork": "The node is located on a different network", - "duplicateNodes": "Unable to add duplicate node", - "noCoinType": "No coin type specified" + "unabledToConnect": "Düğüme bağlanılamıyor", + "differentNetwork": "Düğüm farklı bir ağda bulunuyor", + "duplicateNodes": "Yinelenen düğüm eklenemiyor", + "noCoinType": "Belirtilen coin türü yok" }, "network": { "mismatch": "Bu düğümün ağ kimliği \"{networkId}\", mevcut ağla eşleşmeyen.", @@ -2020,24 +2020,24 @@ "invalid": "Yedek dosyası okunamaz.", "destination": "Yedekleme noktası geçerli değil.", "mnemonic": "Hatırlatıcı geçerli değil.", - "migrationRequired": "Stronghold migration is required.", + "migrationRequired": "Stronghold geçişi gereklidir.", "seedTooShort": "Tohum 81 karakter uzunluğunda olmalıdır, o {length, plural, one {is #} other {is #}}", "seedCharacters": "Seed sadece A-Z veya 9 karakterlerini içeriyor olmalıdır", "phraseWordCount": "Kurtarma ifadenizde 24 kelime olmalıdır, şuan {length, plural, one {is #} other {are #}}.", "phraseUnrecognizedWord": "Kurtarma cümlenizde \"{word}\" bilinmeyen kelime", "phraseCaseWord": "Bu kelime \"{word}\" küçük harflerden oluşmalıdır", - "unableToCopyFile": "Unable to copy Stronghold backup file", - "unableToRestoreForProfileManager": "Unable to restore Stronghold backup for profile manager" + "unableToCopyFile": "Stronghold yedekleme dosyası kopyalanamıyor", + "unableToRestoreForProfileManager": "Profil yöneticisi için Stronghold yedeği geri yüklenemiyor" }, "ledger": { - "appNotOpen": "You must open the {network} app on your Ledger device.", + "appNotOpen": "Ledger cihazınızda {network} uygulamasını açmalısınız.", "generic": "Ledger cihazınıza bağlanırken bir hata oluştu.", "legacyConnected": "Ledger cihazınızda yanlış uygulama açık.", "locked": "Lütfen PIN'i girerek Ledger cihazınızın kilidini açın.", "mnemonicMismatch": "Yanlış Ledger cihazını bağladınız veya anımsatıcı değişti.", - "notConnected": "No Ledger device detected.", + "notConnected": "Ledger cihazı algılanamadı.", "notFound": "Ledger cihazı bulunamadı.", - "otherConnected": "The wrong app is open on your Ledger device.", + "otherConnected": "Ledger cihazınızda yanlış uygulama açık.", "generateAddress": "Adres oluşturulurken bir hata oluştu.", "timeout": "Ledger cihazınız zaman aşımına uğradı.", "disconnected": "Ledger cihazınızın bağlantısı kesildi.", @@ -2061,72 +2061,72 @@ "invalidDate": "GEÇERSİZ TARİH", "invalidTime": "GEÇERSİZ ZAMAN", "shimmerClaiming": { - "missingProfileManager": "Unable to find Shimmer claiming profile manager", - "cannotInitialiseAccount": "Unable to initialize Shimmer claiming account", - "missingAccount": "Unable to find Shimmer claiming account" + "missingProfileManager": "Profil yöneticisini talep eden Shimmer bulunamıyor", + "cannotInitialiseAccount": "Shimmer talep eden hesap başlatılamıyor", + "missingAccount": "Shimmer'ın talep ettiği hesap bulunamıyor" }, "walletApiEvent": { - "invalidAccountIndex": "Invalid account index for {eventName} event", - "invalidPayload": "Invalid payload for {eventName} event" + "invalidAccountIndex": "{eventName} etkinliği için geçersiz hesap dizini", + "invalidPayload": "{eventName} etkinliği için geçersiz veri" }, "aliasMinting": { - "aliasRequired": "Alias is required", - "aliasNotInPossession": "Alias not in possession" + "aliasRequired": "Takma ad gereklidir", + "aliasNotInPossession": "Takma ad elde edilmedi" }, - "noOutputsToConsolidate": "Not enough outputs to consolidate", + "noOutputsToConsolidate": "Konsolide etmek için yeterli çıkış yok", "eventId": { - "doesNotStartWith0x": "Event ID should start with '0x'", - "insufficientLength": "Event ID should be 66 characters long", - "alreadyRegistered": "Event ID already registered" + "doesNotStartWith0x": "Etkinlik Kimliği '0x' ile başlamalıdır", + "insufficientLength": "Etkinlik ID (Kimliği) 66 karakter uzunluğunda olmalıdır", + "alreadyRegistered": "Etkinlik ID (Kimliği) zaten kayıtlı" }, "nft": { "unsupportedUrl": { - "short": "Url not supported", - "long": "Url schema not supported" + "short": "URL desteklenmiyor", + "long": "URL şeması desteklenmiyor" }, "unsupportedFileType": { - "short": "Unsupported media type", - "long": "The media type is not currently supported" + "short": "Desteklenmeyen medya türü", + "long": "Medya türü şu anda desteklenmiyor" }, "notMatchingFileTypes": { - "short": "Loading blocked", - "long": "NFT file type does not match the expected media type" + "short": "Yükleme engellendi", + "long": "NFT dosya türü beklenen ortam türüyle eşleşmiyor" }, "notReachable": { - "short": "Not reachable", - "long": "NFT file is not reachable" + "short": "Ulaşılamaz", + "long": "NFT dosyasına ulaşılamıyor" }, "tooLargeFile": { - "short": "File is too large", - "long": "Loading NFT blocked because the file is too large" + "short": "Dosya çok büyük", + "long": "Dosya çok büyük olduğundan NFT'nin yüklenmesi engellendi" }, "downloadTooLong": { - "short": "File took too long to download", - "long": "Loading NFT blocked because the file took too long to download" + "short": "Dosyanın indirilmesi çok uzun sürdü", + "long": "NFT yüklemesi engellendi çünkü dosyanın indirilmesi çok uzun sürdü" }, "corsError": { - "short": "Loading blocked", - "long": "Loading NFT blocked by CORS policy" + "short": "Yükleme engellendi", + "long": "CORS politikası tarafından engellenen NFT yükleniyor" }, "unsafeToLoad": { - "short": "Unsafe to load", - "long": "An error occurred while checking if the NFT was safe to load" + "short": "Yüklemek güvenli değil", + "long": "NFT'nin yüklenmesinin güvenli olup olmadığı kontrol edilirken bir hata oluştu" }, "loadingError": { - "short": "Unable to load", - "long": "An error occurred while loading the NFT" + "short": "Yüklenemedi", + "long": "NFT yüklenirken bir hata oluştu" } }, "governance": { "unableToAddProposal": { - "short": "Unable to add proposal", - "long": "Unable to find proposal {proposalId} on the specified node" + "short": "Teklif eklenemiyor", + "long": "Belirtilen düğümde {proposalId} teklifi bulunamıyor" } } }, "warning": { "transaction": { - "invalidExpirationDateTime": "The chosen expiration date is invalid." + "invalidExpirationDateTime": "Seçilen son kullanma tarihi geçersiz." }, "node": { "http": "HTTP üzerinden düğümlerin kullanılması trafiği şifrelenmemiş halde bırakır ve bir güvenlik riski oluşturabilir." @@ -2135,7 +2135,7 @@ "noFunds": "Hiç IOTA nız yok." }, "nft": { - "flagged": "Be careful when following unknown links. Never share your private keys, nor enter them into any websites or services." + "flagged": "Bilinmeyen bağlantıları takip etmekte dikkatli olun. Özel anahtarlarınızı asla paylaşmayın veya bunları herhangi bir web sitesine veya hizmete girmeyin." } }, "tooltips": { @@ -2164,81 +2164,81 @@ "bodyDidNotReachMin": "{airdrop} için minimum ödül değerine ({airdropRewardMin}) ulaşmak için yeterli IOTA stake etmediniz.", "bodyMinBalanceAirdrop": "Bu cüzdanda {airdrop} minimum airdrop ödülüne ulaşmak için yeterli IOTA jetonu yok." }, - "optionalInput": "This optional data will be public on the explorer and viewable by everyone.", + "optionalInput": "Bu isteğe bağlı veriler gezginde herkese açık olacak ve herkes tarafından görülebilecektir.", "transactionDetails": { "minting": { - "storageDeposit": "A refundable token deposit needed to store your transaction on the Tangle.", - "giftedStorageDeposit": "The storage deposit for this transaction was gifted to you. You do not need to refund the deposit.", - "expirationTime": "Claim these funds before the expiration time or they will be returned to the sender.", - "timelockDate": "The sender set a timelock on these funds. You will be able to spend them once the timelock expires.", - "metadata": "An optional data field for storing data persistently on the Tangle.", - "tag": "A short optional data field. Tagging groups of transactions can make them easier to search for." + "storageDeposit": "İşleminizi Tangle'da saklamak için iade edilebilir bir token depozitosu gerekiyor.", + "giftedStorageDeposit": "Bu işleme ait depo depozitosu size hediye edildi. Depozitoyu iade etmenize gerek yoktur.", + "expirationTime": "Bu fonları son kullanma süresinden önce talep edin, aksi takdirde gönderene iade edilecektir.", + "timelockDate": "Gönderen, bu fonlara bir zaman aşımı belirledi. Zaman kilidi sona erdiğinde bunları harcayabileceksiniz.", + "metadata": "Verileri Tangle'da kalıcı olarak depolamak için isteğe bağlı bir veri alanı.", + "tag": "Kısa isteğe bağlı veri alanı. İşlem gruplarını etiketlemek, onları daha kolay bulunabilir hale getirebilir." }, "incoming": { - "storageDeposit": "A refundable token deposit needed to store your transaction on the Tangle.", - "giftedStorageDeposit": "The storage deposit for this transaction was gifted to you. You do not need to refund the deposit.", - "expirationTime": "Claim these funds before the expiration time or they will be returned to the sender.", - "timelockDate": "The sender set a timelock on these funds. You will be able to spend them once the timelock expires.", - "metadata": "An optional data field for storing data persistently on the Tangle.", - "tag": "A short optional data field. Tagging groups of transactions can make them easier to search for.", - "gasFee": "Gas fee is required to conduct a transaction or execute a smart contract function on Shimmer EVM." + "storageDeposit": "İşleminizi Tangle'da saklamak için iade edilebilir bir token depozitosu gerekiyor.", + "giftedStorageDeposit": "Bu işleme ait depo depozitosu size hediye edildi. Depozitoyu iade etmenize gerek yoktur.", + "expirationTime": "Bu fonları son kullanma süresinden önce talep edin, aksi takdirde gönderene iade edilecektir.", + "timelockDate": "Gönderen, bu fonlara bir zaman aşımı belirledi. Zaman kilidi sona erdiğinde bunları harcayabileceksiniz.", + "metadata": "Verileri Tangle'da kalıcı olarak depolamak için isteğe bağlı bir veri alanı.", + "tag": "Kısa isteğe bağlı veri alanı. İşlem gruplarını etiketlemek, onları daha kolay bulunabilir hale getirebilir.", + "gasFee": "Shimmer EVM üzerinde bir işlem yapmak veya akıllı bir kontrat işlevini çalıştırmak için bir gaz ücreti gereklidir." }, "outgoing": { - "storageDeposit": "A storage deposit is a refundable deposit needed to store your transaction on the Tangle.", - "giftedStorageDeposit": "The recipient does not need to refund the deposit.", - "expirationTime": "If the recipient does not claim in time your tokens will be returned to you.", - "timelockDate": "You added a timelock to this transaction. The recipient will not be able to spend these funds until the timelock expires.", - "metadata": "An optional data field for storing data persistently on the Tangle.", - "tag": "A short optional data field. Tagging groups of transactions can make them easier to search for.", - "gasFee": "Gas fee is required to conduct a transaction or execute a smart contract function on Shimmer EVM." + "storageDeposit": "Depolama depozitosu, işleminizi Tangle'da saklamak için gereken iade edilebilir bir depozitodur.", + "giftedStorageDeposit": "Alıcının depozitoyu iade etmesine gerek yoktur.", + "expirationTime": "Alıcının zamanında talepte bulunmaması halinde tokenleriniz size iade edilecektir.", + "timelockDate": "Bu işleme bir zaman kilidi eklediniz. Alıcı, zaman kilidi sona erene kadar bu fonları harcayamayacak.", + "metadata": "Verileri Tangle'da kalıcı olarak depolamak için isteğe bağlı bir veri alanı.", + "tag": "Kısa isteğe bağlı bir veri alanı. İşlem gruplarını etiketlemek, onları aramayı daha kolay hale getirebilir.", + "gasFee": "Shimmer EVM üzerinde bir işlem yapmak veya akıllı bir kontrat işlevini çalıştırmak için bir gaz ücreti gereklidir." }, "nftMetadata": { - "standard": "The NFT standard e.g. IRC27.", - "type": "The MimeType of the NFT. e.g. image/png.", - "collectionId": "UTXO string of the collection NFT that minted this NFT", - "royalties": "An object containing key-value pairs of addresses that map to payout percentages", - "issuerName": "The name of the creator", - "attributes": "An array of traits and values that define attributes of the NFT" + "standard": "NFT standardı örneğin IRC27.", + "type": "NFT'nin MimeType'ı. Örneğin. image/png.", + "collectionId": "Bu NFT'yi oluşturan koleksiyon NFT'nin UTXO dizisi", + "royalties": "Ödeme yüzdelerine karşılık gelen adreslerin anahtar-değer çiftlerini içeren bir nesne", + "issuerName": "Oluşturucunun adı", + "attributes": "NFT'nin özelliklerini ve değerlerini tanımlayan özelliklerin bir dizisi" } }, "mintNativeToken": { - "decimals": "IRC30 optional parameter: Number of decimals the token uses (divide the token amount by 10^decimals to get its user representation).", - "description": "IRC30 optional parameter: The human-readable description of the token.", - "url": "IRC30 optional parameter: URL pointing to more resources about the token like a website or social media page.", - "logoUrl": "IRC30 optional parameter: URL pointing to an image resource of the token logo." + "decimals": "IRC30 isteğe bağlı parametre: Tokenın kullandığı ondalık sayı sayısı (kullanıcı temsilini elde etmek için token miktarını 10^ondalık sayıya bölün).", + "description": "IRC30 isteğe bağlı parametre: Tokenin insan tarafından okunabilen açıklaması.", + "url": "IRC30 isteğe bağlı parametre: Bir web sitesi veya sosyal medya sayfası gibi token hakkında daha fazla kaynağa işaret eden URL.", + "logoUrl": "IRC30 isteğe bağlı parametre: Token logosunun resim kaynağına işaret eden URL." }, "mintNftForm": { - "collectionId": "Optional parameter: UTXO string of the collection NFT that minted this NFT", - "collectionName": "Optional parameter: The collection's name", - "royalties": "Optional parameter: An object containing key-value pairs of addresses that map to payout percentages", - "issuerName": "Optional parameter: The name of the creator", - "description": "Optional parameter: A description of the NFT", - "attributes": "Optional parameter: An array of traits and values that define attributes of the NFT", - "uri": "To create a URI using custom media, first upload your file to IPFS via a storage service (e.g. https://nft.storage/)", - "quantity": "Optional parameter: The quantity of copies minted with this metadata." + "collectionId": "İsteğe bağlı parametre: Bu NFT'yi oluşturan koleksiyon NFT'nin UTXO dizisi", + "collectionName": "İsteğe bağlı parametre: Koleksiyonun adı", + "royalties": "İsteğe bağlı parametre: Ödeme yüzdeleriyle eşleşen adreslerin anahtar/değer çiftlerini içeren bir nesne", + "issuerName": "İsteğe bağlı parametre: Oluşturucunun adı", + "description": "İsteğe bağlı parametre: NFT'nin açıklaması", + "attributes": "İsteğe bağlı parametre: NFT'nin niteliklerini tanımlayan bir dizi özellik ve değer", + "uri": "Özel medya kullanarak bir URI oluşturmak için öncelikle dosyanızı bir depolama hizmeti aracılığıyla IPFS'ye yükleyin (ör. https://nft.storage/)", + "quantity": "Özel medya kullanarak bir Uri oluşturmak için önce dosyanızı bir depolama hizmeti aracılığıyla Ipfs'e yükleyin (ör. https://nft. storage/)" }, "governance": { - "removeProposalWarning": "You must stop voting for this proposal before removing it.", + "removeProposalWarning": "Özel medya kullanarak bir URI oluşturmak için önce dosyanızı bir depolama hizmeti aracılığıyla IPFS'e yükleyin (ör. https://nft.storage/)", "outdatedNode": { - "title": "Outdated node URL", - "body": "The node URL for this proposal is outdated. Please update it to access the latest voting results." + "title": "Özel medya kullanarak bir URI oluşturmak için önce dosyanızı bir depolama hizmeti aracılığıyla IPFS'e yükleyin (ör. https://nft.storage/)", + "body": "Bu teklifin düğüm URL'si güncel değil. En son oylama sonuçlarına erişmek için lütfen güncelleyin." }, "resultsNotAvailable": { - "title": "Results not available", - "body": "The results are no longer available on this proposal's corresponding node. Please update it to access the results." + "title": "Sonuçlar mevcut değil", + "body": "Sonuçlar artık bu teklifin ilgili düğümünde mevcut değil. Sonuçlara erişmek için lütfen güncelleyin." } }, "updateStronghold": { - "profileBadge": "Your Stronghold is out of date. Log in to update Stronghold." + "profileBadge": "Stronghold güncel değil. Stronghold'u güncellemek için lütfen giriş yapın." } }, "exports": { "transactionHistoryCsv": { - "messageId": "Message ID", + "messageId": "Mesaj ID", "internal": "Dahili", "rawValue": "Ham Değer", "formattedValue": "Biçimlenmiş Değer", - "date": "Date", + "date": "Tarih", "time": "Zaman" } }, @@ -2247,7 +2247,7 @@ "warningText": "Şu anda bir geliştirici profili kullanıyorsunuz ve şuraya bağlısınız {networkName}" }, "networkIndicator": { - "warningText": "Network performance degraded. Message confirmation may take a bit longer than usual." + "warningText": "Ağ performansı düştü. Mesaj onayı normalden biraz daha uzun sürebilir." } }, "permissions": { @@ -2257,143 +2257,143 @@ } }, "tabs": { - "wallet": "Wallet", - "collectibles": "Collectibles", + "wallet": "Cüzdan", + "collectibles": "Koleksiyonlar", "governance": "Yönetim", - "developer": "Developer", + "developer": "Geliştirici", "tokens": "Tokenler", "activity": "Aktivite", - "vesting": "Vesting" + "vesting": "Hakediş" }, "pills": { "stake": { - "Pending": "staking for", - "Confirmed": "staked for", - "Conflicting": "failed to stake" + "Pending": "için stake etme", + "Confirmed": "için stake edildi", + "Conflicting": "stake başarısız oldu" }, "external": { "incoming": { - "Pending": "receiving from", - "Confirmed": "received from", - "Conflicting": "failed to receive" + "Pending": "'ten alınıyor", + "Confirmed": "'ten alınan", + "Conflicting": "alınamadı" }, "outgoing": { - "Pending": "sending to", - "Confirmed": "sent to", - "Conflicting": "failed to send" + "Pending": "gönderiliyor", + "Confirmed": "gönderildi", + "Conflicting": "gönderme başarısız" } }, "internal": { "incoming": { - "Pending": "transferring from", - "Confirmed": "transferred from", - "Conflicting": "failed to transfer" + "Pending": "'ten transfer ediliyor", + "Confirmed": "'ten transfer edildi", + "Conflicting": "transfer başarısız" }, "outgoing": { - "Pending": "transferring to", - "Confirmed": "transferred to", - "Conflicting": "failed to transfer" + "Pending": "'a transfer ediliyor", + "Confirmed": "'a transfer edildi", + "Conflicting": "transfer başarısız" }, "selfTransaction": { - "Pending": "transferring to", - "Confirmed": "transferred to", - "Conflicting": "failed to transfer" + "Pending": "'a transfer ediliyor", + "Confirmed": "'a transfer edildi", + "Conflicting": "transfer başarısız" } }, "mint": { - "Pending": "minting", - "Confirmed": "minted", - "Conflicting": "failed to mint" + "Pending": "basılıyor", + "Confirmed": "basılmış", + "Conflicting": "basılma başarısız" }, "burn": { - "Pending": "burning", - "Confirmed": "burned", - "Conflicting": "failed to burn" + "Pending": "yakılıyor", + "Confirmed": "yanmış", + "Conflicting": "yakılamadı" }, "consolidation": { - "Pending": "Consolidating outputs", - "Confirmed": "Outputs consolidated", - "Conflicting": "failed to consolidate outputs" + "Pending": "Çıktıları konsolide etme", + "Confirmed": "Çıktılar konsolide edildi", + "Conflicting": "çıktılar birleştirilemedi" }, "migrate": { - "Pending": "migrating for", - "Confirmed": "migrated for", - "Conflicting": "failed to migrate" + "Pending": "için aktarılıyor", + "Confirmed": "için aktarıldı", + "Conflicting": "aktarılma başarısız oldu" }, "asyncStatus": { - "unclaimed": "unclaimed", - "claimed": "claimed", - "expired": "expired" + "unclaimed": "sahipsiz", + "claimed": "talep edildi", + "expired": "süresi dolmuş" }, "governance": { "increaseVotingPower": { - "Pending": "increasing voting power", - "Confirmed": "increased voting power", - "Conflicting": "failed to increased voting power" + "Pending": "oy kullanma gücünün artırılması", + "Confirmed": "artan oy gücü", + "Conflicting": "oy verme gücünü artırmada başarısız oldu" }, "decreaseVotingPower": { - "Pending": "decreasing voting power", - "Confirmed": "decreased voting power", - "Conflicting": "failed to decreased voting power" + "Pending": "oy kullanma gücünün azaltılması", + "Confirmed": "oy kullanma gücünün azalması", + "Conflicting": "oy verme gücünü azaltmada başarısız oldu" }, "startVoting": { - "Pending": "voting for", - "Confirmed": "voted for", - "Conflicting": "failed to vote for" + "Pending": "oylama için", + "Confirmed": "oy için", + "Conflicting": "oy verme başarısız" }, "stopVoting": { - "Pending": "stopping voting for", - "Confirmed": "stopped voting for", - "Conflicting": "failed to stopped voting for" + "Pending": "oy verme durduruluyor", + "Confirmed": "oy verme durduruldu", + "Conflicting": "oy verme işlemi durdurulamadı" }, "changedVote": { - "Pending": "changing vote for", - "Confirmed": "changed vote for", - "Conflicting": "failed to change vote for" + "Pending": "oy değiştiriliyor", + "Confirmed": "için oy değiştirildi", + "Conflicting": "için oy değiştirme başarısız oldu" }, "revote": { - "Pending": "revoting", - "Confirmed": "revote", - "Conflicting": "failed to revote" + "Pending": "yeniden oy kullanılıyor", + "Confirmed": "yeniden oyla", + "Conflicting": "yeniden oylanamadı" }, "proposalStatus": { - "upcoming": "Announcement", - "commencing": "Voting open", - "holding": "Counting", - "ended": "Closed", - "nodeOutdated": "Outdated node URL", - "resultsNotAvailable": "Results not available" + "upcoming": "Duyuru", + "commencing": "Oylama açıldı", + "holding": "Sayma", + "ended": "Kapalı", + "nodeOutdated": "Güncellenmemiş node URL'si", + "resultsNotAvailable": "Sonuçlar mevcut değil" } }, "alias": { "creation": { - "Pending": "creating alias", - "Confirmed": "alias created", - "Failed": "Failed to create alias" + "Pending": "takma ad oluşturma", + "Confirmed": "takma ad oluşturuldu", + "Failed": "Takma ad oluşturulamadı" } }, "networkHealth": { - "down": "Down", - "degraded": "Degraded", - "operational": "Operational", - "disconnected": "Disconnected" + "down": "Aşağı", + "degraded": "Bozulmuş", + "operational": "Operasyonel", + "disconnected": "Bağlantı kesildi" }, - "locked": "locked", - "smartContract": "smart contract", + "locked": "kilitli", + "smartContract": "akıllı sözleşme", "vesting": { - "unlocked": "Unlocked", - "locked": "Locked" + "unlocked": "Kilitli değil", + "locked": "Kilitli" } }, "menus": { "expirationTimePicker": { - "none": "No expiration time", - "1hour": "In 1 hour", - "1day": "In 1 day", - "1week": "In 1 week", + "none": "Son kullanma süresi yok", + "1hour": "1 saat içinde", + "1day": "1 gün içinde", + "1week": "1 hafta içinde", "customDate": { - "title": "Custom date", - "subtitle": "Set custom expiry date" + "title": "Özel tarih", + "subtitle": "Özel bir son kullanma tarihi belirle" } } } From b0e3e5634dfc59cb28231e2a98107373f8bfd3cc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Jun 2024 10:38:59 +0200 Subject: [PATCH 05/11] chore(deps-dev): bump @typescript-eslint/parser from 5.61.0 to 5.62.0 (#8513) Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 5.61.0 to 5.62.0. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v5.62.0/packages/parser) --- updated-dependencies: - dependency-name: "@typescript-eslint/parser" dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 50 ++++++++++++++++++++++++++++++++++++++++++-------- 2 files changed, 43 insertions(+), 9 deletions(-) diff --git a/package.json b/package.json index 63c61c87398..8a13a212c0c 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "@babel/eslint-parser": "^7.22.15", "@types/node": "^18.15.11", "@typescript-eslint/eslint-plugin": "^5.58.0", - "@typescript-eslint/parser": "^5.57.1", + "@typescript-eslint/parser": "^5.62.0", "eslint": "^8.42.0", "eslint-plugin-security": "^1.4.0", "eslint-plugin-svelte3": "^4.0.0", diff --git a/yarn.lock b/yarn.lock index 0802020c896..4c2d613fe03 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2003,14 +2003,14 @@ semver "^7.3.7" tsutils "^3.21.0" -"@typescript-eslint/parser@^5.57.1": - version "5.61.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.61.0.tgz#7fbe3e2951904bb843f8932ebedd6e0635bffb70" - integrity sha512-yGr4Sgyh8uO6fSi9hw3jAFXNBHbCtKKFMdX2IkT3ZqpKmtAq3lHS4ixB/COFuAIJpwl9/AqF7j72ZDWYKmIfvg== - dependencies: - "@typescript-eslint/scope-manager" "5.61.0" - "@typescript-eslint/types" "5.61.0" - "@typescript-eslint/typescript-estree" "5.61.0" +"@typescript-eslint/parser@^5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.62.0.tgz#1b63d082d849a2fcae8a569248fbe2ee1b8a56c7" + integrity sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA== + dependencies: + "@typescript-eslint/scope-manager" "5.62.0" + "@typescript-eslint/types" "5.62.0" + "@typescript-eslint/typescript-estree" "5.62.0" debug "^4.3.4" "@typescript-eslint/scope-manager@5.61.0": @@ -2021,6 +2021,14 @@ "@typescript-eslint/types" "5.61.0" "@typescript-eslint/visitor-keys" "5.61.0" +"@typescript-eslint/scope-manager@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz#d9457ccc6a0b8d6b37d0eb252a23022478c5460c" + integrity sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w== + dependencies: + "@typescript-eslint/types" "5.62.0" + "@typescript-eslint/visitor-keys" "5.62.0" + "@typescript-eslint/type-utils@5.61.0": version "5.61.0" resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.61.0.tgz#e90799eb2045c4435ea8378cb31cd8a9fddca47a" @@ -2036,6 +2044,11 @@ resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.61.0.tgz#e99ff11b5792d791554abab0f0370936d8ca50c0" integrity sha512-ldyueo58KjngXpzloHUog/h9REmHl59G1b3a5Sng1GfBo14BkS3ZbMEb3693gnP1k//97lh7bKsp6/V/0v1veQ== +"@typescript-eslint/types@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.62.0.tgz#258607e60effa309f067608931c3df6fed41fd2f" + integrity sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ== + "@typescript-eslint/typescript-estree@5.61.0": version "5.61.0" resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.61.0.tgz#4c7caca84ce95bb41aa585d46a764bcc050b92f3" @@ -2049,6 +2062,19 @@ semver "^7.3.7" tsutils "^3.21.0" +"@typescript-eslint/typescript-estree@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz#7d17794b77fabcac615d6a48fb143330d962eb9b" + integrity sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA== + dependencies: + "@typescript-eslint/types" "5.62.0" + "@typescript-eslint/visitor-keys" "5.62.0" + debug "^4.3.4" + globby "^11.1.0" + is-glob "^4.0.3" + semver "^7.3.7" + tsutils "^3.21.0" + "@typescript-eslint/utils@5.61.0": version "5.61.0" resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.61.0.tgz#5064838a53e91c754fffbddd306adcca3fe0af36" @@ -2071,6 +2097,14 @@ "@typescript-eslint/types" "5.61.0" eslint-visitor-keys "^3.3.0" +"@typescript-eslint/visitor-keys@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz#2174011917ce582875954ffe2f6912d5931e353e" + integrity sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw== + dependencies: + "@typescript-eslint/types" "5.62.0" + eslint-visitor-keys "^3.3.0" + "@webassemblyjs/ast@1.11.6", "@webassemblyjs/ast@^1.11.5": version "1.11.6" resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.11.6.tgz#db046555d3c413f8966ca50a95176a0e2c642e24" From 43b010e58a1f87f249f6edab6b288e44887502ae Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Jun 2024 10:43:51 +0200 Subject: [PATCH 06/11] chore(deps-dev): bump tailwindcss from 3.3.2 to 3.4.4 (#8551) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [tailwindcss](https://github.com/tailwindlabs/tailwindcss) from 3.3.2 to 3.4.4. - [Release notes](https://github.com/tailwindlabs/tailwindcss/releases) - [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/v3.4.4/CHANGELOG.md) - [Commits](https://github.com/tailwindlabs/tailwindcss/compare/v3.3.2...v3.4.4) --- updated-dependencies: - dependency-name: tailwindcss dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Begoña Álvarez de la Cruz --- packages/shared/package.json | 2 +- yarn.lock | 72 +++++++++--------------------------- 2 files changed, 19 insertions(+), 55 deletions(-) diff --git a/packages/shared/package.json b/packages/shared/package.json index 1533b800242..823e5ecca09 100644 --- a/packages/shared/package.json +++ b/packages/shared/package.json @@ -42,7 +42,7 @@ "svelte-check": "^3.4.5", "svelte-loader": "^3.1.9", "svelte-preprocess": "^5.0.4", - "tailwindcss": "^3.3.2", + "tailwindcss": "^3.4.4", "tslib": "^2.0.1", "typescript": "^5.0.3", "valid-url": "^1.0.9", diff --git a/yarn.lock b/yarn.lock index 4c2d613fe03..6b7c87fcf3e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2916,22 +2916,7 @@ char-regex@^1.0.2: resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf" integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw== -"chokidar@>=3.0.0 <4.0.0", chokidar@^3.3.0, chokidar@^3.4.1, chokidar@^3.5.3: - version "3.5.3" - resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" - integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== - dependencies: - anymatch "~3.1.2" - braces "~3.0.2" - glob-parent "~5.1.2" - is-binary-path "~2.1.0" - is-glob "~4.0.1" - normalize-path "~3.0.0" - readdirp "~3.6.0" - optionalDependencies: - fsevents "~2.3.2" - -chokidar@^3.6.0: +"chokidar@>=3.0.0 <4.0.0", chokidar@^3.3.0, chokidar@^3.4.1, chokidar@^3.5.3, chokidar@^3.6.0: version "3.6.0" resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.6.0.tgz#197c6cc669ef2a8dc5e7b4d97ee4e092c3eb0d5b" integrity sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw== @@ -4184,18 +4169,7 @@ fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== -fast-glob@^3.2.12, fast-glob@^3.2.7, fast-glob@^3.2.9: - version "3.3.0" - resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.0.tgz#7c40cb491e1e2ed5664749e87bfb516dbe8727c0" - integrity sha512-ChDuvbOypPuNjO8yIDf36x7BlZX1smcUMTTcyoIjycexOxd6DFsKsg21qVBzEmr3G7fUKIRy2/psii+CIUt7FA== - dependencies: - "@nodelib/fs.stat" "^2.0.2" - "@nodelib/fs.walk" "^1.2.3" - glob-parent "^5.1.2" - merge2 "^1.3.0" - micromatch "^4.0.4" - -fast-glob@^3.3.2: +fast-glob@^3.2.7, fast-glob@^3.2.9, fast-glob@^3.3.0, fast-glob@^3.3.2: version "3.3.2" resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.2.tgz#a904501e57cfdd2ffcded45e99a54fef55e46129" integrity sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow== @@ -5685,10 +5659,10 @@ jest@^29.5.0: import-local "^3.0.2" jest-cli "^29.6.1" -jiti@^1.18.2: - version "1.19.1" - resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.19.1.tgz#fa99e4b76a23053e0e7cde098efe1704a14c16f1" - integrity sha512-oVhqoRDaBXf7sjkll95LHVS6Myyyb1zaunVwk4Z0+WPSW4gjS0pl01zYKHScTuyEhQsFxV5L4DR5r+YqSyqyyg== +jiti@^1.21.0: + version "1.21.6" + resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.21.6.tgz#6c7f7398dd4b3142767f9a168af2f317a428d268" + integrity sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w== js-tokens@^4.0.0: version "4.0.0" @@ -6342,7 +6316,7 @@ mz@^2.7.0: object-assign "^4.0.1" thenify-all "^1.0.0" -nanoid@^3.1.31, nanoid@^3.3.6, nanoid@^3.3.7: +nanoid@^3.1.31, nanoid@^3.3.7: version "3.3.7" resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.7.tgz#d0c301a691bc8d54efa0a2226ccf3fe2fd656bd8" integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g== @@ -6383,9 +6357,9 @@ nice-try@^1.0.4: integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== node-abi@^3.3.0, node-abi@^3.8.0: - version "3.62.0" - resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-3.62.0.tgz#017958ed120f89a3a14a7253da810f5d724e3f36" - integrity sha512-CPMcGa+y33xuL1E0TcNIu4YyaZCxnnvkVaEXrsosR3FxN+fV8xvb7Mzpb7IgKler10qeMkE6+Dp8qJhpzdq35g== + version "3.65.0" + resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-3.65.0.tgz#ca92d559388e1e9cab1680a18c1a18757cdac9d3" + integrity sha512-ThjYBfoDNr08AWx6hGaRbfPwxKV9kVzAzOzlLKbk2CuqXE2xnCh+cbAGnwM3t8Lq4v9rUB7VfondlkBckcJrVA== dependencies: semver "^7.3.5" @@ -6944,16 +6918,7 @@ postcss-value-parser@^4.0.0, postcss-value-parser@^4.1.0, postcss-value-parser@^ resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== -postcss@^8.4.23, postcss@^8.4.31: - version "8.4.31" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.31.tgz#92b451050a9f914da6755af352bdc0192508656d" - integrity sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ== - dependencies: - nanoid "^3.3.6" - picocolors "^1.0.0" - source-map-js "^1.0.2" - -postcss@^8.4.33: +postcss@^8.4.23, postcss@^8.4.31, postcss@^8.4.33: version "8.4.38" resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.38.tgz#b387d533baf2054288e337066d81c6bee9db9e0e" integrity sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A== @@ -7784,7 +7749,7 @@ source-list-map@^2.0.0: resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34" integrity sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw== -"source-map-js@>=0.6.2 <2.0.0", source-map-js@^1.0.2: +"source-map-js@>=0.6.2 <2.0.0": version "1.0.2" resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== @@ -8181,20 +8146,20 @@ symbol-tree@^3.2.4: resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2" integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== -tailwindcss@^3.3.2: - version "3.3.2" - resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.3.2.tgz#2f9e35d715fdf0bbf674d90147a0684d7054a2d3" - integrity sha512-9jPkMiIBXvPc2KywkraqsUfbfj+dHDb+JPWtSJa9MLFdrPyazI7q6WX2sUrm7R9eVR7qqv3Pas7EvQFzxKnI6w== +tailwindcss@^3.4.4: + version "3.4.4" + resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.4.4.tgz#351d932273e6abfa75ce7d226b5bf3a6cb257c05" + integrity sha512-ZoyXOdJjISB7/BcLTR6SEsLgKtDStYyYZVLsUtWChO4Ps20CBad7lfJKVDiejocV4ME1hLmyY0WJE3hSDcmQ2A== dependencies: "@alloc/quick-lru" "^5.2.0" arg "^5.0.2" chokidar "^3.5.3" didyoumean "^1.2.2" dlv "^1.1.3" - fast-glob "^3.2.12" + fast-glob "^3.3.0" glob-parent "^6.0.2" is-glob "^4.0.3" - jiti "^1.18.2" + jiti "^1.21.0" lilconfig "^2.1.0" micromatch "^4.0.5" normalize-path "^3.0.0" @@ -8206,7 +8171,6 @@ tailwindcss@^3.3.2: postcss-load-config "^4.0.1" postcss-nested "^6.0.1" postcss-selector-parser "^6.0.11" - postcss-value-parser "^4.2.0" resolve "^1.22.2" sucrase "^3.32.0" From 36d3a0493ac5e437742ecf50ab544cf84aab13a3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Jun 2024 10:47:47 +0200 Subject: [PATCH 07/11] chore(deps-dev): bump @babel/eslint-parser from 7.22.15 to 7.24.7 (#8552) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [@babel/eslint-parser](https://github.com/babel/babel/tree/HEAD/eslint/babel-eslint-parser) from 7.22.15 to 7.24.7. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.24.7/eslint/babel-eslint-parser) --- updated-dependencies: - dependency-name: "@babel/eslint-parser" dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Begoña Álvarez de la Cruz --- package.json | 2 +- yarn.lock | 17 +++++------------ 2 files changed, 6 insertions(+), 13 deletions(-) diff --git a/package.json b/package.json index 8a13a212c0c..7ebc39e22bb 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "packages/shared" ], "devDependencies": { - "@babel/eslint-parser": "^7.22.15", + "@babel/eslint-parser": "^7.24.7", "@types/node": "^18.15.11", "@typescript-eslint/eslint-plugin": "^5.58.0", "@typescript-eslint/parser": "^5.62.0", diff --git a/yarn.lock b/yarn.lock index 6b7c87fcf3e..f8bcec34fe2 100644 --- a/yarn.lock +++ b/yarn.lock @@ -96,10 +96,10 @@ gensync "^1.0.0-beta.2" json5 "^2.2.2" -"@babel/eslint-parser@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/eslint-parser/-/eslint-parser-7.22.15.tgz#263f059c476e29ca4972481a17b8b660cb025a34" - integrity sha512-yc8OOBIQk1EcRrpizuARSQS0TWAcOMpEJ1aafhNznaeYkeL+OhqnDObGFylB8ka8VFF/sZc+S4RzHyO+3LjQxg== +"@babel/eslint-parser@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/eslint-parser/-/eslint-parser-7.24.7.tgz#27ebab1a1ec21f48ae191a8aaac5b82baf80d9c7" + integrity sha512-SO5E3bVxDuxyNxM5agFv480YA2HO6ohZbGxbazZdIk3KQOPOGVNw6q78I9/lbviIf95eq6tPozeYnJLbjnC8IA== dependencies: "@nicolo-ribaudo/eslint-scope-5-internals" "5.1.1-v1" eslint-visitor-keys "^2.1.0" @@ -7483,14 +7483,7 @@ semver@^6.0.0, semver@^6.2.0, semver@^6.3.0, semver@^6.3.1: resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== -semver@^7.3.2, semver@^7.3.5, semver@^7.3.7, semver@^7.3.8, semver@^7.5.3: - version "7.5.4" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e" - integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA== - dependencies: - lru-cache "^6.0.0" - -semver@^7.5.4: +semver@^7.3.2, semver@^7.3.5, semver@^7.3.7, semver@^7.3.8, semver@^7.5.3, semver@^7.5.4: version "7.6.0" resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.0.tgz#1a46a4db4bffcccd97b743b5005c8325f23d4e2d" integrity sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg== From 7d772099a702296e3df4d2d05fd7f76b0c260809 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Jun 2024 10:50:54 +0200 Subject: [PATCH 08/11] chore(deps): bump braces from 3.0.2 to 3.0.3 (#8554) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [braces](https://github.com/micromatch/braces) from 3.0.2 to 3.0.3. - [Changelog](https://github.com/micromatch/braces/blob/master/CHANGELOG.md) - [Commits](https://github.com/micromatch/braces/compare/3.0.2...3.0.3) --- updated-dependencies: - dependency-name: braces dependency-type: indirect ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Begoña Álvarez de la Cruz --- yarn.lock | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/yarn.lock b/yarn.lock index f8bcec34fe2..60e3b3436c4 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2724,11 +2724,11 @@ brace-expansion@^2.0.1: balanced-match "^1.0.0" braces@^3.0.2, braces@~3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" - integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== + version "3.0.3" + resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz#490332f40919452272d55a8480adc0c441358789" + integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA== dependencies: - fill-range "^7.0.1" + fill-range "^7.1.1" browserslist@^4.14.5, browserslist@^4.21.10, browserslist@^4.21.9: version "4.22.1" @@ -4237,10 +4237,10 @@ filelist@^1.0.4: dependencies: minimatch "^5.0.1" -fill-range@^7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" - integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== +fill-range@^7.1.1: + version "7.1.1" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz#44265d3cac07e3ea7dc247516380643754a05292" + integrity sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg== dependencies: to-regex-range "^5.0.1" From 484301a93aea609139b62d8f4dc793b876990bf4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Jun 2024 10:59:45 +0200 Subject: [PATCH 09/11] chore(deps-dev): bump prettier from 3.2.5 to 3.3.2 in /packages/shared (#8556) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore(deps-dev): bump prettier from 3.2.5 to 3.3.2 in /packages/shared Bumps [prettier](https://github.com/prettier/prettier) from 3.2.5 to 3.3.2. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/3.2.5...3.3.2) --- updated-dependencies: - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * chore: update yarn.lock --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Begoña Álvarez de la Cruz --- packages/shared/package.json | 2 +- yarn.lock | 39 +++++++----------------------------- 2 files changed, 8 insertions(+), 33 deletions(-) diff --git a/packages/shared/package.json b/packages/shared/package.json index 823e5ecca09..4a913e4821e 100644 --- a/packages/shared/package.json +++ b/packages/shared/package.json @@ -36,7 +36,7 @@ "jest-environment-jsdom": "^29.5.0", "postcss": "^8.4.31", "postcss-cli": "^11.0.0", - "prettier": "3.2.5", + "prettier": "3.3.2", "prettier-plugin-svelte": "^3.0.3", "sass": "^1.76.0", "svelte-check": "^3.4.5", diff --git a/yarn.lock b/yarn.lock index 60e3b3436c4..5926879e6ec 100644 --- a/yarn.lock +++ b/yarn.lock @@ -6960,10 +6960,10 @@ prettier-plugin-svelte@^3.0.3: resolved "https://registry.yarnpkg.com/prettier-plugin-svelte/-/prettier-plugin-svelte-3.0.3.tgz#a823295167f27dc71a4462ee6cb3da9f3f5ca2ea" integrity sha512-dLhieh4obJEK1hnZ6koxF+tMUrZbV5YGvRpf2+OADyanjya5j0z1Llo8iGwiHmFWZVG/hLEw/AJD5chXd9r3XA== -prettier@3.2.5: - version "3.2.5" - resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.2.5.tgz#e52bc3090586e824964a8813b09aba6233b28368" - integrity sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A== +prettier@3.3.2: + version "3.3.2" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.3.2.tgz#03ff86dc7c835f2d2559ee76876a3914cec4a90a" + integrity sha512-rAVeHYMcv8ATV5d508CFdn+8/pHPpXeIid1DdrPwXnaAdH7cqjVbpJaT5eq4yRAFU/lsbwYwSF/n5iNrdJHPQA== prettier@^2.3.2: version "2.8.8" @@ -7877,16 +7877,7 @@ string-length@^4.0.1: char-regex "^1.0.2" strip-ansi "^6.0.0" -"string-width-cjs@npm:string-width@^4.2.0": - version "4.2.3" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" - integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== - dependencies: - emoji-regex "^8.0.0" - is-fullwidth-code-point "^3.0.0" - strip-ansi "^6.0.1" - -string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: +"string-width-cjs@npm:string-width@^4.2.0", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: version "4.2.3" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== @@ -7954,14 +7945,7 @@ string_decoder@~1.1.1: dependencies: safe-buffer "~5.1.0" -"strip-ansi-cjs@npm:strip-ansi@^6.0.1": - version "6.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" - integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== - dependencies: - ansi-regex "^5.0.1" - -strip-ansi@^6.0.0, strip-ansi@^6.0.1: +"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== @@ -8996,7 +8980,7 @@ wildcard@^2.0.0: resolved "https://registry.yarnpkg.com/wildcard/-/wildcard-2.0.1.tgz#5ab10d02487198954836b6349f74fff961e10f67" integrity sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ== -"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0": +"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== @@ -9014,15 +8998,6 @@ wrap-ansi@^6.2.0: string-width "^4.1.0" strip-ansi "^6.0.0" -wrap-ansi@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" - integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== - dependencies: - ansi-styles "^4.0.0" - string-width "^4.1.0" - strip-ansi "^6.0.0" - wrap-ansi@^8.1.0: version "8.1.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214" From 48fac31a6be7466770d6e8eadc86b80b454df3a7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Jun 2024 13:34:27 +0200 Subject: [PATCH 10/11] chore(deps): bump ws from 8.13.0 to 8.17.1 (#8558) Bumps [ws](https://github.com/websockets/ws) from 8.13.0 to 8.17.1. - [Release notes](https://github.com/websockets/ws/releases) - [Commits](https://github.com/websockets/ws/compare/8.13.0...8.17.1) --- updated-dependencies: - dependency-name: ws dependency-type: indirect ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- yarn.lock | 44 ++++++++++++++++++++++++++++++++------------ 1 file changed, 32 insertions(+), 12 deletions(-) diff --git a/yarn.lock b/yarn.lock index 5926879e6ec..b94f4478534 100644 --- a/yarn.lock +++ b/yarn.lock @@ -7877,7 +7877,16 @@ string-length@^4.0.1: char-regex "^1.0.2" strip-ansi "^6.0.0" -"string-width-cjs@npm:string-width@^4.2.0", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: +"string-width-cjs@npm:string-width@^4.2.0": + version "4.2.3" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.1" + +string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: version "4.2.3" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== @@ -7945,7 +7954,14 @@ string_decoder@~1.1.1: dependencies: safe-buffer "~5.1.0" -"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1: +"strip-ansi-cjs@npm:strip-ansi@^6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + +strip-ansi@^6.0.0, strip-ansi@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== @@ -8980,7 +8996,7 @@ wildcard@^2.0.0: resolved "https://registry.yarnpkg.com/wildcard/-/wildcard-2.0.1.tgz#5ab10d02487198954836b6349f74fff961e10f67" integrity sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ== -"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0: +"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0": version "7.0.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== @@ -8998,6 +9014,15 @@ wrap-ansi@^6.2.0: string-width "^4.1.0" strip-ansi "^6.0.0" +wrap-ansi@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + wrap-ansi@^8.1.0: version "8.1.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214" @@ -9020,15 +9045,10 @@ write-file-atomic@^4.0.2: imurmurhash "^0.1.4" signal-exit "^3.0.7" -ws@^8.11.0, ws@^8.13.0: - version "8.13.0" - resolved "https://registry.yarnpkg.com/ws/-/ws-8.13.0.tgz#9a9fb92f93cf41512a0735c8f4dd09b8a1211cd0" - integrity sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA== - -ws@^8.16.0: - version "8.17.0" - resolved "https://registry.yarnpkg.com/ws/-/ws-8.17.0.tgz#d145d18eca2ed25aaf791a183903f7be5e295fea" - integrity sha512-uJq6108EgZMAl20KagGkzCKfMEjxmKvZHG7Tlq0Z6nOky7YF7aq4mOx6xK8TJ/i1LeK4Qus7INktacctDgY8Ow== +ws@^8.11.0, ws@^8.13.0, ws@^8.16.0: + version "8.17.1" + resolved "https://registry.yarnpkg.com/ws/-/ws-8.17.1.tgz#9293da530bb548febc95371d90f9c878727d919b" + integrity sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ== xml-name-validator@^4.0.0: version "4.0.0" From 4aa921d59d986c81ace99ad61512d0352d119f0e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Jun 2024 13:56:23 +0200 Subject: [PATCH 11/11] chore(deps-dev): bump svelte-check from 3.4.6 to 3.8.1 (#8560) Bumps [svelte-check](https://github.com/sveltejs/language-tools) from 3.4.6 to 3.8.1. - [Release notes](https://github.com/sveltejs/language-tools/releases) - [Commits](https://github.com/sveltejs/language-tools/compare/svelte-check-3.4.6...svelte-check-3.8.1) --- updated-dependencies: - dependency-name: svelte-check dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- packages/shared/package.json | 2 +- yarn.lock | 51 ++++++++++++++---------------------- 2 files changed, 21 insertions(+), 32 deletions(-) diff --git a/packages/shared/package.json b/packages/shared/package.json index 4a913e4821e..122fed34a98 100644 --- a/packages/shared/package.json +++ b/packages/shared/package.json @@ -39,7 +39,7 @@ "prettier": "3.3.2", "prettier-plugin-svelte": "^3.0.3", "sass": "^1.76.0", - "svelte-check": "^3.4.5", + "svelte-check": "^3.8.1", "svelte-loader": "^3.1.9", "svelte-preprocess": "^5.0.4", "tailwindcss": "^3.4.4", diff --git a/yarn.lock b/yarn.lock index b94f4478534..2ada036e993 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1056,11 +1056,6 @@ "@jridgewell/sourcemap-codec" "^1.4.10" "@jridgewell/trace-mapping" "^0.3.9" -"@jridgewell/resolve-uri@3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" - integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== - "@jridgewell/resolve-uri@^3.0.3", "@jridgewell/resolve-uri@^3.1.0": version "3.1.1" resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz#c08679063f279615a3326583ba3a90d1d82cc721" @@ -1079,12 +1074,7 @@ "@jridgewell/gen-mapping" "^0.3.0" "@jridgewell/trace-mapping" "^0.3.9" -"@jridgewell/sourcemap-codec@1.4.14": - version "1.4.14" - resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" - integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== - -"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.13", "@jridgewell/sourcemap-codec@^1.4.14": +"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.13", "@jridgewell/sourcemap-codec@^1.4.14", "@jridgewell/sourcemap-codec@^1.4.15": version "1.4.15" resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== @@ -1097,15 +1087,7 @@ "@jridgewell/resolve-uri" "^3.0.3" "@jridgewell/sourcemap-codec" "^1.4.10" -"@jridgewell/trace-mapping@^0.3.12", "@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.18", "@jridgewell/trace-mapping@^0.3.9": - version "0.3.18" - resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz#25783b2086daf6ff1dcb53c9249ae480e4dd4cd6" - integrity sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA== - dependencies: - "@jridgewell/resolve-uri" "3.1.0" - "@jridgewell/sourcemap-codec" "1.4.14" - -"@jridgewell/trace-mapping@^0.3.20": +"@jridgewell/trace-mapping@^0.3.12", "@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.18", "@jridgewell/trace-mapping@^0.3.20", "@jridgewell/trace-mapping@^0.3.9": version "0.3.22" resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.22.tgz#72a621e5de59f5f1ef792d0793a82ee20f645e4c" integrity sha512-Wf963MzWtA2sjrNt+g18IAln9lKnlRp+K2eH4jjIoF1wYeq3aMREpG09xhlhdzS0EjwU7qmUJYangWa+151vZw== @@ -6016,13 +5998,20 @@ lru_map@^0.3.3: resolved "https://registry.yarnpkg.com/lru_map/-/lru_map-0.3.3.tgz#b5c8351b9464cbd750335a79650a0ec0e56118dd" integrity sha512-Pn9cox5CsMYngeDbmChANltQl+5pi6XmTrraMSzhPmMBbmgcxmqWry0U3PGapCU1yB4/LqCcom7qhHZiF/jGfQ== -magic-string@0.27.0, magic-string@^0.27.0: +magic-string@0.27.0: version "0.27.0" resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.27.0.tgz#e4a3413b4bab6d98d2becffd48b4a257effdbbf3" integrity sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA== dependencies: "@jridgewell/sourcemap-codec" "^1.4.13" +magic-string@^0.30.5: + version "0.30.10" + resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.10.tgz#123d9c41a0cb5640c892b041d4cfb3bd0aa4b39e" + integrity sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ== + dependencies: + "@jridgewell/sourcemap-codec" "^1.4.15" + make-dir@^3.0.0, make-dir@~3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" @@ -8058,10 +8047,10 @@ supports-preserve-symlinks-flag@^1.0.0: resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== -svelte-check@^3.4.5: - version "3.4.6" - resolved "https://registry.yarnpkg.com/svelte-check/-/svelte-check-3.4.6.tgz#d43de724ad89d1198c96770e9d23965d3379ad44" - integrity sha512-OBlY8866Zh1zHQTkBMPS6psPi7o2umTUyj6JWm4SacnIHXpWFm658pG32m3dKvKFL49V4ntAkfFHKo4ztH07og== +svelte-check@^3.8.1: + version "3.8.1" + resolved "https://registry.yarnpkg.com/svelte-check/-/svelte-check-3.8.1.tgz#953bf68f47572e2ddf236b6d9a2244750a98deb6" + integrity sha512-KlQ0TRVe01mdvh49Ylkr9FQxO/UWbQOtaIrccl3gjgkvby1TxY41VkT7ijCl6i29FjaJPE4m6YGmhdqov0MfkA== dependencies: "@jridgewell/trace-mapping" "^0.3.17" chokidar "^3.4.1" @@ -8069,7 +8058,7 @@ svelte-check@^3.4.5: import-fresh "^3.2.1" picocolors "^1.0.0" sade "^1.7.4" - svelte-preprocess "^5.0.4" + svelte-preprocess "^5.1.3" typescript "^5.0.3" svelte-dev-helper@^1.1.9: @@ -8111,14 +8100,14 @@ svelte-markdown@0.2.3: "@types/marked" "^4.0.1" marked "^4.0.10" -svelte-preprocess@^5.0.4: - version "5.0.4" - resolved "https://registry.yarnpkg.com/svelte-preprocess/-/svelte-preprocess-5.0.4.tgz#2123898e079a074f7f4ef1799e10e037f5bcc55b" - integrity sha512-ABia2QegosxOGsVlsSBJvoWeXy1wUKSfF7SWJdTjLAbx/Y3SrVevvvbFNQqrSJw89+lNSsM58SipmZJ5SRi5iw== +svelte-preprocess@^5.0.4, svelte-preprocess@^5.1.3: + version "5.1.4" + resolved "https://registry.yarnpkg.com/svelte-preprocess/-/svelte-preprocess-5.1.4.tgz#14ada075c94bbd2b71c5ec70ff72f8ebe1c95b91" + integrity sha512-IvnbQ6D6Ao3Gg6ftiM5tdbR6aAETwjhHV+UKGf5bHGYR69RQvF1ho0JKPcbUON4vy4R7zom13jPjgdOWCQ5hDA== dependencies: "@types/pug" "^2.0.6" detect-indent "^6.1.0" - magic-string "^0.27.0" + magic-string "^0.30.5" sorcery "^0.11.0" strip-indent "^3.0.0"