Merge pull request #14254 from MetaMask/Version-v10.13.0
Version v10.13.0 RC
@ -7,7 +7,7 @@ set -o pipefail
|
||||
|
||||
# use `improved-yarn-audit` since that allows for exclude
|
||||
# exclude 1002401 until we remove use of 3Box, 1002581 until we can find a better solution
|
||||
yarn run improved-yarn-audit --ignore-dev-deps --min-severity moderate --exclude 1002401,1002581,GHSA-93q8-gq69-wqmw,GHSA-257v-vj4p-3w2h,GHSA-qrpm-p2h7-hrv2
|
||||
yarn run improved-yarn-audit --ignore-dev-deps --min-severity moderate --exclude GHSA-93q8-gq69-wqmw,GHSA-257v-vj4p-3w2h,GHSA-fwr7-v2mv-hh25
|
||||
audit_status="$?"
|
||||
|
||||
# Use a bitmask to ignore INFO and LOW severity audit results
|
||||
|
@ -19,6 +19,7 @@ ignores:
|
||||
- '@metamask/forwarder'
|
||||
- '@metamask/test-dapp'
|
||||
- '@metamask/design-tokens' # Only imported in index.css
|
||||
- '@tsconfig/node14' # required dynamically by TS, used in tsconfig.json
|
||||
- '@sentry/cli' # invoked as `sentry-cli`
|
||||
- 'chromedriver'
|
||||
- 'depcheck' # ooo meta
|
||||
|
93
.eslintrc.js
@ -7,8 +7,9 @@ module.exports = {
|
||||
ignorePatterns: [
|
||||
'app/vendor/**',
|
||||
'builds/**/*',
|
||||
'dist/**/*',
|
||||
'development/chromereload.js',
|
||||
'dist/**/*',
|
||||
'node_modules/**/*',
|
||||
],
|
||||
overrides: [
|
||||
/**
|
||||
@ -41,6 +42,7 @@ module.exports = {
|
||||
path.resolve(__dirname, '.eslintrc.base.js'),
|
||||
path.resolve(__dirname, '.eslintrc.node.js'),
|
||||
path.resolve(__dirname, '.eslintrc.babel.js'),
|
||||
path.resolve(__dirname, '.eslintrc.typescript-compat.js'),
|
||||
],
|
||||
parserOptions: {
|
||||
sourceType: 'module',
|
||||
@ -50,6 +52,23 @@ module.exports = {
|
||||
// trust that all of the files specified above are indeed modules.
|
||||
'import/unambiguous': 'off',
|
||||
},
|
||||
settings: {
|
||||
'import/resolver': {
|
||||
// When determining the location of a `require()` call, use Node's
|
||||
// resolution algorithm, then fall back to TypeScript's. This allows
|
||||
// TypeScript files (which Node's algorithm doesn't recognize) to be
|
||||
// imported from JavaScript files, while also preventing issues when
|
||||
// using packages like `prop-types` (where we would otherwise get "No
|
||||
// default export found in imported module 'prop-types'" from
|
||||
// TypeScript because imports work differently there).
|
||||
node: {},
|
||||
typescript: {
|
||||
// Always try to resolve types under `<root>/@types` directory even
|
||||
// it doesn't contain any source code, like `@types/unist`
|
||||
alwaysTryTypes: true,
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
/**
|
||||
* Modules (ES module syntax)
|
||||
@ -75,10 +94,82 @@ module.exports = {
|
||||
path.resolve(__dirname, '.eslintrc.base.js'),
|
||||
path.resolve(__dirname, '.eslintrc.node.js'),
|
||||
path.resolve(__dirname, '.eslintrc.babel.js'),
|
||||
path.resolve(__dirname, '.eslintrc.typescript-compat.js'),
|
||||
],
|
||||
parserOptions: {
|
||||
sourceType: 'module',
|
||||
},
|
||||
settings: {
|
||||
'import/resolver': {
|
||||
// When determining the location of an `import`, use Node's resolution
|
||||
// algorithm, then fall back to TypeScript's. This allows TypeScript
|
||||
// files (which Node's algorithm doesn't recognize) to be imported
|
||||
// from JavaScript files, while also preventing issues when using
|
||||
// packages like `prop-types` (where we would otherwise get "No
|
||||
// default export found in imported module 'prop-types'" from
|
||||
// TypeScript because imports work differently there).
|
||||
node: {},
|
||||
typescript: {
|
||||
// Always try to resolve types under `<root>/@types` directory even
|
||||
// it doesn't contain any source code, like `@types/unist`
|
||||
alwaysTryTypes: true,
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
/**
|
||||
* TypeScript files
|
||||
*/
|
||||
{
|
||||
files: ['*.{ts,tsx}'],
|
||||
extends: [
|
||||
path.resolve(__dirname, '.eslintrc.base.js'),
|
||||
'@metamask/eslint-config-typescript',
|
||||
path.resolve(__dirname, '.eslintrc.typescript-compat.js'),
|
||||
],
|
||||
rules: {
|
||||
// Turn these off, as it's recommended by typescript-eslint.
|
||||
// See: <https://typescript-eslint.io/docs/linting/troubleshooting#eslint-plugin-import>
|
||||
'import/named': 'off',
|
||||
'import/namespace': 'off',
|
||||
'import/default': 'off',
|
||||
'import/no-named-as-default-member': 'off',
|
||||
|
||||
// Disabled due to incompatibility with Record<string, unknown>.
|
||||
// See: <https://github.com/Microsoft/TypeScript/issues/15300#issuecomment-702872440>
|
||||
'@typescript-eslint/consistent-type-definitions': 'off',
|
||||
|
||||
// Modified to include the 'ignoreRestSiblings' option.
|
||||
// TODO: Migrate this rule change back into `@metamask/eslint-config`
|
||||
'@typescript-eslint/no-unused-vars': [
|
||||
'error',
|
||||
{
|
||||
vars: 'all',
|
||||
args: 'all',
|
||||
argsIgnorePattern: '[_]+',
|
||||
ignoreRestSiblings: true,
|
||||
},
|
||||
],
|
||||
},
|
||||
settings: {
|
||||
'import/resolver': {
|
||||
// When determining the location of an `import`, prefer TypeScript's
|
||||
// resolution algorithm. Note that due to how we've configured
|
||||
// TypeScript in `tsconfig.json`, we are able to import JavaScript
|
||||
// files from TypeScript files.
|
||||
typescript: {
|
||||
// Always try to resolve types under `<root>/@types` directory even
|
||||
// it doesn't contain any source code, like `@types/unist`
|
||||
alwaysTryTypes: true,
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
files: ['*.d.ts'],
|
||||
parserOptions: {
|
||||
sourceType: 'script',
|
||||
},
|
||||
},
|
||||
|
||||
/**
|
||||
|
8
.eslintrc.typescript-compat.js
Normal file
@ -0,0 +1,8 @@
|
||||
module.exports = {
|
||||
settings: {
|
||||
'import/extensions': ['.js', '.ts', '.tsx'],
|
||||
'import/parsers': {
|
||||
'@typescript-eslint/parser': ['.ts', '.tsx'],
|
||||
},
|
||||
},
|
||||
};
|
3
.gitignore
vendored
@ -46,3 +46,6 @@ notes.txt
|
||||
.nyc_output
|
||||
|
||||
.metamaskrc
|
||||
|
||||
# TypeScript
|
||||
tsout/
|
||||
|
@ -5,3 +5,4 @@ SEGMENT_WRITE_KEY=
|
||||
ONBOARDING_V2=
|
||||
SWAPS_USE_DEV_APIS=
|
||||
COLLECTIBLES_V1=
|
||||
TOKEN_DETECTION_V2=
|
||||
|
4
.storybook/__mocks__/webextension-polyfill.js
Normal file
@ -0,0 +1,4 @@
|
||||
module.exports = {
|
||||
runtime: {},
|
||||
};
|
||||
|
@ -23,6 +23,7 @@ module.exports = {
|
||||
config.node = {
|
||||
__filename: true,
|
||||
};
|
||||
config.resolve.alias['webextension-polyfill'] = require.resolve('./__mocks__/webextension-polyfill.js')
|
||||
config.module.strictExportPresence = true;
|
||||
config.module.rules.push({
|
||||
test: /\.scss$/,
|
||||
|
33
CHANGELOG.md
@ -6,6 +6,35 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [10.13.0]
|
||||
### Added
|
||||
- Add a new fiat onboarding option via MoonPay ([#13934](https://github.com/MetaMask/metamask-extension/pull/13934))
|
||||
- Available for the following networks: Ethereum, BNB Chain, Polygon, Avalanche, Celo
|
||||
- Add support for a Dark Mode theme ([#14207](https://github.com/MetaMask/metamask-extension/pull/14207))
|
||||
- **[FLASK]** Add native browser notifications for Snaps via `snap_notify` permission ([#13613](https://github.com/MetaMask/metamask-extension/pull/13613))
|
||||
- **[FLASK]** Add Snaps settting to search index ([#14100](https://github.com/MetaMask/metamask-extension/pull/14100))
|
||||
- **[FLASK]** Display the Snap version during Snap installation ([#13931](https://github.com/MetaMask/metamask-extension/pull/13931))
|
||||
|
||||
### Changed
|
||||
- Improvements for multi-layer fee UX ([#13547](https://github.com/MetaMask/metamask-extension/pull/13547))
|
||||
- Fix 'Send max' button when on a multi-layer fee network
|
||||
- Show fiat currency estimates alongside ETH estimates on multi-layer fee networks
|
||||
- Display L1+L2 gas fees as a combined total on multi-layer fee networks
|
||||
- Don't allow users to set gas price on Optimism
|
||||
- Move Token Detection toggle to Advanced tab. ([#13977](https://github.com/MetaMask/metamask-extension/pull/13977))
|
||||
- Don’t show ‘What’s new’ pop up to new users ([#13886](https://github.com/MetaMask/metamask-extension/pull/13886))
|
||||
- Improving settings toggle accessibility by allowing label interaction ([#13876](https://github.com/MetaMask/metamask-extension/pull/13876))
|
||||
- Updating account and network icons ([#13947](https://github.com/MetaMask/metamask-extension/pull/13947))
|
||||
- Add 'Enhanced Gas UI' setting to search index ([#14206](https://github.com/MetaMask/metamask-extension/pull/14206))
|
||||
- Add buy modal link to insufficient currency warning of all networks that have a fiat onramp, and update spacing in the warning's copy ([#14019](https://github.com/MetaMask/metamask-extension/pull/14019))
|
||||
|
||||
### Fixed
|
||||
- Fix issue where editing advanced gas while speeeding up a transaction exits speedup ([#14101](https://github.com/MetaMask/metamask-extension/pull/14101))
|
||||
- Fix typo in cancel/speed up messaging ([#14067](https://github.com/MetaMask/metamask-extension/pull/14067))
|
||||
- Fix token icon when going from token detail page to Swaps view ([#14062](https://github.com/MetaMask/metamask-extension/pull/14062))
|
||||
- Fix issue where the contract address is shown as recipient when calling safe transfer method on erc721 or erc1155 contracts ([#13535](https://github.com/MetaMask/metamask-extension/pull/13535))
|
||||
- Ensure accounts still line up in dropdown ([#13986](https://github.com/MetaMask/metamask-extension/pull/13986))
|
||||
|
||||
## [10.12.4]
|
||||
### Fixed
|
||||
- Fix MetaMask internal error reporting (#14344)
|
||||
@ -52,7 +81,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
- Harden keyring type check in EthOverview ([#13711](https://github.com/MetaMask/metamask-extension/pull/13711))
|
||||
- Update "Forgot Password?" copy ([#13493](https://github.com/MetaMask/metamask-extension/pull/13493))
|
||||
- Confirm transaction page: use method name only for contract transactions ([#13643](https://github.com/MetaMask/metamask-extension/pull/13643))
|
||||
- Fix issues
|
||||
- **[FLASK]** Fix Snap permission list item shrinkage with short permission names ([#13996](https://github.com/MetaMask/metamask-extension/pull/13996))
|
||||
|
||||
## [10.11.4]
|
||||
@ -2857,7 +2885,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
### Uncategorized
|
||||
- Added the ability to restore accounts from seed words.
|
||||
|
||||
[Unreleased]: https://github.com/MetaMask/metamask-extension/compare/v10.12.4...HEAD
|
||||
[Unreleased]: https://github.com/MetaMask/metamask-extension/compare/v10.13.0...HEAD
|
||||
[10.13.0]: https://github.com/MetaMask/metamask-extension/compare/v10.12.4...v10.13.0
|
||||
[10.12.4]: https://github.com/MetaMask/metamask-extension/compare/v10.12.3...v10.12.4
|
||||
[10.12.3]: https://github.com/MetaMask/metamask-extension/compare/v10.12.2...v10.12.3
|
||||
[10.12.2]: https://github.com/MetaMask/metamask-extension/compare/v10.12.1...v10.12.2
|
||||
|
9
app/_locales/am/messages.json
generated
@ -38,12 +38,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "የተጠቆሙ ተለዋጭ ስሞችን አክል"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "በአድራሻ መዝገብ ላይ አክል"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "ለምሳሌ፡ ጆን ዲ."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "ተለዋጭ ስም አክል"
|
||||
},
|
||||
@ -331,9 +325,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "በ ENS የስም ምዝገባ ላይ የተፈጠረ ስህተት"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "ተለዋጭ ስም ያስገቡ"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "የይለፍ ቃል ያስገቡ"
|
||||
},
|
||||
|
9
app/_locales/ar/messages.json
generated
@ -52,12 +52,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "أضف العملات الرمزية المقترحة"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "إضافة إلى دفتر العناوين"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "مثلا جون دي"
|
||||
},
|
||||
"addToken": {
|
||||
"message": "إضافة عملة رمزية"
|
||||
},
|
||||
@ -348,9 +342,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "خطأ في تسجيل اسم ENS"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "أدخل اسمًا مستعارًا"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "أدخل كلمة مرور"
|
||||
},
|
||||
|
9
app/_locales/bg/messages.json
generated
@ -44,12 +44,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Добавете препоръчани жетони"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Добавяне към адресната книга"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "напр. Джон Д."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Добавяне на жетон"
|
||||
},
|
||||
@ -340,9 +334,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "Грешка при регистрацията на име на ENS"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Въведете псевдоним"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "Въведете парола"
|
||||
},
|
||||
|
9
app/_locales/bn/messages.json
generated
@ -44,12 +44,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "প্রস্তাবিত টোকেনগুলি যোগ করুন"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "অ্যাড্রেস বুকে যোগ করুন"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "যেমন জন.ডি."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "টোকেন যোগ করুন"
|
||||
},
|
||||
@ -340,9 +334,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "ENS নাম নিবন্ধীকরণে ত্রুটি হয়েছে"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "একটি উপনাম লিখুন"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "পাসওয়ার্ড লিখুন"
|
||||
},
|
||||
|
9
app/_locales/ca/messages.json
generated
@ -44,12 +44,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Afegir Fitxes Suggerides"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Afegir al llibre d'adreces"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "p. ex. John D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Afegir Fitxa"
|
||||
},
|
||||
@ -337,9 +331,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "Error al registre de nom ENS"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Introdueix Àlies"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "Introdueix contrasenya"
|
||||
},
|
||||
|
9
app/_locales/da/messages.json
generated
@ -44,12 +44,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Tilføj foreslåede tokens"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Føj til adressebogen"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "f.eks. John D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Tilføj Polet"
|
||||
},
|
||||
@ -340,9 +334,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "Fejl i ENS-navneregistrering"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Indtast et alias"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "Indtast kodeord"
|
||||
},
|
||||
|
18
app/_locales/de/messages.json
generated
@ -143,12 +143,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Vorgeschlagene Token hinzufügen"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Zum Adressbuch hinzufügen"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "z.B. Max M."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Token hinzufügen"
|
||||
},
|
||||
@ -962,9 +956,6 @@
|
||||
"ensUnknownError": {
|
||||
"message": "ENS Lookup fehlgeschlagen."
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Ein Alias eingeben"
|
||||
},
|
||||
"enterMaxSpendLimit": {
|
||||
"message": "Max. Ausgabelimit eingeben"
|
||||
},
|
||||
@ -1417,9 +1408,6 @@
|
||||
"lastConnected": {
|
||||
"message": "Zuletzt verbunden"
|
||||
},
|
||||
"layer1Fees": {
|
||||
"message": "Ebene 1 Gebühren"
|
||||
},
|
||||
"learmMoreAboutGas": {
|
||||
"message": "Wollen Sie 1 $ über Gas?"
|
||||
},
|
||||
@ -2474,9 +2462,6 @@
|
||||
"signed": {
|
||||
"message": "Unterschrieben"
|
||||
},
|
||||
"simulationErrorMessage": {
|
||||
"message": "Diese Transaktion wird voraussichtlich fehlschlagen. Der Versuch, sie auszuführen, wird voraussichtlich teuer aber fehlschlagen und wird nicht empfohlen."
|
||||
},
|
||||
"simulationErrorMessageV2": {
|
||||
"message": "Wir konnten das Gas nicht schätzen. Es könnte einen Fehler im Vertrag geben und diese Transaktion könnte fehlschlagen."
|
||||
},
|
||||
@ -3145,9 +3130,6 @@
|
||||
"tryAgain": {
|
||||
"message": "Erneut versuchen"
|
||||
},
|
||||
"tryAnywayOption": {
|
||||
"message": "Ich werde es trotzdem versuchen"
|
||||
},
|
||||
"turnOnTokenDetection": {
|
||||
"message": "Erweiterte Token-Erkennung aktivieren"
|
||||
},
|
||||
|
18
app/_locales/el/messages.json
generated
@ -143,12 +143,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Προσθέστε τα Προτεινόμενα Tokens"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Προσθήκη στο βιβλίο διευθύνσεων"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "π.χ. John D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Προσθήκη Token"
|
||||
},
|
||||
@ -952,9 +946,6 @@
|
||||
"ensUnknownError": {
|
||||
"message": "Η αναζήτηση ENS απέτυχε."
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Δώστε ένα ψευδώνυμο"
|
||||
},
|
||||
"enterMaxSpendLimit": {
|
||||
"message": "Εισάγετε Το Μέγιστο Όριο Δαπάνης"
|
||||
},
|
||||
@ -1414,9 +1405,6 @@
|
||||
"lastConnected": {
|
||||
"message": "Τελευταία Σύνδεση"
|
||||
},
|
||||
"layer1Fees": {
|
||||
"message": "Τέλη επιπέδου 1"
|
||||
},
|
||||
"learmMoreAboutGas": {
|
||||
"message": "Θέλετε να $1 για το τέλος συναλλαγής;"
|
||||
},
|
||||
@ -2477,9 +2465,6 @@
|
||||
"signed": {
|
||||
"message": "Συνδεδεμένος"
|
||||
},
|
||||
"simulationErrorMessage": {
|
||||
"message": "Αυτή η συναλλαγή αναμένεται να αποτύχει. Η προσπάθεια εκτέλεσης αναμένεται να είναι δαπανηρή αλλά να αποτύχει και δεν συνιστάται."
|
||||
},
|
||||
"simulationErrorMessageV2": {
|
||||
"message": "Δεν ήμασταν σε θέση να εκτιμήσουμε το τέλος συναλλαγής. Μπορεί να υπάρχει σφάλμα στο συμβόλαιο και αυτή η συναλλαγή μπορεί να αποτύχει."
|
||||
},
|
||||
@ -3145,9 +3130,6 @@
|
||||
"tryAgain": {
|
||||
"message": "Δοκιμάστε ξανά"
|
||||
},
|
||||
"tryAnywayOption": {
|
||||
"message": "Θα προσπαθήσω ούτως ή άλλως"
|
||||
},
|
||||
"turnOnTokenDetection": {
|
||||
"message": "Ενεργοποιήστε την ενισχυμένη ανίχνευση token"
|
||||
},
|
||||
|
76
app/_locales/en/messages.json
generated
@ -156,12 +156,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Add Suggested Tokens"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Add to address book"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "e.g. John D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Add Token"
|
||||
},
|
||||
@ -411,6 +405,17 @@
|
||||
"buy": {
|
||||
"message": "Buy"
|
||||
},
|
||||
"buyAsset": {
|
||||
"message": "Buy $1",
|
||||
"description": "$1 is the ticker symbol of a an asset the user is being prompted to purchase"
|
||||
},
|
||||
"buyCryptoWithMoonPay": {
|
||||
"message": "Buy $1 with MoonPay",
|
||||
"description": "$1 represents the cypto symbol to be purchased"
|
||||
},
|
||||
"buyCryptoWithMoonPayDescription": {
|
||||
"message": "MoonPay supports popular payment methods, including Visa, Mastercard, Apple / Google / Samsung Pay, and bank transfers in 145+ countries. Tokens deposit into your MetaMask account."
|
||||
},
|
||||
"buyCryptoWithTransak": {
|
||||
"message": "Buy $1 with Transak",
|
||||
"description": "$1 represents the cypto symbol to be purchased"
|
||||
@ -419,13 +424,6 @@
|
||||
"message": "Transak supports credit & debit cards, Apple Pay, MobiKwik, and bank transfers (depending on location) in 100+ countries. $1 deposits directly into your MetaMask account.",
|
||||
"description": "$1 represents the crypto symbol to be purchased"
|
||||
},
|
||||
"buyEth": {
|
||||
"message": "Buy ETH"
|
||||
},
|
||||
"buyOther": {
|
||||
"message": "Buy $1 or deposit from another account.",
|
||||
"description": "$1 is a token symbol"
|
||||
},
|
||||
"buyWithWyre": {
|
||||
"message": "Buy ETH with Wyre"
|
||||
},
|
||||
@ -448,7 +446,7 @@
|
||||
"message": "Cancel transaction"
|
||||
},
|
||||
"cancelSpeedUp": {
|
||||
"message": "cancel or speed up a tranaction."
|
||||
"message": "cancel or speed up a transaction."
|
||||
},
|
||||
"cancelSpeedUpLabel": {
|
||||
"message": "This gas fee will $1 the original.",
|
||||
@ -617,6 +615,9 @@
|
||||
"continue": {
|
||||
"message": "Continue"
|
||||
},
|
||||
"continueToMoonPay": {
|
||||
"message": "Continue to MoonPay"
|
||||
},
|
||||
"continueToTransak": {
|
||||
"message": "Continue to Transak"
|
||||
},
|
||||
@ -1096,9 +1097,6 @@
|
||||
"ensUnknownError": {
|
||||
"message": "ENS Lookup failed."
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Enter an alias"
|
||||
},
|
||||
"enterMaxSpendLimit": {
|
||||
"message": "Enter Max Spend Limit"
|
||||
},
|
||||
@ -1279,6 +1277,9 @@
|
||||
"gasEstimatesUnavailableWarning": {
|
||||
"message": "Our low, medium and high estimates are not available."
|
||||
},
|
||||
"gasFee": {
|
||||
"message": "Gas Fee"
|
||||
},
|
||||
"gasLimit": {
|
||||
"message": "Gas Limit"
|
||||
},
|
||||
@ -1524,9 +1525,13 @@
|
||||
"insufficientBalance": {
|
||||
"message": "Insufficient balance."
|
||||
},
|
||||
"insufficientCurrency": {
|
||||
"message": "You do not have enough $1 in your account to pay for transaction fees on $2 network.",
|
||||
"description": "$1 is currency, $2 is network"
|
||||
"insufficientCurrencyBuyOrDeposit": {
|
||||
"message": "You do not have enough $1 in your account to pay for transaction fees on $2 network. $3 or deposit from another account.",
|
||||
"description": "$1 is the native currency of the network, $2 is the name of the current network, $3 is the key 'buy' + the ticker symbol of the native currency of the chain wrapped in a button"
|
||||
},
|
||||
"insufficientCurrencyDeposit": {
|
||||
"message": "You do not have enough $1 in your account to pay for transaction fees on $2 network. Deposit $1 from another account.",
|
||||
"description": "$1 is the native currency of the network, $2 is the name of the current network"
|
||||
},
|
||||
"insufficientFunds": {
|
||||
"message": "Insufficient funds."
|
||||
@ -1627,9 +1632,6 @@
|
||||
"lastConnected": {
|
||||
"message": "Last Connected"
|
||||
},
|
||||
"layer1Fees": {
|
||||
"message": "Layer 1 fees"
|
||||
},
|
||||
"learmMoreAboutGas": {
|
||||
"message": "Want to $1 about gas?"
|
||||
},
|
||||
@ -2278,9 +2280,6 @@
|
||||
"or": {
|
||||
"message": "or"
|
||||
},
|
||||
"orDeposit": {
|
||||
"message": "or deposit from another account."
|
||||
},
|
||||
"origin": {
|
||||
"message": "Origin"
|
||||
},
|
||||
@ -2362,6 +2361,10 @@
|
||||
"message": "Store and manage its data on your device.",
|
||||
"description": "The description for the `snap_manageState` permission"
|
||||
},
|
||||
"permission_notifications": {
|
||||
"message": "Show notifications.",
|
||||
"description": "The description for the `snap_notify` permission"
|
||||
},
|
||||
"permission_unknown": {
|
||||
"message": "Unknown permission: $1",
|
||||
"description": "$1 is the name of a requested permission that is not recognized."
|
||||
@ -2590,6 +2593,9 @@
|
||||
"rpcUrl": {
|
||||
"message": "New RPC URL"
|
||||
},
|
||||
"safeTransferFrom": {
|
||||
"message": "Safe Transfer From"
|
||||
},
|
||||
"save": {
|
||||
"message": "Save"
|
||||
},
|
||||
@ -2830,9 +2836,6 @@
|
||||
"signed": {
|
||||
"message": "Signed"
|
||||
},
|
||||
"simulationErrorMessage": {
|
||||
"message": "This transaction is expected to fail. Trying to execute it is expected to be expensive but fail, and is not recommended."
|
||||
},
|
||||
"simulationErrorMessageV2": {
|
||||
"message": "We were not able to estimate gas. There might be an error in the contract and this transaction may fail."
|
||||
},
|
||||
@ -3531,6 +3534,9 @@
|
||||
"token": {
|
||||
"message": "Token"
|
||||
},
|
||||
"tokenAddress": {
|
||||
"message": "Token address"
|
||||
},
|
||||
"tokenAlreadyAdded": {
|
||||
"message": "Token has already been added."
|
||||
},
|
||||
@ -3546,12 +3552,21 @@
|
||||
"tokenDetails": {
|
||||
"message": "Token details"
|
||||
},
|
||||
"tokenDetection": {
|
||||
"message": "Token detection"
|
||||
},
|
||||
"tokenDetectionAnnouncement": {
|
||||
"message": "New! Improved token detection is available on Ethereum Mainnet as an experimental feature. $1"
|
||||
},
|
||||
"tokenDetectionToggleDescription": {
|
||||
"message": "ConsenSys’ token API aggregates a list of tokens from various third party token lists. Turning it off will stop detecting new tokens added to your wallet, but will keep the option to search for tokens to import."
|
||||
},
|
||||
"tokenId": {
|
||||
"message": "Token ID"
|
||||
},
|
||||
"tokenList": {
|
||||
"message": "Token lists:"
|
||||
},
|
||||
"tokenSymbol": {
|
||||
"message": "Token Symbol"
|
||||
},
|
||||
@ -3686,9 +3701,6 @@
|
||||
"tryAgain": {
|
||||
"message": "Try again"
|
||||
},
|
||||
"tryAnywayOption": {
|
||||
"message": "I will try anyway"
|
||||
},
|
||||
"turnOnTokenDetection": {
|
||||
"message": "Turn on enhanced token detection"
|
||||
},
|
||||
|
9
app/_locales/es/messages.json
generated
@ -79,12 +79,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Agregar tokens sugeridos"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Agregar a la libreta de direcciones"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "p. ej., John D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Agregar token"
|
||||
},
|
||||
@ -612,9 +606,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "Error en el registro del nombre de ENS"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Escribir un alias"
|
||||
},
|
||||
"enterMaxSpendLimit": {
|
||||
"message": "Escribir límite máximo de gastos"
|
||||
},
|
||||
|
18
app/_locales/es_419/messages.json
generated
@ -143,12 +143,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Agregar tokens sugeridos"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Agregar a la libreta de direcciones"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "p. ej., John D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Agregar token"
|
||||
},
|
||||
@ -982,9 +976,6 @@
|
||||
"ensUnknownError": {
|
||||
"message": "Error al buscar ENS."
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Escribir un alias"
|
||||
},
|
||||
"enterMaxSpendLimit": {
|
||||
"message": "Escribir límite máximo de gastos"
|
||||
},
|
||||
@ -1463,9 +1454,6 @@
|
||||
"lastConnected": {
|
||||
"message": "Última conexión"
|
||||
},
|
||||
"layer1Fees": {
|
||||
"message": "Cargos de capa 1"
|
||||
},
|
||||
"learmMoreAboutGas": {
|
||||
"message": "¿Quiere $1 sobre el gas?"
|
||||
},
|
||||
@ -2529,9 +2517,6 @@
|
||||
"signed": {
|
||||
"message": "Firmado"
|
||||
},
|
||||
"simulationErrorMessage": {
|
||||
"message": "Se anticipa que esta transacción falle. En caso de intentar ejecutarla, se anticipa que eso sea costoso y a la vez falle, y por lo tanto no se recomienda."
|
||||
},
|
||||
"simulationErrorMessageV2": {
|
||||
"message": "No pudimos estimar el gas. Podría haber un error en el contrato y esta transacción podría fallar."
|
||||
},
|
||||
@ -3203,9 +3188,6 @@
|
||||
"tryAgain": {
|
||||
"message": "Vuelva a intentarlo"
|
||||
},
|
||||
"tryAnywayOption": {
|
||||
"message": "Lo intentaré de todos modos"
|
||||
},
|
||||
"turnOnTokenDetection": {
|
||||
"message": "Activar la detección mejorada de tokens"
|
||||
},
|
||||
|
9
app/_locales/et/messages.json
generated
@ -44,12 +44,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Lisa soovitatud lube"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Lisage aadressiraamatusse"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "nt John D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Lisage luba"
|
||||
},
|
||||
@ -340,9 +334,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "Tõrge ENS-i nime registreerimisel"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Sisestage alias"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "Sisestage parool"
|
||||
},
|
||||
|
9
app/_locales/fa/messages.json
generated
@ -44,12 +44,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "اضافه رمزیاب های پیشنهاد شده"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "به کتاب آدرسها اضافه کنید"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "مثلًا. John D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "یک رمز یاب اضافه کنید"
|
||||
},
|
||||
@ -340,9 +334,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "خطا در ثبت نام ENS"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "یک نام مستعار را وارد کنید"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "رمز عبور را وارد کنید"
|
||||
},
|
||||
|
9
app/_locales/fi/messages.json
generated
@ -44,12 +44,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Lisää ehdotetut käyttötunnukset"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Lisää osoitekirjaan"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "esim. Jukka E."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Lisää tietue"
|
||||
},
|
||||
@ -340,9 +334,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "Virhe ENS-nimen rekisteröinnissä"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Anna peitenimi"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "Kirjoita salasana"
|
||||
},
|
||||
|
9
app/_locales/fil/messages.json
generated
@ -41,12 +41,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Magdagdag ng Mga Iminungkahing Token"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Idagdag sa address book"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "hal. Juan D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Magdagdag ng Token"
|
||||
},
|
||||
@ -316,9 +310,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "May error sa pagrerehistro ng ENS name"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Maglagay ng alias"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "Ilagay ang password"
|
||||
},
|
||||
|
18
app/_locales/fr/messages.json
generated
@ -143,12 +143,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Ajouter les jetons suggérés"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Ajouter au carnet d’adresses"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "p. ex. John D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Ajouter un jeton"
|
||||
},
|
||||
@ -952,9 +946,6 @@
|
||||
"ensUnknownError": {
|
||||
"message": "La recherche d’ENS a échoué."
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Saisissez un pseudonyme"
|
||||
},
|
||||
"enterMaxSpendLimit": {
|
||||
"message": "Saisissez la limite de dépenses maximale"
|
||||
},
|
||||
@ -1414,9 +1405,6 @@
|
||||
"lastConnected": {
|
||||
"message": "Dernière connexion"
|
||||
},
|
||||
"layer1Fees": {
|
||||
"message": "Frais de couche 1 (L1)"
|
||||
},
|
||||
"learmMoreAboutGas": {
|
||||
"message": "Souhaitez-vous $1 sur le carburant ?"
|
||||
},
|
||||
@ -2477,9 +2465,6 @@
|
||||
"signed": {
|
||||
"message": "Signé"
|
||||
},
|
||||
"simulationErrorMessage": {
|
||||
"message": "Cette transaction devrait échouer. Si vous choisissez de l’exécuter, cela devrait à la fois être coûteux et voué à l’échec. Ce n’est donc pas recommandé."
|
||||
},
|
||||
"simulationErrorMessageV2": {
|
||||
"message": "Nous n’avons pas pu estimer le prix de carburant. Par conséquent, il se peut qu’il y ait une erreur dans le contrat et que cette transaction échoue."
|
||||
},
|
||||
@ -3145,9 +3130,6 @@
|
||||
"tryAgain": {
|
||||
"message": "Réessayez"
|
||||
},
|
||||
"tryAnywayOption": {
|
||||
"message": "Je veux quand même essayer"
|
||||
},
|
||||
"turnOnTokenDetection": {
|
||||
"message": "Activer la détection améliorée des jetons"
|
||||
},
|
||||
|
9
app/_locales/he/messages.json
generated
@ -44,12 +44,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "הוסף/י אסימונים מוצעים"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "הוסף לפנקס הכתובות"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "למשל ג'ון ד'"
|
||||
},
|
||||
"addToken": {
|
||||
"message": "הוסף/י אסימון"
|
||||
},
|
||||
@ -340,9 +334,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "שגיאה ברישום שם ENS"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "יש להזין כינוי"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "יש להזין ססמה"
|
||||
},
|
||||
|
18
app/_locales/hi/messages.json
generated
@ -143,12 +143,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "सुझाए गए टोकन जोड़ें"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "पता पुस्तिका में जोड़ें"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "जैसे जॉन डी."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "टोकन जोड़ें"
|
||||
},
|
||||
@ -952,9 +946,6 @@
|
||||
"ensUnknownError": {
|
||||
"message": "ENS लुकअप विफल हुआ।"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "एक उपनाम दर्ज करें"
|
||||
},
|
||||
"enterMaxSpendLimit": {
|
||||
"message": "अधिकतम खर्च सीमा दर्ज करें"
|
||||
},
|
||||
@ -1414,9 +1405,6 @@
|
||||
"lastConnected": {
|
||||
"message": "अंतिम बार कनेक्ट किया गया"
|
||||
},
|
||||
"layer1Fees": {
|
||||
"message": "लेयर 1 शुल्क"
|
||||
},
|
||||
"learmMoreAboutGas": {
|
||||
"message": "गैस के बारे में $1 चाहते हैं?"
|
||||
},
|
||||
@ -2477,9 +2465,6 @@
|
||||
"signed": {
|
||||
"message": "हस्ताक्षर किया गया"
|
||||
},
|
||||
"simulationErrorMessage": {
|
||||
"message": "यह लेन-देन विफल होने की उम्मीद है। इसे निष्पादित करने के प्रयास के महंगा होने की उम्मीद है लेकिन विफल है, और इसकी अनुशंसा नहीं की जाती है।"
|
||||
},
|
||||
"simulationErrorMessageV2": {
|
||||
"message": "हम गैस का अनुमान नहीं लगा पाए। अनुबंध में कोई त्रुटि हो सकती है और यह लेन-देन विफल हो सकता है।"
|
||||
},
|
||||
@ -3145,9 +3130,6 @@
|
||||
"tryAgain": {
|
||||
"message": "पुनः प्रयास करें"
|
||||
},
|
||||
"tryAnywayOption": {
|
||||
"message": "मैं फिर भी कोशिश करूंगा"
|
||||
},
|
||||
"turnOnTokenDetection": {
|
||||
"message": "उन्नत टोकन डिटेक्शन चालू करें"
|
||||
},
|
||||
|
9
app/_locales/hr/messages.json
generated
@ -44,12 +44,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Dodaj predložene tokene"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Dodaj u imenik"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "npr. Ivan M."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Dodaj token"
|
||||
},
|
||||
@ -340,9 +334,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "Greška u registraciji naziva ENS"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Upiši pseudonim"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "Upiši lozinku"
|
||||
},
|
||||
|
9
app/_locales/hu/messages.json
generated
@ -44,12 +44,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Javasolt tokenek hozzáadása"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Hozzáadás a címjegyzékhez"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "pl. John D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Token hozzáadása"
|
||||
},
|
||||
@ -340,9 +334,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "Hiba történt az ENS név regisztrációjakor"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Adjon meg álnevet"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "Adja meg a jelszót"
|
||||
},
|
||||
|
18
app/_locales/id/messages.json
generated
@ -143,12 +143,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Tambahkan Token yang Disarankan"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Tambahkan ke buku alamat"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "contoh: John D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Tambahkan Token"
|
||||
},
|
||||
@ -952,9 +946,6 @@
|
||||
"ensUnknownError": {
|
||||
"message": "Pencarian ENS gagal."
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Masukkan alias"
|
||||
},
|
||||
"enterMaxSpendLimit": {
|
||||
"message": "Masukkan Batas Penggunaan Maksimum"
|
||||
},
|
||||
@ -1414,9 +1405,6 @@
|
||||
"lastConnected": {
|
||||
"message": "Terakhir Terhubung"
|
||||
},
|
||||
"layer1Fees": {
|
||||
"message": "Biaya lapis 1"
|
||||
},
|
||||
"learmMoreAboutGas": {
|
||||
"message": "Ingin $1 seputar gas?"
|
||||
},
|
||||
@ -2477,9 +2465,6 @@
|
||||
"signed": {
|
||||
"message": "Ditandatangani"
|
||||
},
|
||||
"simulationErrorMessage": {
|
||||
"message": "Transaksi ini diperkirakan akan gagal. Pelaksanaannya diperkirakan akan mahal dan berpotensi gagal, dan tidak direkomendasikan."
|
||||
},
|
||||
"simulationErrorMessageV2": {
|
||||
"message": "Kami tidak dapat memperkirakan gas. Tampaknya ada kesalahan dalam kontrak dan transaksi ini berpotensi gagal."
|
||||
},
|
||||
@ -3145,9 +3130,6 @@
|
||||
"tryAgain": {
|
||||
"message": "Coba lagi"
|
||||
},
|
||||
"tryAnywayOption": {
|
||||
"message": "Saya akan tetap mencobanya"
|
||||
},
|
||||
"turnOnTokenDetection": {
|
||||
"message": "Nyalakan deteksi token yang ditingkatkan"
|
||||
},
|
||||
|
9
app/_locales/it/messages.json
generated
@ -55,12 +55,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Aggiungi Token Suggeriti"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Aggiungi alla rubrica"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "Ad esempio, John D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Aggiungi Token"
|
||||
},
|
||||
@ -527,9 +521,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "Errore nella registrazione del nome ENS"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Inserisci un alias"
|
||||
},
|
||||
"enterMaxSpendLimit": {
|
||||
"message": "Inserisici Limite Spesa"
|
||||
},
|
||||
|
18
app/_locales/ja/messages.json
generated
@ -143,12 +143,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "推奨されたトークンを追加"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "アドレス帳に追加"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "例: John D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "トークンを追加"
|
||||
},
|
||||
@ -952,9 +946,6 @@
|
||||
"ensUnknownError": {
|
||||
"message": "ENSの検索に失敗しました。"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "別名を入力してください"
|
||||
},
|
||||
"enterMaxSpendLimit": {
|
||||
"message": "使用限度額の最大値を入力してください"
|
||||
},
|
||||
@ -1414,9 +1405,6 @@
|
||||
"lastConnected": {
|
||||
"message": "前回の接続"
|
||||
},
|
||||
"layer1Fees": {
|
||||
"message": "レイヤー1手数料"
|
||||
},
|
||||
"learmMoreAboutGas": {
|
||||
"message": "ガスについて$1しますか?"
|
||||
},
|
||||
@ -2477,9 +2465,6 @@
|
||||
"signed": {
|
||||
"message": "署名が完了しました"
|
||||
},
|
||||
"simulationErrorMessage": {
|
||||
"message": "このトランザクションは失敗する見込みです。実行しようとすると多くのコストがかかるうえに失敗する可能性が高いため、お勧めしません。"
|
||||
},
|
||||
"simulationErrorMessageV2": {
|
||||
"message": "ガス代を見積もれませんでした。コントラクトにエラーがある可能性があり、このトランザクションは失敗するかもしれません。"
|
||||
},
|
||||
@ -3145,9 +3130,6 @@
|
||||
"tryAgain": {
|
||||
"message": "再試行"
|
||||
},
|
||||
"tryAnywayOption": {
|
||||
"message": "とにかく試してみる"
|
||||
},
|
||||
"turnOnTokenDetection": {
|
||||
"message": "強化されたトークン検出をオンにする"
|
||||
},
|
||||
|
9
app/_locales/kn/messages.json
generated
@ -44,12 +44,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "ಸೂಚಿಸಲಾದ ಟೋಕನ್ಗಳನ್ನು ಸೇರಿಸಿ"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "ವಿಳಾಸ ಪುಸ್ತಕಕ್ಕೆ ಸೇರಿಸಿ"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "ಉದಾ. ಜಾನ್ ಡಿ."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "ಟೋಕನ್ ಸೇರಿಸಿ"
|
||||
},
|
||||
@ -340,9 +334,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "ENS ಹೆಸರಿನ ನೋಂದಣಿಯಲ್ಲಿ ದೋಷ"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "ಆಲಿಯಾಸ್ ಅನ್ನು ನಮೂದಿಸಿ"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ನಮೂದಿಸಿ"
|
||||
},
|
||||
|
18
app/_locales/ko/messages.json
generated
@ -143,12 +143,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "추천 토큰 추가"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "주소록에 추가"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "예: John D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "토큰 추가"
|
||||
},
|
||||
@ -952,9 +946,6 @@
|
||||
"ensUnknownError": {
|
||||
"message": "ENS를 조회하지 못했습니다."
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "별칭 입력"
|
||||
},
|
||||
"enterMaxSpendLimit": {
|
||||
"message": "최대 지출 한도 입력"
|
||||
},
|
||||
@ -1414,9 +1405,6 @@
|
||||
"lastConnected": {
|
||||
"message": "마지막 연결"
|
||||
},
|
||||
"layer1Fees": {
|
||||
"message": "레이어 1 요금"
|
||||
},
|
||||
"learmMoreAboutGas": {
|
||||
"message": "가스에 대해 $1하시겠습니까?"
|
||||
},
|
||||
@ -2477,9 +2465,6 @@
|
||||
"signed": {
|
||||
"message": "서명완료"
|
||||
},
|
||||
"simulationErrorMessage": {
|
||||
"message": "이 거래는 실패할 것으로 예상됩니다. 실행하려면 비용이 많이 들지만 실패할 것으로 예상되어 권장하지 않습니다."
|
||||
},
|
||||
"simulationErrorMessageV2": {
|
||||
"message": "가스 요금을 추정할 수 없었습니다. 계약에 오류가 있을 수 있으며 이 거래가 실패할 수 있습니다."
|
||||
},
|
||||
@ -3145,9 +3130,6 @@
|
||||
"tryAgain": {
|
||||
"message": "다시 시도"
|
||||
},
|
||||
"tryAnywayOption": {
|
||||
"message": "계속 시도"
|
||||
},
|
||||
"turnOnTokenDetection": {
|
||||
"message": "향상된 토큰 감지 켜기"
|
||||
},
|
||||
|
9
app/_locales/lt/messages.json
generated
@ -44,12 +44,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Pridėti siūlomų žetonų"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Pridėti į adresų knygelę"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "pvz., John D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Pridėti žetoną"
|
||||
},
|
||||
@ -340,9 +334,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "ENS pavadinimo registracijos klaida"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Įveskite alternatyvųjį vardą"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "Įveskite slaptažodį"
|
||||
},
|
||||
|
9
app/_locales/lv/messages.json
generated
@ -44,12 +44,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Pievienot ieteiktos marķierus"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Pievienot adrešu grāmatai"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "piemēram, Džons D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Pievienot žetonu"
|
||||
},
|
||||
@ -340,9 +334,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "Kļūda ENS vārda reģistrācijā"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Ievadiet segvārdu"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "Ievadiet paroli"
|
||||
},
|
||||
|
9
app/_locales/ms/messages.json
generated
@ -44,12 +44,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Tambah Token yang Disyorkan"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Tambah kepada buku alamat"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "cth. John D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Tambah Token"
|
||||
},
|
||||
@ -337,9 +331,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "Ralat dalam pendaftaran nama ENS"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Masukkan alias"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "Masukkan kata laluan"
|
||||
},
|
||||
|
9
app/_locales/no/messages.json
generated
@ -44,12 +44,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Legg til foreslåtte tokener "
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Legg til adressebok "
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "dvs. John D. "
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Legg til token "
|
||||
},
|
||||
@ -337,9 +331,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "Feil i ENS-navneregistrering"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Oppgi et alias"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "Skriv inn passord "
|
||||
},
|
||||
|
9
app/_locales/ph/messages.json
generated
@ -79,12 +79,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Magdagdag ng Mga Iminumungkahing Token"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Idagdag sa address book"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "hal. John D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Magdagdag ng Token"
|
||||
},
|
||||
@ -615,9 +609,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "Nagka-error sa pag-register ng ENS name"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Maglagay ng alias"
|
||||
},
|
||||
"enterMaxSpendLimit": {
|
||||
"message": "Ilagay ang Max na Limitasyon sa Paggastos"
|
||||
},
|
||||
|
9
app/_locales/pl/messages.json
generated
@ -44,12 +44,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Dodaj sugerowane tokeny."
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Dodaj do książki adresowej"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "np. John D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Dodaj token"
|
||||
},
|
||||
@ -340,9 +334,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "Błąd w rejestracji nazwy ENS"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Wpisz alias"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "Wpisz hasło"
|
||||
},
|
||||
|
18
app/_locales/pt_BR/messages.json
generated
@ -143,12 +143,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Adicionar tokens sugeridos"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Adicionar à agenda de endereços"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "por ex., João S."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Adicionar token"
|
||||
},
|
||||
@ -966,9 +960,6 @@
|
||||
"ensUnknownError": {
|
||||
"message": "Falha na busca de ENS."
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Digite um pseudônimo"
|
||||
},
|
||||
"enterMaxSpendLimit": {
|
||||
"message": "Digite um limite máximo de gastos"
|
||||
},
|
||||
@ -1447,9 +1438,6 @@
|
||||
"lastConnected": {
|
||||
"message": "Conectado pela última vez em"
|
||||
},
|
||||
"layer1Fees": {
|
||||
"message": "Taxas de camada 1"
|
||||
},
|
||||
"learmMoreAboutGas": {
|
||||
"message": "Quer $1 sobre o gás?"
|
||||
},
|
||||
@ -2513,9 +2501,6 @@
|
||||
"signed": {
|
||||
"message": "Assinado"
|
||||
},
|
||||
"simulationErrorMessage": {
|
||||
"message": "É esperado que essa transação falhe. Como é esperado que sua tentativa de execução seja dispendiosa e falhe, ela não é recomendada."
|
||||
},
|
||||
"simulationErrorMessageV2": {
|
||||
"message": "Não conseguimos estimar o preço do gás. Pode haver um erro no contrato, e essa transação poderá falhar."
|
||||
},
|
||||
@ -3187,9 +3172,6 @@
|
||||
"tryAgain": {
|
||||
"message": "Tente novamente"
|
||||
},
|
||||
"tryAnywayOption": {
|
||||
"message": "Vou tentar mesmo assim"
|
||||
},
|
||||
"turnOnTokenDetection": {
|
||||
"message": "Ativar detecção avançada de token"
|
||||
},
|
||||
|
9
app/_locales/ro/messages.json
generated
@ -44,12 +44,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Adăugați indicativele sugerate"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Adăugați în agendă"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "de ex. John D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Adăugare simbol"
|
||||
},
|
||||
@ -340,9 +334,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "Eroare la înregistrarea numelui ENS"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Introduceți un alias"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "Introduceți parola"
|
||||
},
|
||||
|
18
app/_locales/ru/messages.json
generated
@ -143,12 +143,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Добавить рекомендованные токены"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Добавить в адресную книгу"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "напр., Джон Д."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Добавить токен"
|
||||
},
|
||||
@ -952,9 +946,6 @@
|
||||
"ensUnknownError": {
|
||||
"message": "Ошибка поиска ENS."
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Ввести псевдоним"
|
||||
},
|
||||
"enterMaxSpendLimit": {
|
||||
"message": "Введите максимальный лимит расходов"
|
||||
},
|
||||
@ -1414,9 +1405,6 @@
|
||||
"lastConnected": {
|
||||
"message": "Последнее подключение"
|
||||
},
|
||||
"layer1Fees": {
|
||||
"message": "Комиссии 1-го уровня"
|
||||
},
|
||||
"learmMoreAboutGas": {
|
||||
"message": "Хотите $1 о газе?"
|
||||
},
|
||||
@ -2477,9 +2465,6 @@
|
||||
"signed": {
|
||||
"message": "Подписано"
|
||||
},
|
||||
"simulationErrorMessage": {
|
||||
"message": "Ожидается, что эта транзакция завершится неудачно. Предполагается, что попытка выполнить ее будет дорогостоящей, но потерпит неудачу, и поэтому ее не рекомендуется выполнять."
|
||||
},
|
||||
"simulationErrorMessageV2": {
|
||||
"message": "Мы не смогли оценить размер платы за газ. В контракте может быть ошибка, и эта транзакция может завершиться неудачно."
|
||||
},
|
||||
@ -3145,9 +3130,6 @@
|
||||
"tryAgain": {
|
||||
"message": "Попробуйте еще раз"
|
||||
},
|
||||
"tryAnywayOption": {
|
||||
"message": "Я все равно попробую"
|
||||
},
|
||||
"turnOnTokenDetection": {
|
||||
"message": "Включите расширенное обнаружение токенов"
|
||||
},
|
||||
|
9
app/_locales/sk/messages.json
generated
@ -44,12 +44,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Pridať navrhované tokeny"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Pridať do adresára"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "napr. Ján D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Přidat token"
|
||||
},
|
||||
@ -334,9 +328,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "Chyba pri registrácii názvu ENS"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Zadať alias"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "Zadejte heslo"
|
||||
},
|
||||
|
9
app/_locales/sl/messages.json
generated
@ -44,12 +44,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Dodaj priporočene žetone"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Dodaj stik v imenik"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "npr. Jaka N."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Dodaj žeton"
|
||||
},
|
||||
@ -340,9 +334,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "Napaka pri registraciji imena ENS"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Vnesite vzdevek"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "Vnesite geslo"
|
||||
},
|
||||
|
9
app/_locales/sr/messages.json
generated
@ -44,12 +44,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Dodajte sugerisane tokene"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Dodaj u adresar"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "npr. John D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Dodaj token"
|
||||
},
|
||||
@ -337,9 +331,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "Greška u registraciji ENS imena."
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Unesite pseudonim"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "Unesite lozinku"
|
||||
},
|
||||
|
9
app/_locales/sv/messages.json
generated
@ -44,12 +44,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Lägg till föreslagna tokens"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Lägg till i adressbok"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "exempelvis John D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Lägg till token"
|
||||
},
|
||||
@ -334,9 +328,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "Fel i ENS-namnregistrering"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Ange ett alias"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "Ange lösenord"
|
||||
},
|
||||
|
9
app/_locales/sw/messages.json
generated
@ -44,12 +44,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Ongeza Vianzio Vilivyopendekezwa"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Ongeza kwenye kitabu cha anwani"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "k.m John D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Ongeza Kianzio"
|
||||
},
|
||||
@ -334,9 +328,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "Hitilafu imetokea kwenye usajili wa jina la ENS"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Ingiza majina mengine"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "Ingiza nenosiri"
|
||||
},
|
||||
|
18
app/_locales/tl/messages.json
generated
@ -143,12 +143,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Magdagdag ng Mga Iminumungkahing Token"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Idagdag sa address book"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "hal. John D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Magdagdag ng Token"
|
||||
},
|
||||
@ -952,9 +946,6 @@
|
||||
"ensUnknownError": {
|
||||
"message": "Bigong Makita ang ENS."
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Maglagay ng alias"
|
||||
},
|
||||
"enterMaxSpendLimit": {
|
||||
"message": "Ilagay ang Max na Limitasyon sa Paggastos"
|
||||
},
|
||||
@ -1414,9 +1405,6 @@
|
||||
"lastConnected": {
|
||||
"message": "Huling Kumonekta"
|
||||
},
|
||||
"layer1Fees": {
|
||||
"message": "Layer 1 fees"
|
||||
},
|
||||
"learmMoreAboutGas": {
|
||||
"message": "Gusto mo bang $1 ang tungkol sa gas?"
|
||||
},
|
||||
@ -2477,9 +2465,6 @@
|
||||
"signed": {
|
||||
"message": "Nilagdaan"
|
||||
},
|
||||
"simulationErrorMessage": {
|
||||
"message": "Inaasahang mabibigo ang transaksyong ito. Ang pagsisikap na isagawa ito ay inaasahang magastos ngunit nabigo, at hindi inirerekomenda."
|
||||
},
|
||||
"simulationErrorMessageV2": {
|
||||
"message": "Hindi namin nagawang tantyahin ang gas. Maaaring may error sa kontrata at maaaring mabigo ang transaksyong ito."
|
||||
},
|
||||
@ -3145,9 +3130,6 @@
|
||||
"tryAgain": {
|
||||
"message": "Subukan ulit"
|
||||
},
|
||||
"tryAnywayOption": {
|
||||
"message": "Susubukan ko pa rin"
|
||||
},
|
||||
"turnOnTokenDetection": {
|
||||
"message": "I-on ang pinahusay na pag-detect ng token"
|
||||
},
|
||||
|
18
app/_locales/tr/messages.json
generated
@ -143,12 +143,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Önerilen Tokenleri ekle"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Adres defterine ekle"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "ör. Hüseyin M."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Token ekle"
|
||||
},
|
||||
@ -952,9 +946,6 @@
|
||||
"ensUnknownError": {
|
||||
"message": "ENS Arama başarısız oldu."
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Bir diğer ad girin"
|
||||
},
|
||||
"enterMaxSpendLimit": {
|
||||
"message": "Maks. Harcama Limiti Gir"
|
||||
},
|
||||
@ -1414,9 +1405,6 @@
|
||||
"lastConnected": {
|
||||
"message": "Son Bağlanma"
|
||||
},
|
||||
"layer1Fees": {
|
||||
"message": "Aşama 1 ücretleri"
|
||||
},
|
||||
"learmMoreAboutGas": {
|
||||
"message": "Gaz hakkında $1 istiyor musunuz?"
|
||||
},
|
||||
@ -2477,9 +2465,6 @@
|
||||
"signed": {
|
||||
"message": "İmzalandı"
|
||||
},
|
||||
"simulationErrorMessage": {
|
||||
"message": "Bu işlemin başarısız olması bekleniyor. Gerçekleştirmeye çalışıldığında maliyetli olması ancak başarısız olması bekleniyor ve önerilmiyor."
|
||||
},
|
||||
"simulationErrorMessageV2": {
|
||||
"message": "Gaz tahmini yapamadık. Sözleşmede bir hata olabilir ve bu işlem başarısız olabilir."
|
||||
},
|
||||
@ -3145,9 +3130,6 @@
|
||||
"tryAgain": {
|
||||
"message": "Tekrar dene"
|
||||
},
|
||||
"tryAnywayOption": {
|
||||
"message": "Yine de deneyeceğim"
|
||||
},
|
||||
"turnOnTokenDetection": {
|
||||
"message": "Gelişmiş token algılamayı açın"
|
||||
},
|
||||
|
9
app/_locales/uk/messages.json
generated
@ -44,12 +44,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Додати рекомендовані токени"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Додати до адресної книги"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "Напр.: Джон Д."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Додати токен"
|
||||
},
|
||||
@ -340,9 +334,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "Помилка у реєстрації ENS ім'я"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Введіть псевдонім"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "Введіть пароль"
|
||||
},
|
||||
|
18
app/_locales/vi/messages.json
generated
@ -143,12 +143,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Thêm token được đề xuất"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Thêm vào sổ địa chỉ"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "ví dụ: John D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Thêm token"
|
||||
},
|
||||
@ -952,9 +946,6 @@
|
||||
"ensUnknownError": {
|
||||
"message": "Tra Cứu ENS thất bại."
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Nhập một biệt danh"
|
||||
},
|
||||
"enterMaxSpendLimit": {
|
||||
"message": "Nhập giới hạn chi tiêu tối đa"
|
||||
},
|
||||
@ -1414,9 +1405,6 @@
|
||||
"lastConnected": {
|
||||
"message": "Đã kết nối lần cuối"
|
||||
},
|
||||
"layer1Fees": {
|
||||
"message": "Phí Lớp 1"
|
||||
},
|
||||
"learmMoreAboutGas": {
|
||||
"message": "Muốn $1 về gas?"
|
||||
},
|
||||
@ -2477,9 +2465,6 @@
|
||||
"signed": {
|
||||
"message": "Đã ký"
|
||||
},
|
||||
"simulationErrorMessage": {
|
||||
"message": "Giao dịch này có khả năng thất bại. Việc cố gắng thực hiện sẽ được cho là gây tốn kém nhưng lại không thành công và không được khuyến khích."
|
||||
},
|
||||
"simulationErrorMessageV2": {
|
||||
"message": "Chúng tôi không thể ước tính gas. Có thể đã xảy ra lỗi trong hợp đồng và giao dịch này có thể thất bại."
|
||||
},
|
||||
@ -3145,9 +3130,6 @@
|
||||
"tryAgain": {
|
||||
"message": "Thử lại"
|
||||
},
|
||||
"tryAnywayOption": {
|
||||
"message": "Tôi vẫn sẽ thử"
|
||||
},
|
||||
"turnOnTokenDetection": {
|
||||
"message": "Bật phát hiện token nâng cao"
|
||||
},
|
||||
|
18
app/_locales/zh_CN/messages.json
generated
@ -143,12 +143,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "添加推荐代币"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "添加地址簿"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "如:John D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "添加代币"
|
||||
},
|
||||
@ -952,9 +946,6 @@
|
||||
"ensUnknownError": {
|
||||
"message": "ENS 查找失败。"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "输入别名"
|
||||
},
|
||||
"enterMaxSpendLimit": {
|
||||
"message": "输入最高消费额度"
|
||||
},
|
||||
@ -1414,9 +1405,6 @@
|
||||
"lastConnected": {
|
||||
"message": "最后连接"
|
||||
},
|
||||
"layer1Fees": {
|
||||
"message": "1层费用"
|
||||
},
|
||||
"learmMoreAboutGas": {
|
||||
"message": "想要有关燃料$1?"
|
||||
},
|
||||
@ -2477,9 +2465,6 @@
|
||||
"signed": {
|
||||
"message": "已签名"
|
||||
},
|
||||
"simulationErrorMessage": {
|
||||
"message": "此交易预计将失败。尝试执行该交易预计将是昂贵的,但失败,不推荐。"
|
||||
},
|
||||
"simulationErrorMessageV2": {
|
||||
"message": "我们无法估计燃料。合同中可能有一个错误,这笔交易可能失败。"
|
||||
},
|
||||
@ -3145,9 +3130,6 @@
|
||||
"tryAgain": {
|
||||
"message": "重试"
|
||||
},
|
||||
"tryAnywayOption": {
|
||||
"message": "我仍然会试"
|
||||
},
|
||||
"turnOnTokenDetection": {
|
||||
"message": "打开增强代币检测"
|
||||
},
|
||||
|
9
app/_locales/zh_TW/messages.json
generated
@ -41,12 +41,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "加入建議的代幣"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "新增至位址簿中"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "如 John D。"
|
||||
},
|
||||
"addToken": {
|
||||
"message": "加入代幣"
|
||||
},
|
||||
@ -340,9 +334,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "ENS 名稱註冊錯誤"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "輸入化名"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "請輸入密碼"
|
||||
},
|
||||
|
@ -1 +0,0 @@
|
||||
<svg width="56" height="64" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M54.5 20c.75 0 1.5-.625 1.5-1.5v-5c0-.75-.75-1.5-1.5-1.5H52V6c0-3.25-2.75-6-6-6H6C2.625 0 0 2.75 0 6v52c0 3.375 2.625 6 6 6h40c3.25 0 6-2.625 6-6v-6h2.5c.75 0 1.5-.625 1.5-1.5v-5c0-.75-.75-1.5-1.5-1.5H52v-8h2.5c.75 0 1.5-.625 1.5-1.5v-5c0-.75-.75-1.5-1.5-1.5H52v-8h2.5zM26 16c4.375 0 8 3.625 8 8 0 4.5-3.625 8-8 8-4.5 0-8-3.5-8-8 0-4.375 3.5-8 8-8zm14 29.625C40 47 38.75 48 37.125 48H14.75c-1.5 0-2.75-1-2.75-2.375V43.25c0-4 3.75-7.25 8.375-7.25H21c1.5.75 3.125 1 5 1 1.75 0 3.375-.25 4.875-1h.625c4.625 0 8.5 3.25 8.5 7.25v2.375z" fill="#D6D9DC"/></svg>
|
Before Width: | Height: | Size: 638 B |
@ -1,4 +0,0 @@
|
||||
|
||||
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M3.28348 10.8571V12H0.140625V10.8571H3.28348ZM6.42634 9.71429C6.5811 9.71429 6.71503 9.77083 6.82813 9.88393C6.94122 9.99702 6.99777 10.131 6.99777 10.2857V12.5714C6.99777 12.7262 6.94122 12.8601 6.82813 12.9732C6.71503 13.0863 6.5811 13.1429 6.42634 13.1429H4.14062C3.98586 13.1429 3.85193 13.0863 3.73884 12.9732C3.62574 12.8601 3.5692 12.7262 3.5692 12.5714V10.2857C3.5692 10.131 3.62574 9.99702 3.73884 9.88393C3.85193 9.77083 3.98586 9.71429 4.14062 9.71429H6.42634ZM7.85491 6.28571V7.42857H0.140625V6.28571H7.85491ZM2.14062 1.71428V2.85714H0.140625V1.71428H2.14062ZM13.8549 10.8571V12H7.28348V10.8571H13.8549ZM5.28348 0.571428C5.43824 0.571428 5.57217 0.627976 5.68527 0.741071C5.79836 0.854166 5.85491 0.988095 5.85491 1.14286V3.42857C5.85491 3.58333 5.79836 3.71726 5.68527 3.83036C5.57217 3.94345 5.43824 4 5.28348 4H2.99777C2.84301 4 2.70908 3.94345 2.59598 3.83036C2.48289 3.71726 2.42634 3.58333 2.42634 3.42857V1.14286C2.42634 0.988095 2.48289 0.854166 2.59598 0.741071C2.70908 0.627976 2.84301 0.571428 2.99777 0.571428H5.28348ZM10.9978 5.14286C11.1525 5.14286 11.2865 5.1994 11.3996 5.3125C11.5126 5.42559 11.5692 5.55952 11.5692 5.71429V8C11.5692 8.15476 11.5126 8.28869 11.3996 8.40179C11.2865 8.51488 11.1525 8.57143 10.9978 8.57143H8.71205C8.55729 8.57143 8.42336 8.51488 8.31027 8.40179C8.19717 8.28869 8.14062 8.15476 8.14062 8V5.71429C8.14062 5.55952 8.19717 5.42559 8.31027 5.3125C8.42336 5.1994 8.55729 5.14286 8.71205 5.14286H10.9978ZM13.8549 6.28571V7.42857H11.8549V6.28571H13.8549ZM13.8549 1.71428V2.85714H6.14063V1.71428H13.8549Z" fill="#24292E"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.6 KiB |
@ -1,9 +0,0 @@
|
||||
<svg height="16" width="16" xmlns="http://www.w3.org/2000/svg">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<circle cx="8" cy="8" fill="#d0021b" r="8"/>
|
||||
<g fill="#fff">
|
||||
<rect height="7" rx="1" width="2" x="7" y="3"/>
|
||||
<rect height="2" rx="1" width="2" x="7" y="11"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 331 B |
@ -1,6 +0,0 @@
|
||||
<svg height="29" width="29" xmlns="http://www.w3.org/2000/svg">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<circle cx="14.5" cy="14.5" fill="#605a1c" r="14.5"/>
|
||||
<path d="M16 16.828h-2V7h2zM16 21h-2v-2h2z" fill="#fffcdb"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 251 B |
@ -1,4 +0,0 @@
|
||||
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M8 15.5714C8.09524 15.5714 8.14286 15.5238 8.14286 15.4286C8.14286 15.3333 8.09524 15.2857 8 15.2857C7.64881 15.2857 7.34524 15.1577 7.08929 14.9018C6.83929 14.6518 6.71429 14.3512 6.71429 14C6.71429 13.9048 6.66667 13.8571 6.57143 13.8571C6.47619 13.8571 6.42857 13.9048 6.42857 14C6.42857 14.4345 6.58036 14.8036 6.88393 15.1071C7.19345 15.4167 7.56548 15.5714 8 15.5714ZM15.4286 12.8571C15.4286 13.1667 15.3155 13.4345 15.0893 13.6607C14.8631 13.8869 14.5952 14 14.2857 14H10.2857C10.2857 14.631 10.0625 15.1696 9.61607 15.6161C9.16964 16.0625 8.63095 16.2857 8 16.2857C7.36905 16.2857 6.83036 16.0625 6.38393 15.6161C5.9375 15.1696 5.71429 14.631 5.71429 14H1.71429C1.40476 14 1.1369 13.8869 0.910714 13.6607C0.684524 13.4345 0.571429 13.1667 0.571429 12.8571C0.869048 12.6071 1.13988 12.3452 1.38393 12.0714C1.62798 11.7976 1.88095 11.4435 2.14286 11.0089C2.40476 10.5685 2.625 10.0952 2.80357 9.58929C2.9881 9.08333 3.1369 8.47024 3.25 7.75C3.36905 7.02976 3.42857 6.25595 3.42857 5.42857C3.42857 4.52381 3.77679 3.68452 4.47321 2.91071C5.16964 2.13095 6.08333 1.65774 7.21429 1.49107C7.16667 1.37798 7.14286 1.2619 7.14286 1.14286C7.14286 0.904762 7.22619 0.702381 7.39286 0.535714C7.55952 0.369047 7.76191 0.285713 8 0.285713C8.2381 0.285713 8.44048 0.369047 8.60714 0.535714C8.77381 0.702381 8.85714 0.904762 8.85714 1.14286C8.85714 1.2619 8.83333 1.37798 8.78572 1.49107C9.91667 1.65774 10.8304 2.13095 11.5268 2.91071C12.2232 3.68452 12.5714 4.52381 12.5714 5.42857C12.5714 6.25595 12.628 7.02976 12.7411 7.75C12.8601 8.47024 13.0089 9.08333 13.1875 9.58929C13.372 10.0952 13.5952 10.5685 13.8571 11.0089C14.119 11.4435 14.372 11.7976 14.6161 12.0714C14.8601 12.3452 15.131 12.6071 15.4286 12.8571Z" fill="#24292E"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.8 KiB |
@ -1,3 +0,0 @@
|
||||
<svg fill="none" height="10" width="10" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M8.676.642a.65.65 0 00-.072.006H4.793a.65.65 0 00-.57.975.65.65 0 00.57.322H7.12L.438 8.614a.647.647 0 00.286 1.096.65.65 0 00.632-.179L8.04 2.861v2.324a.648.648 0 00.977.57.648.648 0 00.322-.57V1.38a.647.647 0 00-.662-.737z" fill="#359bdd"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 339 B |
@ -1,3 +0,0 @@
|
||||
<svg height="21" width="25" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M12.281.467a1.58 1.58 0 000 2.259l5.824 5.743H1.62a1.61 1.61 0 00-1.62 1.597v.001c0 .882.726 1.596 1.62 1.596h16.486l-5.824 5.745a1.58 1.58 0 000 2.258 1.637 1.637 0 002.29 0l9.734-9.6L14.571.467a1.637 1.637 0 00-2.29 0" fill="#5b5b5b" fill-rule="evenodd"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 342 B |
@ -1,6 +0,0 @@
|
||||
<svg fill="none" height="20" width="20" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-rule="evenodd" fill-rule="evenodd">
|
||||
<path d="M.833 10a9.167 9.167 0 1118.334 0A9.167 9.167 0 01.833 10z" fill="#28a745"/>
|
||||
<path d="M14.426 6.702a.833.833 0 010 1.179l-5.173 5.417a.833.833 0 01-1.178 0l-2.5-2.5a.833.833 0 111.178-1.179l1.91 1.91 4.584-4.827a.833.833 0 011.179 0z" fill="#fff"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 414 B |
@ -1,6 +0,0 @@
|
||||
<svg height="100" width="100" xmlns="http://www.w3.org/2000/svg">
|
||||
<g fill="none" fill-rule="evenodd" stroke="#61ba00" stroke-width="4" transform="translate(2 2)">
|
||||
<circle cx="48" cy="48" r="48"/>
|
||||
<path d="M29.76 52.8l11.242 11.52L71.04 34.56" stroke-linecap="round"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 304 B |
@ -1,3 +0,0 @@
|
||||
<svg height="13" width="16" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M5.2 9.571L1.714 6.014l-1.428 1.4L5.2 12.43l10.514-10.73L14.286.3z" fill="#fff"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 166 B |
@ -1,3 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M15.75 8C15.75 3.75 12.25 0.25 8 0.25C3.71875 0.25 0.25 3.75 0.25 8C0.25 12.2812 3.71875 15.75 8 15.75C12.25 15.75 15.75 12.2812 15.75 8ZM7.09375 12.125C6.90625 12.3125 6.5625 12.3125 6.375 12.125L3.125 8.875C2.9375 8.6875 2.9375 8.34375 3.125 8.15625L3.84375 7.46875C4.03125 7.25 4.34375 7.25 4.53125 7.46875L6.75 9.65625L11.4375 4.96875C11.625 4.75 11.9375 4.75 12.125 4.96875L12.8438 5.65625C13.0312 5.84375 13.0312 6.1875 12.8438 6.375L7.09375 12.125Z" fill="#4CD964"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 586 B |
@ -1,4 +0,0 @@
|
||||
<svg width="12" height="12" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect x=".149" y="1.097" width="1.341" height="15.419" rx=".67" transform="rotate(-45 .15 1.097)" fill="#A1A5B3"/>
|
||||
<rect x=".948" y="11.851" width="1.341" height="15.419" rx=".67" transform="rotate(-135 .948 11.85)" fill="#A1A5B3"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 324 B |
@ -1,4 +0,0 @@
|
||||
<svg height="288" width="288" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M-1-1h582v402H-1z" fill="none"/>
|
||||
<path d="M122 25l15-21c4-5 10-5 14 0l16 22c4 5 2 10-5 10h-12v118c0 3 3 3 5 1l25-25c4-4 6-10 6-16V90c-7 0-12-5-12-12V66c0-6 5-12 12-12h12c7 0 12 5 12 12v12c0 7-5 12-12 12v24c0 10-3 18-10 25l-31 31c-4 4-7 6-7 16v49c12 3 21 13 21 26 0 15-12 27-27 27s-27-12-27-27c0-13 9-23 21-26v-13c0-10-3-13-7-17l-31-31c-6-6-10-14-10-24v-25c-7-2-12-9-12-17 0-10 8-18 18-18s18 8 18 18c0 8-5 15-12 17v25c0 7 3 12 7 16l25 25c2 2 4 2 4-1V36h-12c-7 0-9-5-4-11z" fill="#fff"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 576 B |
@ -1,4 +0,0 @@
|
||||
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M11.2935 11.3393C11.2935 11 11.2757 10.6815 11.24 10.3839C11.2102 10.0863 11.1477 9.78869 11.0525 9.49107C10.9632 9.1875 10.8471 8.93155 10.7042 8.72321C10.5614 8.50893 10.3709 8.33631 10.1328 8.20536C9.89472 8.06845 9.62388 8 9.32031 8C9.2846 8.02381 9.18341 8.08631 9.01674 8.1875C8.85603 8.28274 8.73103 8.35417 8.64174 8.40179C8.55246 8.4494 8.43043 8.50893 8.27567 8.58036C8.12686 8.65179 7.98103 8.70238 7.83817 8.73214C7.70127 8.7619 7.56436 8.77679 7.42746 8.77679C7.29055 8.77679 7.15067 8.7619 7.00781 8.73214C6.87091 8.70238 6.72507 8.65179 6.57031 8.58036C6.4215 8.50893 6.30246 8.4494 6.21317 8.40179C6.12388 8.35417 5.99591 8.28274 5.82924 8.1875C5.66853 8.08631 5.57031 8.02381 5.5346 8C5.23103 8 4.96019 8.06845 4.7221 8.20536C4.484 8.33631 4.29353 8.50893 4.15067 8.72321C4.00781 8.93155 3.88876 9.1875 3.79353 9.49107C3.70424 9.78869 3.64174 10.0863 3.60603 10.3839C3.57626 10.6815 3.56138 11 3.56138 11.3393C3.56138 11.7738 3.68638 12.1369 3.93638 12.4286C4.18638 12.7143 4.49293 12.8571 4.85603 12.8571H9.99888C10.362 12.8571 10.6685 12.7143 10.9185 12.4286C11.1685 12.1369 11.2935 11.7738 11.2935 11.3393ZM9.74888 6.03571C9.74888 5.39286 9.51972 4.84524 9.06138 4.39286C8.609 3.94048 8.06436 3.71428 7.42746 3.71428C6.79055 3.71428 6.24293 3.94048 5.7846 4.39286C5.33222 4.84524 5.10603 5.39286 5.10603 6.03571C5.10603 6.67262 5.33222 7.21726 5.7846 7.66964C6.24293 8.12202 6.79055 8.34821 7.42746 8.34821C8.06436 8.34821 8.609 8.12202 9.06138 7.66964C9.51972 7.21726 9.74888 6.67262 9.74888 6.03571ZM15.4275 10.8571V12.5714C15.4275 12.6548 15.4007 12.7232 15.3471 12.7768C15.2935 12.8304 15.2251 12.8571 15.1417 12.8571H14.2846V14.8571C14.2846 15.25 14.1447 15.5863 13.865 15.8661C13.5852 16.1458 13.2489 16.2857 12.856 16.2857H1.99888C1.60603 16.2857 1.26972 16.1458 0.989955 15.8661C0.710193 15.5863 0.570312 15.25 0.570312 14.8571V1.71428C0.570312 1.32143 0.710193 0.985118 0.989955 0.705357C1.26972 0.425594 1.60603 0.285713 1.99888 0.285713H12.856C13.2489 0.285713 13.5852 0.425594 13.865 0.705357C14.1447 0.985118 14.2846 1.32143 14.2846 1.71428V3.71428H15.1417C15.2251 3.71428 15.2935 3.74107 15.3471 3.79464C15.4007 3.84821 15.4275 3.91667 15.4275 4V5.71428C15.4275 5.79762 15.4007 5.86607 15.3471 5.91964C15.2935 5.97321 15.2251 6 15.1417 6H14.2846V7.14286H15.1417C15.2251 7.14286 15.2935 7.16964 15.3471 7.22321C15.4007 7.27679 15.4275 7.34524 15.4275 7.42857V9.14286C15.4275 9.22619 15.4007 9.29464 15.3471 9.34821C15.2935 9.40179 15.2251 9.42857 15.1417 9.42857H14.2846V10.5714H15.1417C15.2251 10.5714 15.2935 10.5982 15.3471 10.6518C15.4007 10.7054 15.4275 10.7738 15.4275 10.8571Z" fill="#24292E"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.7 KiB |
@ -1 +1 @@
|
||||
<svg width="162" height="32" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#a)"><path fill="#fff" d="M.813.082h161v31h-161z"/><path d="M117.469 8.638h1.03l2.39 5.65 2.4-5.65h1.01l-3.02 7.1h-.78l-3.03-7.1ZM126.795 15.838c-.386 0-.74-.067-1.06-.2a2.436 2.436 0 0 1-1.35-1.37 2.91 2.91 0 0 1-.18-1.03c0-.367.064-.707.19-1.02.127-.32.304-.597.53-.83.234-.233.51-.417.83-.55.32-.133.67-.2 1.05-.2.327 0 .634.057.92.17.287.107.537.27.75.49.22.213.394.477.52.79.127.307.19.66.19 1.06v.13c0 .033-.003.077-.01.13h-4.1c.007.233.054.45.14.65.094.2.214.373.36.52.154.147.334.263.54.35.214.08.444.12.69.12.387 0 .704-.077.95-.23.254-.16.457-.373.61-.64l.68.47c-.226.367-.53.657-.91.87-.373.213-.82.32-1.34.32Zm1.51-3.13a1.56 1.56 0 0 0-.19-.55c-.086-.16-.2-.297-.34-.41a1.408 1.408 0 0 0-.46-.26 1.636 1.636 0 0 0-.54-.09 1.732 1.732 0 0 0-1.04.35 1.512 1.512 0 0 0-.38.41c-.106.16-.18.343-.22.55h3.17ZM130.406 10.738h.86v.97c.046-.16.12-.303.22-.43s.213-.233.34-.32a1.59 1.59 0 0 1 .4-.2c.146-.047.293-.07.44-.07.133 0 .263.013.39.04v.89a.782.782 0 0 0-.23-.06 1.348 1.348 0 0 0-.24-.02c-.16 0-.32.037-.48.11-.154.067-.294.17-.42.31-.12.14-.22.32-.3.54-.08.213-.12.467-.12.76v2.48h-.86v-5ZM134.438 17.828l1.09-2.35-2.19-4.74h.95l1.72 3.8 1.71-3.8h.96l-3.28 7.09h-.96ZM141.724 15.738v-7.5h.86v3.27c.173-.3.4-.52.68-.66s.583-.21.91-.21c.28 0 .537.047.77.14.233.093.43.23.59.41.167.173.297.387.39.64.093.247.14.523.14.83v3.08h-.85v-2.95c0-.42-.11-.75-.33-.99-.213-.247-.497-.37-.85-.37-.2 0-.39.04-.57.12-.173.08-.327.2-.46.36-.127.153-.23.343-.31.57-.073.227-.11.487-.11.78v2.48h-.86ZM148.053 9.398a.599.599 0 0 1-.62-.61c0-.167.06-.31.18-.43s.266-.18.44-.18c.173 0 .316.06.43.18.113.12.17.263.17.43 0 .173-.057.32-.17.44a.584.584 0 0 1-.43.17Zm-.44 1.34h.86v5h-.86v-5ZM152.283 14.928c.247 0 .473-.043.68-.13.213-.087.393-.207.54-.36a1.7 1.7 0 0 0 .34-.56c.087-.213.13-.447.13-.7a1.81 1.81 0 0 0-.13-.69 1.573 1.573 0 0 0-.34-.56 1.54 1.54 0 0 0-.54-.36 1.632 1.632 0 0 0-.68-.14c-.253 0-.483.047-.69.14a1.554 1.554 0 0 0-.53.36 1.7 1.7 0 0 0-.35.56c-.08.213-.12.443-.12.69 0 .253.04.487.12.7.087.213.203.4.35.56.147.153.323.273.53.36.207.087.437.13.69.13Zm-.05 3c-.54 0-1.013-.1-1.42-.3-.407-.2-.717-.44-.93-.72l.6-.6c.2.253.443.457.73.61.293.153.633.23 1.02.23.213 0 .42-.033.62-.1s.377-.173.53-.32c.16-.14.287-.32.38-.54.093-.213.14-.47.14-.77v-.57a2.015 2.015 0 0 1-.72.63c-.307.167-.647.25-1.02.25-.347 0-.67-.063-.97-.19-.3-.133-.56-.313-.78-.54a2.643 2.643 0 0 1-.52-.81 2.8 2.8 0 0 1-.18-1.01c0-.353.06-.683.18-.99.127-.313.3-.583.52-.81.22-.233.48-.413.78-.54.3-.133.623-.2.97-.2.373 0 .713.083 1.02.25.307.16.547.367.72.62v-.77h.86v4.71c0 .42-.067.783-.2 1.09-.127.313-.303.57-.53.77a2.17 2.17 0 0 1-.8.46c-.307.107-.64.16-1 .16ZM156.382 15.738v-7.5h.86v3.27c.174-.3.4-.52.68-.66s.584-.21.91-.21c.28 0 .537.047.77.14.234.093.43.23.59.41.167.173.297.387.39.64.094.247.14.523.14.83v3.08h-.85v-2.95c0-.42-.11-.75-.33-.99-.213-.247-.496-.37-.85-.37-.2 0-.39.04-.57.12-.173.08-.326.2-.46.36-.126.153-.23.343-.31.57-.073.227-.11.487-.11.78v2.48h-.86Z" fill="#F66A0A"/><path opacity=".3" d="M45.774 22.738c-10.764 7.42-19.417 8-19.417 8h110.251s-8.653-.58-19.417-8c-10.764-7.42-23.364-22-35.709-22-12.344 0-24.944 14.58-35.708 22Z" fill="#037DD6"/><mask id="b" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="26" y="0" width="111" height="31"><path d="M45.774 22.605c-10.764 7.42-19.417 8-19.417 8h110.251s-8.653-.58-19.417-8c-10.764-7.42-23.364-22-35.709-22-12.344 0-24.944 14.58-35.708 22Z" fill="#EAF6FF"/></mask><g mask="url(#b)"><path fill="#F66A0A" stroke="#fff" stroke-width="2" d="M118.254-5.209h20.706v39.25h-20.706z"/></g></g><defs><clipPath id="a"><path fill="#fff" transform="translate(.813 .082)" d="M0 0h161v31H0z"/></clipPath></defs></svg>
|
||||
<svg width="162" height="32" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#a)"><path fill="none" d="M.813.082h161v31h-161z"/><path d="M117.469 8.638h1.03l2.39 5.65 2.4-5.65h1.01l-3.02 7.1h-.78l-3.03-7.1ZM126.795 15.838c-.386 0-.74-.067-1.06-.2a2.436 2.436 0 0 1-1.35-1.37 2.91 2.91 0 0 1-.18-1.03c0-.367.064-.707.19-1.02.127-.32.304-.597.53-.83.234-.233.51-.417.83-.55.32-.133.67-.2 1.05-.2.327 0 .634.057.92.17.287.107.537.27.75.49.22.213.394.477.52.79.127.307.19.66.19 1.06v.13c0 .033-.003.077-.01.13h-4.1c.007.233.054.45.14.65.094.2.214.373.36.52.154.147.334.263.54.35.214.08.444.12.69.12.387 0 .704-.077.95-.23.254-.16.457-.373.61-.64l.68.47c-.226.367-.53.657-.91.87-.373.213-.82.32-1.34.32Zm1.51-3.13a1.56 1.56 0 0 0-.19-.55c-.086-.16-.2-.297-.34-.41a1.408 1.408 0 0 0-.46-.26 1.636 1.636 0 0 0-.54-.09 1.732 1.732 0 0 0-1.04.35 1.512 1.512 0 0 0-.38.41c-.106.16-.18.343-.22.55h3.17ZM130.406 10.738h.86v.97c.046-.16.12-.303.22-.43s.213-.233.34-.32a1.59 1.59 0 0 1 .4-.2c.146-.047.293-.07.44-.07.133 0 .263.013.39.04v.89a.782.782 0 0 0-.23-.06 1.348 1.348 0 0 0-.24-.02c-.16 0-.32.037-.48.11-.154.067-.294.17-.42.31-.12.14-.22.32-.3.54-.08.213-.12.467-.12.76v2.48h-.86v-5ZM134.438 17.828l1.09-2.35-2.19-4.74h.95l1.72 3.8 1.71-3.8h.96l-3.28 7.09h-.96ZM141.724 15.738v-7.5h.86v3.27c.173-.3.4-.52.68-.66s.583-.21.91-.21c.28 0 .537.047.77.14.233.093.43.23.59.41.167.173.297.387.39.64.093.247.14.523.14.83v3.08h-.85v-2.95c0-.42-.11-.75-.33-.99-.213-.247-.497-.37-.85-.37-.2 0-.39.04-.57.12-.173.08-.327.2-.46.36-.127.153-.23.343-.31.57-.073.227-.11.487-.11.78v2.48h-.86ZM148.053 9.398a.599.599 0 0 1-.62-.61c0-.167.06-.31.18-.43s.266-.18.44-.18c.173 0 .316.06.43.18.113.12.17.263.17.43 0 .173-.057.32-.17.44a.584.584 0 0 1-.43.17Zm-.44 1.34h.86v5h-.86v-5ZM152.283 14.928c.247 0 .473-.043.68-.13.213-.087.393-.207.54-.36a1.7 1.7 0 0 0 .34-.56c.087-.213.13-.447.13-.7a1.81 1.81 0 0 0-.13-.69 1.573 1.573 0 0 0-.34-.56 1.54 1.54 0 0 0-.54-.36 1.632 1.632 0 0 0-.68-.14c-.253 0-.483.047-.69.14a1.554 1.554 0 0 0-.53.36 1.7 1.7 0 0 0-.35.56c-.08.213-.12.443-.12.69 0 .253.04.487.12.7.087.213.203.4.35.56.147.153.323.273.53.36.207.087.437.13.69.13Zm-.05 3c-.54 0-1.013-.1-1.42-.3-.407-.2-.717-.44-.93-.72l.6-.6c.2.253.443.457.73.61.293.153.633.23 1.02.23.213 0 .42-.033.62-.1s.377-.173.53-.32c.16-.14.287-.32.38-.54.093-.213.14-.47.14-.77v-.57a2.015 2.015 0 0 1-.72.63c-.307.167-.647.25-1.02.25-.347 0-.67-.063-.97-.19-.3-.133-.56-.313-.78-.54a2.643 2.643 0 0 1-.52-.81 2.8 2.8 0 0 1-.18-1.01c0-.353.06-.683.18-.99.127-.313.3-.583.52-.81.22-.233.48-.413.78-.54.3-.133.623-.2.97-.2.373 0 .713.083 1.02.25.307.16.547.367.72.62v-.77h.86v4.71c0 .42-.067.783-.2 1.09-.127.313-.303.57-.53.77a2.17 2.17 0 0 1-.8.46c-.307.107-.64.16-1 .16ZM156.382 15.738v-7.5h.86v3.27c.174-.3.4-.52.68-.66s.584-.21.91-.21c.28 0 .537.047.77.14.234.093.43.23.59.41.167.173.297.387.39.64.094.247.14.523.14.83v3.08h-.85v-2.95c0-.42-.11-.75-.33-.99-.213-.247-.496-.37-.85-.37-.2 0-.39.04-.57.12-.173.08-.326.2-.46.36-.126.153-.23.343-.31.57-.073.227-.11.487-.11.78v2.48h-.86Z" fill="#F66A0A"/><path opacity=".3" d="M45.774 22.738c-10.764 7.42-19.417 8-19.417 8h110.251s-8.653-.58-19.417-8c-10.764-7.42-23.364-22-35.709-22-12.344 0-24.944 14.58-35.708 22Z" fill="#037DD6"/><mask id="b" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="26" y="0" width="111" height="31"><path d="M45.774 22.605c-10.764 7.42-19.417 8-19.417 8h110.251s-8.653-.58-19.417-8c-10.764-7.42-23.364-22-35.709-22-12.344 0-24.944 14.58-35.708 22Z" fill="#EAF6FF"/></mask><g mask="url(#b)"><path fill="#F66A0A" stroke="#fff" stroke-width="2" d="M118.254-5.209h20.706v39.25h-20.706z"/></g></g><defs><clipPath id="a"><path fill="#fff" transform="translate(.813 .082)" d="M0 0h161v31H0z"/></clipPath></defs></svg>
|
||||
|
Before Width: | Height: | Size: 3.7 KiB After Width: | Height: | Size: 3.7 KiB |
@ -1 +1 @@
|
||||
<svg width="162" height="32" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#a)"><path fill="#fff" d="M.813.082h161v31h-161z"/><path d="M26.047 8.638h.93v6.22h3.43v.88h-4.36v-7.1ZM33.46 15.838c-.38 0-.73-.067-1.05-.2a2.573 2.573 0 0 1-1.38-1.38c-.127-.32-.19-.66-.19-1.02s.063-.697.19-1.01c.133-.32.316-.597.55-.83.233-.233.51-.417.83-.55.32-.14.67-.21 1.05-.21.373 0 .72.07 1.04.21.32.133.596.317.83.55.233.233.413.51.54.83.133.313.2.65.2 1.01s-.068.7-.2 1.02a2.438 2.438 0 0 1-.54.82c-.234.233-.51.42-.83.56-.32.133-.667.2-1.04.2Zm0-.8c.26 0 .496-.047.71-.14.212-.093.392-.22.54-.38.152-.167.27-.357.35-.57.086-.22.13-.457.13-.71 0-.247-.044-.48-.13-.7-.08-.22-.198-.41-.35-.57a1.518 1.518 0 0 0-.54-.39 1.752 1.752 0 0 0-.71-.14c-.26 0-.498.047-.71.14a1.62 1.62 0 0 0-.55.39 1.73 1.73 0 0 0-.36.57c-.08.22-.12.453-.12.7 0 .253.04.49.12.71.086.213.206.403.36.57.152.16.336.287.55.38.212.093.45.14.71.14ZM40.284 12.148l-1.23 3.59h-.76l-1.7-5h.9l1.21 3.65 1.25-3.65h.66l1.25 3.65 1.21-3.65h.91l-1.7 5h-.76l-1.24-3.59Z" fill="#F66A0A"/><path opacity=".3" d="M45.774 22.738c-10.764 7.42-19.417 8-19.417 8h110.251s-8.653-.58-19.417-8c-10.764-7.42-23.364-22-35.709-22-12.344 0-24.944 14.58-35.708 22Z" fill="#037DD6"/><mask id="b" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="26" y="0" width="111" height="31"><path d="M45.774 22.605c-10.764 7.42-19.417 8-19.417 8h110.251s-8.653-.58-19.417-8c-10.764-7.42-23.364-22-35.709-22-12.344 0-24.944 14.58-35.708 22Z" fill="#EAF6FF"/></mask><g mask="url(#b)"><path fill="#F66A0A" stroke="#fff" stroke-width="2" d="M24.607 16.738h20.706v17.303H24.607z"/></g></g><defs><clipPath id="a"><path fill="#fff" transform="translate(.813 .082)" d="M0 0h161v31H0z"/></clipPath></defs></svg>
|
||||
<svg width="162" height="32" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#a)"><path fill="none" d="M.813.082h161v31h-161z"/><path d="M26.047 8.638h.93v6.22h3.43v.88h-4.36v-7.1ZM33.46 15.838c-.38 0-.73-.067-1.05-.2a2.573 2.573 0 0 1-1.38-1.38c-.127-.32-.19-.66-.19-1.02s.063-.697.19-1.01c.133-.32.316-.597.55-.83.233-.233.51-.417.83-.55.32-.14.67-.21 1.05-.21.373 0 .72.07 1.04.21.32.133.596.317.83.55.233.233.413.51.54.83.133.313.2.65.2 1.01s-.068.7-.2 1.02a2.438 2.438 0 0 1-.54.82c-.234.233-.51.42-.83.56-.32.133-.667.2-1.04.2Zm0-.8c.26 0 .496-.047.71-.14.212-.093.392-.22.54-.38.152-.167.27-.357.35-.57.086-.22.13-.457.13-.71 0-.247-.044-.48-.13-.7-.08-.22-.198-.41-.35-.57a1.518 1.518 0 0 0-.54-.39 1.752 1.752 0 0 0-.71-.14c-.26 0-.498.047-.71.14a1.62 1.62 0 0 0-.55.39 1.73 1.73 0 0 0-.36.57c-.08.22-.12.453-.12.7 0 .253.04.49.12.71.086.213.206.403.36.57.152.16.336.287.55.38.212.093.45.14.71.14ZM40.284 12.148l-1.23 3.59h-.76l-1.7-5h.9l1.21 3.65 1.25-3.65h.66l1.25 3.65 1.21-3.65h.91l-1.7 5h-.76l-1.24-3.59Z" fill="#F66A0A"/><path opacity=".3" d="M45.774 22.738c-10.764 7.42-19.417 8-19.417 8h110.251s-8.653-.58-19.417-8c-10.764-7.42-23.364-22-35.709-22-12.344 0-24.944 14.58-35.708 22Z" fill="#037DD6"/><mask id="b" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="26" y="0" width="111" height="31"><path d="M45.774 22.605c-10.764 7.42-19.417 8-19.417 8h110.251s-8.653-.58-19.417-8c-10.764-7.42-23.364-22-35.709-22-12.344 0-24.944 14.58-35.708 22Z" fill="#EAF6FF"/></mask><g mask="url(#b)"><path fill="#F66A0A" stroke="#fff" stroke-width="2" d="M24.607 16.738h20.706v17.303H24.607z"/></g></g><defs><clipPath id="a"><path fill="#fff" transform="translate(.813 .082)" d="M0 0h161v31H0z"/></clipPath></defs></svg>
|
||||
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
@ -1 +1 @@
|
||||
<svg width="162" height="47" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="#fff" d="M.813.082h161v46h-161z"/><path d="m64.268 1.505 2.63 3.54 2.65-3.54h.84v7.1h-.92v-5.52l-2.56 3.44-2.56-3.44v5.52h-.93v-7.1h.85ZM74.257 8.705a2.73 2.73 0 0 1-1.06-.2 2.432 2.432 0 0 1-1.35-1.37 2.91 2.91 0 0 1-.18-1.03c0-.367.064-.707.19-1.02.127-.32.304-.596.53-.83.234-.233.51-.417.83-.55.32-.133.67-.2 1.05-.2.327 0 .634.057.92.17.287.107.537.27.75.49.22.213.394.477.52.79.127.307.19.66.19 1.06v.13c0 .034-.003.077-.01.13h-4.1c.007.233.054.45.14.65.094.2.214.373.36.52.154.147.334.263.54.35.214.08.444.12.69.12.387 0 .704-.077.95-.23.254-.16.457-.373.61-.64l.68.47c-.226.367-.53.657-.91.87-.373.213-.82.32-1.34.32Zm1.51-3.13a1.58 1.58 0 0 0-.19-.55c-.086-.16-.2-.296-.34-.41a1.42 1.42 0 0 0-.46-.26 1.639 1.639 0 0 0-.54-.09 1.728 1.728 0 0 0-1.04.35 1.498 1.498 0 0 0-.38.41 1.49 1.49 0 0 0-.22.55h3.17ZM79.928 8.705c-.353 0-.68-.066-.98-.2a2.57 2.57 0 0 1-.77-.56 2.732 2.732 0 0 1-.52-.83 2.8 2.8 0 0 1-.18-1.01c0-.36.06-.697.18-1.01.127-.313.3-.587.52-.82a2.36 2.36 0 0 1 1.75-.77c.38 0 .727.087 1.04.26.313.167.553.37.72.61v-3.27h.86v7.5h-.86v-.77c-.167.24-.407.447-.72.62a2.18 2.18 0 0 1-1.04.25Zm.13-.79a1.606 1.606 0 0 0 1.22-.52c.153-.167.27-.36.35-.58.087-.22.13-.457.13-.71 0-.253-.043-.49-.13-.71-.08-.22-.197-.41-.35-.57a1.542 1.542 0 0 0-.53-.39 1.657 1.657 0 0 0-.69-.14c-.253 0-.487.047-.7.14a1.65 1.65 0 0 0-.54.39c-.147.16-.263.35-.35.57-.08.22-.12.457-.12.71 0 .253.04.49.12.71.087.22.203.413.35.58.153.16.333.287.54.38.213.093.447.14.7.14ZM84.607 2.265a.599.599 0 0 1-.62-.61c0-.167.06-.31.18-.43s.266-.18.44-.18c.173 0 .317.06.43.18.113.12.17.263.17.43 0 .173-.057.32-.17.44a.583.583 0 0 1-.43.17Zm-.44 1.34h.86v5h-.86v-5ZM88.427 8.705c-.273 0-.523-.046-.75-.14-.227-.1-.42-.236-.58-.41a1.916 1.916 0 0 1-.38-.63 2.614 2.614 0 0 1-.13-.85v-3.07h.86v2.94c0 .42.1.753.3 1 .207.247.483.37.83.37.193 0 .373-.04.54-.12.173-.087.32-.207.44-.36.127-.16.227-.353.3-.58.073-.227.11-.483.11-.77v-2.48h.86v5h-.86v-.77a1.654 1.654 0 0 1-.66.66c-.267.14-.56.21-.88.21ZM98.888 5.665c0-.407-.083-.737-.25-.99-.166-.253-.413-.38-.74-.38-.4 0-.727.157-.98.47-.247.314-.377.74-.39 1.28v2.56h-.86v-2.94c0-.407-.083-.737-.25-.99-.16-.253-.403-.38-.73-.38-.407 0-.74.163-1 .49-.253.327-.38.774-.38 1.34v2.48h-.86v-5h.86v.77a1.63 1.63 0 0 1 .61-.63c.26-.16.56-.24.9-.24.374 0 .69.097.95.29.267.187.463.447.59.78.133-.327.343-.587.63-.78.293-.193.63-.29 1.01-.29.273 0 .517.05.73.15.22.094.404.23.55.41.153.173.27.387.35.64.08.247.12.524.12.83v3.07h-.86v-2.94Z" fill="#037DD6"/><path opacity=".3" d="M45.774 37.738c-10.764 7.42-19.417 8-19.417 8h110.251s-8.653-.58-19.417-8c-10.764-7.42-23.364-22-35.709-22-12.344 0-24.944 14.58-35.708 22Z" fill="#037DD6"/><mask id="a" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="26" y="15" width="111" height="31"><path d="M45.774 37.605c-10.764 7.42-19.417 8-19.417 8h110.251s-8.653-.58-19.417-8c-10.764-7.42-23.364-22-35.709-22-12.344 0-24.944 14.58-35.708 22Z" fill="#EAF6FF"/></mask><g mask="url(#a)"><path fill="#037DD6" stroke="#fff" stroke-width="2" d="M62.313 9.791h37.343v39.25H62.313z"/></g></svg>
|
||||
<svg width="162" height="47" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="none" d="M.813.082h161v46h-161z"/><path d="m64.268 1.505 2.63 3.54 2.65-3.54h.84v7.1h-.92v-5.52l-2.56 3.44-2.56-3.44v5.52h-.93v-7.1h.85ZM74.257 8.705a2.73 2.73 0 0 1-1.06-.2 2.432 2.432 0 0 1-1.35-1.37 2.91 2.91 0 0 1-.18-1.03c0-.367.064-.707.19-1.02.127-.32.304-.596.53-.83.234-.233.51-.417.83-.55.32-.133.67-.2 1.05-.2.327 0 .634.057.92.17.287.107.537.27.75.49.22.213.394.477.52.79.127.307.19.66.19 1.06v.13c0 .034-.003.077-.01.13h-4.1c.007.233.054.45.14.65.094.2.214.373.36.52.154.147.334.263.54.35.214.08.444.12.69.12.387 0 .704-.077.95-.23.254-.16.457-.373.61-.64l.68.47c-.226.367-.53.657-.91.87-.373.213-.82.32-1.34.32Zm1.51-3.13a1.58 1.58 0 0 0-.19-.55c-.086-.16-.2-.296-.34-.41a1.42 1.42 0 0 0-.46-.26 1.639 1.639 0 0 0-.54-.09 1.728 1.728 0 0 0-1.04.35 1.498 1.498 0 0 0-.38.41 1.49 1.49 0 0 0-.22.55h3.17ZM79.928 8.705c-.353 0-.68-.066-.98-.2a2.57 2.57 0 0 1-.77-.56 2.732 2.732 0 0 1-.52-.83 2.8 2.8 0 0 1-.18-1.01c0-.36.06-.697.18-1.01.127-.313.3-.587.52-.82a2.36 2.36 0 0 1 1.75-.77c.38 0 .727.087 1.04.26.313.167.553.37.72.61v-3.27h.86v7.5h-.86v-.77c-.167.24-.407.447-.72.62a2.18 2.18 0 0 1-1.04.25Zm.13-.79a1.606 1.606 0 0 0 1.22-.52c.153-.167.27-.36.35-.58.087-.22.13-.457.13-.71 0-.253-.043-.49-.13-.71-.08-.22-.197-.41-.35-.57a1.542 1.542 0 0 0-.53-.39 1.657 1.657 0 0 0-.69-.14c-.253 0-.487.047-.7.14a1.65 1.65 0 0 0-.54.39c-.147.16-.263.35-.35.57-.08.22-.12.457-.12.71 0 .253.04.49.12.71.087.22.203.413.35.58.153.16.333.287.54.38.213.093.447.14.7.14ZM84.607 2.265a.599.599 0 0 1-.62-.61c0-.167.06-.31.18-.43s.266-.18.44-.18c.173 0 .317.06.43.18.113.12.17.263.17.43 0 .173-.057.32-.17.44a.583.583 0 0 1-.43.17Zm-.44 1.34h.86v5h-.86v-5ZM88.427 8.705c-.273 0-.523-.046-.75-.14-.227-.1-.42-.236-.58-.41a1.916 1.916 0 0 1-.38-.63 2.614 2.614 0 0 1-.13-.85v-3.07h.86v2.94c0 .42.1.753.3 1 .207.247.483.37.83.37.193 0 .373-.04.54-.12.173-.087.32-.207.44-.36.127-.16.227-.353.3-.58.073-.227.11-.483.11-.77v-2.48h.86v5h-.86v-.77a1.654 1.654 0 0 1-.66.66c-.267.14-.56.21-.88.21ZM98.888 5.665c0-.407-.083-.737-.25-.99-.166-.253-.413-.38-.74-.38-.4 0-.727.157-.98.47-.247.314-.377.74-.39 1.28v2.56h-.86v-2.94c0-.407-.083-.737-.25-.99-.16-.253-.403-.38-.73-.38-.407 0-.74.163-1 .49-.253.327-.38.774-.38 1.34v2.48h-.86v-5h.86v.77a1.63 1.63 0 0 1 .61-.63c.26-.16.56-.24.9-.24.374 0 .69.097.95.29.267.187.463.447.59.78.133-.327.343-.587.63-.78.293-.193.63-.29 1.01-.29.273 0 .517.05.73.15.22.094.404.23.55.41.153.173.27.387.35.64.08.247.12.524.12.83v3.07h-.86v-2.94Z" fill="#037DD6"/><path opacity=".3" d="M45.774 37.738c-10.764 7.42-19.417 8-19.417 8h110.251s-8.653-.58-19.417-8c-10.764-7.42-23.364-22-35.709-22-12.344 0-24.944 14.58-35.708 22Z" fill="#037DD6"/><mask id="a" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="26" y="15" width="111" height="31"><path d="M45.774 37.605c-10.764 7.42-19.417 8-19.417 8h110.251s-8.653-.58-19.417-8c-10.764-7.42-23.364-22-35.709-22-12.344 0-24.944 14.58-35.708 22Z" fill="#EAF6FF"/></mask><g mask="url(#a)"><path fill="#037DD6" stroke="#fff" stroke-width="2" d="M62.313 9.791h37.343v39.25H62.313z"/></g></svg>
|
||||
|
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.1 KiB |
@ -1,12 +0,0 @@
|
||||
<svg height="78" width="80" xmlns="http://www.w3.org/2000/svg">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<circle cx="34" cy="34" fill="#fff" r="34"/>
|
||||
<circle cx="34" cy="34" r="32.5" stroke="#38393a" stroke-width="3"/>
|
||||
<path d="M34.407 44.95L22 37.7 34.407 55 46.82 37.7l-12.417 7.25zM34.593 15L22.187 35.37l12.406 7.258L47 35.378z" fill="#38393a"/>
|
||||
<g transform="translate(46 44)">
|
||||
<circle cx="17" cy="17" fill="#fff" r="17"/>
|
||||
<circle cx="17" cy="17" r="15.5" stroke="#38393a" stroke-width="3"/>
|
||||
<path d="M19.077 15.423H25.5v4.154h-6.423V26h-4.154v-6.423H8.5v-4.154h6.423V9h4.154z" fill="#38393a"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 696 B |
@ -1,5 +0,0 @@
|
||||
<svg height="8" width="12" xmlns="http://www.w3.org/2000/svg">
|
||||
<g fill="#5f5c5d" fill-rule="evenodd">
|
||||
<path d="M12 0v8L6 4zM6 0v8L0 4z"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 166 B |
@ -1,3 +0,0 @@
|
||||
<svg width="12" height="16" viewBox="0 0 12 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M6.00163 15.2045C6.21347 15.1962 6.45833 15.109 6.61275 14.9637L11.6498 10.2232C11.9385 9.90194 12.0577 9.28597 11.7239 8.92693C11.3952 8.57328 10.7576 8.5838 10.4276 8.93611L6.89052 12.2693L6.89052 1.87164C6.89052 1.38076 6.49254 0.982788 6.00163 0.982788C5.51071 0.982788 5.11274 1.38076 5.11274 1.87164L5.11274 12.2693L1.57565 8.93611C1.27181 8.63281 0.611843 8.57675 0.279352 8.92693C-0.0531095 9.27702 0.0531145 9.91513 0.353459 10.2232L5.3905 14.9637C5.56288 15.126 5.76513 15.205 6.00163 15.2045Z" fill="#D6D9DC"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 636 B |
@ -1,3 +0,0 @@
|
||||
<svg width="13" height="13" viewBox="0 0 13 13" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M8.66555 3.36981C8.38934 3.36981 8.19599 3.59078 8.18218 3.85319L8.26504 7.11251L4.30138 3.14884C4.10803 2.95549 3.83181 2.95549 3.63846 3.14884L3.19652 3.59078C3.01698 3.77032 3.00317 4.06035 3.19652 4.2537L7.16019 8.21736L3.92849 8.1345C3.65227 8.1345 3.44511 8.34166 3.4313 8.60406V9.21173C3.44511 9.47413 3.65227 9.68129 3.90087 9.68129H9.28703C9.53562 9.68129 9.74278 9.47413 9.74278 9.22554V3.83938C9.74278 3.59078 9.53562 3.38362 9.27322 3.36981H8.66555Z" fill="#D73A49"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 592 B |
@ -1,7 +0,0 @@
|
||||
<svg fill="none" height="40" width="40" xmlns="http://www.w3.org/2000/svg">
|
||||
<g fill="#979797">
|
||||
<rect height="4.571" rx="2.286" transform="rotate(180 40 40)" width="40" x="40" y="40"/>
|
||||
<rect height="21.714" rx="2.051" transform="rotate(180 22.564 21.714)" width="4.103" x="22.564" y="21.714"/>
|
||||
<path d="M20.5 30L7.077 12h26.846z"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 375 B |
@ -1,3 +0,0 @@
|
||||
<svg viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M19.9 30L7.5 22.7 19.9 40l12.4-17.3zm.2-30L7.7 20.4l12.4 7.3 12.4-7.2z" fill="#38393a"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 170 B |
@ -1,5 +0,0 @@
|
||||
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M14.2042 13.2143C14.5376 13.744 14.6001 14.1964 14.3917 14.5714C14.1894 14.9524 13.7727 15.1429 13.1417 15.1429H2.85603C2.22507 15.1429 1.80543 14.9524 1.5971 14.5714C1.39472 14.1964 1.46019 13.744 1.79353 13.2143L6.2846 6.13393V2.57143H5.71317C5.55841 2.57143 5.42448 2.51488 5.31138 2.40178C5.19829 2.28869 5.14174 2.15476 5.14174 2C5.14174 1.84524 5.19829 1.71131 5.31138 1.59821C5.42448 1.48512 5.55841 1.42857 5.71317 1.42857H10.2846C10.4394 1.42857 10.5733 1.48512 10.6864 1.59821C10.7995 1.71131 10.856 1.84524 10.856 2C10.856 2.15476 10.7995 2.28869 10.6864 2.40178C10.5733 2.51488 10.4394 2.57143 10.2846 2.57143H9.71317V6.13393L14.2042 13.2143ZM7.24888 6.74107L4.82031 10.5714H11.1775L8.74888 6.74107L8.57031 6.46429V6.13393V2.57143H7.42746V6.13393V6.46429L7.24888 6.74107Z" fill="#24292E"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 916 B |
@ -1,4 +0,0 @@
|
||||
|
||||
<svg width="14" height="15" viewBox="0 0 14 15" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M8.61384 8.90179C9.06027 8.45536 9.28348 7.91667 9.28348 7.28571C9.28348 6.65476 9.06027 6.11607 8.61384 5.66964C8.16741 5.22321 7.62872 5 6.99777 5C6.36682 5 5.82813 5.22321 5.3817 5.66964C4.93527 6.11607 4.71205 6.65476 4.71205 7.28571C4.71205 7.91667 4.93527 8.45536 5.3817 8.90179C5.82813 9.34821 6.36682 9.57143 6.99777 9.57143C7.62872 9.57143 8.16741 9.34821 8.61384 8.90179ZM13.8549 6.3125V8.29464C13.8549 8.36607 13.8311 8.43452 13.7835 8.5C13.7359 8.56548 13.6763 8.60417 13.6049 8.61607L11.9531 8.86607C11.84 9.1875 11.724 9.45833 11.6049 9.67857C11.8132 9.97619 12.1317 10.3869 12.5603 10.9107C12.6198 10.9821 12.6496 11.0565 12.6496 11.1339C12.6496 11.2113 12.6228 11.2798 12.5692 11.3393C12.4085 11.5595 12.1138 11.881 11.6853 12.3036C11.2567 12.7262 10.9769 12.9375 10.846 12.9375C10.7746 12.9375 10.6972 12.9107 10.6138 12.8571L9.3817 11.8929C9.11979 12.0298 8.84896 12.1429 8.5692 12.2321C8.47396 13.0417 8.38765 13.5952 8.31027 13.8929C8.2686 14.0595 8.16146 14.1429 7.98884 14.1429H6.0067C5.92336 14.1429 5.84896 14.1161 5.78348 14.0625C5.72396 14.0149 5.69122 13.9524 5.68527 13.875L5.43527 12.2321C5.1436 12.1369 4.87574 12.0268 4.6317 11.9018L3.37277 12.8571C3.31324 12.9107 3.23884 12.9375 3.14955 12.9375C3.06622 12.9375 2.99182 12.9048 2.92634 12.8393C2.17634 12.1607 1.68527 11.6607 1.45312 11.3393C1.41146 11.2798 1.39062 11.2113 1.39062 11.1339C1.39062 11.0625 1.41443 10.994 1.46205 10.9286C1.55134 10.8036 1.70313 10.6071 1.91741 10.3393C2.1317 10.0655 2.29241 9.85417 2.39955 9.70536C2.23884 9.40774 2.11682 9.11309 2.03348 8.82143L0.399554 8.58036C0.322173 8.56845 0.259673 8.53274 0.212054 8.47321C0.164435 8.40774 0.140625 8.33631 0.140625 8.25893V6.27679C0.140625 6.20536 0.164435 6.1369 0.212054 6.07143C0.259673 6.00595 0.31622 5.96726 0.381696 5.95536L2.04241 5.70536C2.12574 5.43155 2.24182 5.15774 2.39062 4.88393C2.15253 4.54464 1.83408 4.13393 1.43527 3.65178C1.37574 3.58036 1.34598 3.50893 1.34598 3.4375C1.34598 3.37798 1.37277 3.30952 1.42634 3.23214C1.5811 3.01786 1.87277 2.6994 2.30134 2.27678C2.73586 1.84821 3.0186 1.63393 3.14955 1.63393C3.22693 1.63393 3.30432 1.66369 3.3817 1.72321L4.61384 2.67857C4.87574 2.54167 5.14658 2.42857 5.42634 2.33928C5.52158 1.52976 5.60789 0.97619 5.68527 0.678571C5.72693 0.511904 5.83408 0.428571 6.0067 0.428571H7.98884C8.07217 0.428571 8.1436 0.455357 8.20312 0.508928C8.2686 0.556547 8.30432 0.619047 8.31027 0.696428L8.56027 2.33928C8.85194 2.43452 9.11979 2.54464 9.36384 2.66964L10.6317 1.71428C10.6853 1.66071 10.7567 1.63393 10.846 1.63393C10.9234 1.63393 10.9978 1.66369 11.0692 1.72321C11.8371 2.43155 12.3281 2.9375 12.5424 3.24107C12.5841 3.28869 12.6049 3.35417 12.6049 3.4375C12.6049 3.50893 12.5811 3.57738 12.5335 3.64286C12.4442 3.76786 12.2924 3.96726 12.0781 4.24107C11.8638 4.50893 11.7031 4.71726 11.596 4.86607C11.7507 5.16369 11.8728 5.45536 11.9621 5.74107L13.596 5.99107C13.6734 6.00298 13.7359 6.04167 13.7835 6.10714C13.8311 6.16667 13.8549 6.23512 13.8549 6.3125Z" fill="#24292E"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 3.0 KiB |
@ -1 +0,0 @@
|
||||
<svg fill="none" height="8" viewBox="0 0 7 8" width="7" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="m1.97959 1.19291c-.31242-.312422-.81896-.312422-1.131375 0-.312419.31242-.312419.81895 0 1.13137l1.675725 1.67572-1.675725 1.67572c-.312419.31242-.312419.81895 0 1.13137.312415.31242.818955.31242 1.131375 0l1.67572-1.67572 1.67591 1.67591c.31242.31242.81895.31242 1.13137 0s.31242-.81895 0-1.13137l-1.67591-1.67591 1.67591-1.67591c.31242-.31242.31242-.81895 0-1.13137-.31242-.312423-.81895-.312423-1.13137 0l-1.67591 1.67591z" fill="#f9fbff" fill-rule="evenodd"/></svg>
|
Before Width: | Height: | Size: 589 B |
@ -1 +0,0 @@
|
||||
<svg fill="none" height="5" viewBox="0 0 7 5" width="7" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="m5.97989.212475c.29348.2833.29348.74262 0 1.025915l-3.81928 3.68674-1.940496-1.87315c-.2934852-.2833-.2934852-.74262 0-1.02592.293485-.2833.769318-.2833 1.062806 0l.87769.84723 2.75647-2.660815c.29349-.2833.76932-.2833 1.06281 0z" fill="#fff" fill-rule="evenodd"/></svg>
|
Before Width: | Height: | Size: 390 B |
@ -1,3 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M14 8C14 11.3137 11.3137 14 8 14C4.68629 14 2 11.3137 2 8C2 4.68629 4.68629 2 8 2C11.3137 2 14 4.68629 14 8ZM16 8C16 12.4183 12.4183 16 8 16C3.58172 16 0 12.4183 0 8C0 3.58172 3.58172 0 8 0C12.4183 0 16 3.58172 16 8ZM8 11C9.65685 11 11 9.65685 11 8C11 6.34315 9.65685 5 8 5C6.34315 5 5 6.34315 5 8C5 9.65685 6.34315 11 8 11Z" fill="#6A737D"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 495 B |
@ -1,3 +0,0 @@
|
||||
<svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.9717 11.5576C13.6494 10.5858 14.0469 9.40401 14.0469 8.12939C14.0469 4.81569 11.3606 2.12939 8.04688 2.12939C6.77226 2.12939 5.59048 2.52684 4.61869 3.20457L6.70652 5.2924C7.09817 5.10496 7.53683 5 8 5C9.65685 5 11 6.34315 11 8C11 8.46317 10.895 8.90183 10.7076 9.29348L12.9717 11.5576ZM12.9987 14.413L14.142 15.5563C14.5325 15.9468 15.1657 15.9468 15.5562 15.5563C15.9468 15.1658 15.9468 14.5326 15.5562 14.1421L14.4026 12.9885C15.434 11.6415 16.0469 9.957 16.0469 8.12939C16.0469 3.71112 12.4652 0.129395 8.04688 0.129395C6.21927 0.129395 4.5348 0.742241 3.18776 1.77364L2.1212 0.707079C1.73067 0.316555 1.09751 0.316555 0.706986 0.707079C0.316461 1.0976 0.316461 1.73077 0.706986 2.12129L1.76322 3.17753C0.688345 4.53962 0.046875 6.25959 0.046875 8.12939C0.046875 12.5477 3.6286 16.1294 8.04688 16.1294C9.91667 16.1294 11.6367 15.4879 12.9987 14.413ZM11.5713 12.9857C10.5818 13.7051 9.36389 14.1294 8.04688 14.1294C4.73317 14.1294 2.04688 11.4431 2.04688 8.12939C2.04688 6.81238 2.47121 5.59447 3.19062 4.60493L5.29234 6.70665C5.10494 7.09827 5 7.53688 5 8C5 9.65685 6.34315 11 8 11C8.46312 11 8.90173 10.8951 9.29335 10.7077L11.5713 12.9857Z" fill="#6A737D"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.3 KiB |
@ -1 +0,0 @@
|
||||
<svg fill="none" height="27" viewBox="0 0 27 27" width="27" xmlns="http://www.w3.org/2000/svg"><circle cx="13.5" cy="13.5" fill="#fff" fill-opacity=".25" r="13" stroke="#dcdde6"/><path d="m19.2 14.1-.7-.7-4.4 4.4v-10.8h-1v10.8l-4.4-4.4-.7.7 5.1 5.1.5.5.5-.5z" fill="#dcdde6"/></svg>
|
Before Width: | Height: | Size: 282 B |
@ -1 +0,0 @@
|
||||
<svg fill="none" height="8" viewBox="0 0 2 8" width="2" xmlns="http://www.w3.org/2000/svg"><g fill="#fff"><rect height="5" rx="1" width="2"/><rect height="2" rx="1" width="2" y="6"/></g></svg>
|
Before Width: | Height: | Size: 192 B |
@ -1,28 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="16" height="16" fill="#E5E5E5"/>
|
||||
<g clip-path="url(#clip0_0_1)">
|
||||
<rect width="413" height="679" transform="translate(-57 -546)" fill="white"/>
|
||||
<g filter="url(#filter0_d_0_1)">
|
||||
<path d="M-31 -520C-31 -524.418 -27.4183 -528 -23 -528H321C325.418 -528 329 -524.418 329 -520V108C329 112.418 325.418 116 321 116H-23C-27.4183 116 -31 112.418 -31 108V-520Z" fill="white"/>
|
||||
</g>
|
||||
<line x1="7.5" y1="-128" x2="7.49999" y2="8" stroke="#D6D9DC"/>
|
||||
<circle cx="8" cy="8" r="7.5" fill="white" stroke="#D6D9DC"/>
|
||||
<line x1="4.1001" y1="7.83325" x2="11.7668" y2="7.83325" stroke="#D6D9DC" stroke-linecap="round"/>
|
||||
<line x1="8.1001" y1="4.16699" x2="8.1001" y2="11.8337" stroke="#D6D9DC" stroke-linecap="round"/>
|
||||
</g>
|
||||
<rect x="-2918.5" y="-1765.5" width="9747" height="4874" stroke="black"/>
|
||||
<defs>
|
||||
<filter id="filter0_d_0_1" x="-58" y="-553" width="414" height="698" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="13.5"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.12594 0 0 0 0 0.182502 0 0 0 0 0.305378 0 0 0 0.26 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
</filter>
|
||||
<clipPath id="clip0_0_1">
|
||||
<rect width="413" height="679" fill="white" transform="translate(-57 -546)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.6 KiB |
@ -1 +0,0 @@
|
||||
<svg fill="none" height="10" viewBox="0 0 10 10" width="10" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="m1.76923 4.2003c-.44183 0-.799999.35817-.799999.8s.358169.8.799999.8h2.43125v2.43047c0 .44183.35817.8.8.8s.8-.35817.8-.8v-2.43047h2.43029c.44183 0 .8-.35817.8-.8s-.35817-.8-.8-.8h-2.43029v-2.43107c0-.44183-.35817-.800001-.8-.800001s-.8.358171-.8.800001v2.43107z" fill="#f9fbff" fill-rule="evenodd"/></svg>
|
Before Width: | Height: | Size: 429 B |
@ -1,3 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M8 0L0 16H16L8 0ZM8 3.36842L13.4764 14.3158H2.52364L8 3.36842ZM7.27273 6.73684V10.1053H8.72727V6.73684H7.27273ZM7.27273 11.7895V13.4737H8.72727V11.7895" fill="#D73A49"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 282 B |
Before Width: | Height: | Size: 7.5 KiB |
@ -1 +0,0 @@
|
||||
<svg fill="none" height="6" viewBox="0 0 7 6" width="7" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="m5.24834.0498428c.44182 0 .8.3581732.8.8000012v3.999996c0 .44183-.35818.8-.8.8-.44183 0-.8-.35817-.8-.8v-2.16706l-2.88276 2.88275c-.31242.31242-.818948.31242-1.131368 0-.312419-.31242-.312419-.81895 0-1.13137l2.784318-2.78432h-1.97019c-.441833 0-.800005-.35817-.800005-.799996 0-.441828.358172-.8000012.800005-.8000012z" fill="#f9fbff" fill-rule="evenodd"/></svg>
|
Before Width: | Height: | Size: 483 B |
@ -1 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M16 17.01V10h-2v7.01h-3L15 21l4-3.99h-3zM9 3L5 6.99h3V14h2V6.99h3L9 3z"/><path d="M0 0h24v24H0z" fill="none"/></svg>
|
Before Width: | Height: | Size: 209 B |
@ -1,3 +0,0 @@
|
||||
<svg width="12" height="16" viewBox="0 0 12 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M3.35075 15.9844C3.77098 15.9844 4.07114 15.6722 4.07114 15.2351L4.07114 3.9961L5.51193 3.9961C6.1723 3.9961 6.47246 3.21561 6.02221 2.74732L3.62089 0.249757C3.35074 -0.0624391 2.9005 -0.0624391 2.63035 0.249757L0.229027 2.74732C-0.251237 3.21561 0.0789448 3.9961 0.709292 3.9961L2.15008 3.9961L2.15008 15.2351C2.15008 15.6722 2.48027 15.9844 2.87048 15.9844L3.35075 15.9844ZM7.91325 0.749269L7.91325 11.9883L6.47246 11.9883C5.84212 11.9883 5.51193 12.8 5.9922 13.2683L8.39352 15.7659C8.66367 16.078 9.11392 16.078 9.38406 15.7659L11.7854 13.2683C12.2356 12.8 11.9355 11.9883 11.2751 11.9883L9.83431 11.9883L9.83431 0.749269C9.83431 0.343415 9.53415 5.36924e-07 9.11391 5.55292e-07L8.63365 5.76285e-07C8.24344 5.93342e-07 7.91325 0.343415 7.91325 0.749269Z" fill="#D6D9DC"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 887 B |
@ -1,3 +0,0 @@
|
||||
<svg width="14" height="16" viewBox="0 0 14 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M10.7059 12H3.29412V6.8C3.29412 4.8 4.94118 3.2 7 3.2C9.05882 3.2 10.7059 4.8 10.7059 6.8V12ZM12.3529 11.2V6.8C12.3529 4.344 10.5906 2.288 8.23529 1.744V1.2C8.23529 0.88174 8.10515 0.576516 7.87349 0.351472C7.64182 0.126428 7.32762 0 7 0C6.67238 0 6.35818 0.126428 6.12651 0.351472C5.89485 0.576516 5.76471 0.88174 5.76471 1.2V1.744C3.40118 2.288 1.64706 4.344 1.64706 6.8V11.2L0 12.8V13.6H14V12.8L12.3529 11.2ZM7 16C7.43683 16 7.85576 15.8314 8.16465 15.5314C8.47353 15.2313 8.64706 14.8243 8.64706 14.4H5.35294C5.35294 14.8243 5.52647 15.2313 5.83535 15.5314C6.14424 15.8314 6.56317 16 7 16Z" fill="#FFD33D"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 724 B |
@ -1,6 +0,0 @@
|
||||
<svg height="15" width="15" xmlns="http://www.w3.org/2000/svg">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<path d="M0 13.172h14.49v1.084H0zM6.586 0H7.67v10.538H6.586z" fill="#fff"/>
|
||||
<path d="M2.634 6.586l4.61 3.952 4.61-3.952" stroke="#fff"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 273 B |
@ -1,4 +0,0 @@
|
||||
|
||||
<svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M9.28348 11.5714V10.1429C9.28348 10.0595 9.2567 9.99107 9.20312 9.9375C9.14955 9.88393 9.0811 9.85714 8.99777 9.85714H8.14062V5.28571C8.14062 5.20238 8.11384 5.13393 8.06027 5.08036C8.0067 5.02679 7.93824 5 7.85491 5H4.99777C4.91443 5 4.84598 5.02679 4.79241 5.08036C4.73884 5.13393 4.71205 5.20238 4.71205 5.28571V6.71429C4.71205 6.79762 4.73884 6.86607 4.79241 6.91964C4.84598 6.97321 4.91443 7 4.99777 7H5.85491V9.85714H4.99777C4.91443 9.85714 4.84598 9.88393 4.79241 9.9375C4.73884 9.99107 4.71205 10.0595 4.71205 10.1429V11.5714C4.71205 11.6548 4.73884 11.7232 4.79241 11.7768C4.84598 11.8304 4.91443 11.8571 4.99777 11.8571H8.99777C9.0811 11.8571 9.14955 11.8304 9.20312 11.7768C9.2567 11.7232 9.28348 11.6548 9.28348 11.5714ZM8.14062 3.57143V2.14286C8.14062 2.05952 8.11384 1.99107 8.06027 1.9375C8.0067 1.88393 7.93824 1.85714 7.85491 1.85714H6.14063C6.05729 1.85714 5.98884 1.88393 5.93527 1.9375C5.8817 1.99107 5.85491 2.05952 5.85491 2.14286V3.57143C5.85491 3.65476 5.8817 3.72321 5.93527 3.77678C5.98884 3.83036 6.05729 3.85714 6.14063 3.85714H7.85491C7.93824 3.85714 8.0067 3.83036 8.06027 3.77678C8.11384 3.72321 8.14062 3.65476 8.14062 3.57143ZM12.9353 3.84821C13.5484 4.89583 13.8549 6.04167 13.8549 7.28571C13.8549 8.52976 13.5484 9.67857 12.9353 10.7321C12.3222 11.7798 11.4888 12.6101 10.4353 13.2232C9.38765 13.8363 8.24182 14.1429 6.99777 14.1429C5.75372 14.1429 4.60491 13.8363 3.55134 13.2232C2.50372 12.6101 1.67336 11.7798 1.06027 10.7321C0.447173 9.67857 0.140625 8.52976 0.140625 7.28571C0.140625 6.04167 0.447173 4.89583 1.06027 3.84821C1.67336 2.79464 2.50372 1.96131 3.55134 1.34821C4.60491 0.735119 5.75372 0.428571 6.99777 0.428571C8.24182 0.428571 9.38765 0.735119 10.4353 1.34821C11.4888 1.96131 12.3222 2.79464 12.9353 3.84821Z" fill="#24292E"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 26 KiB |
@ -1,5 +0,0 @@
|
||||
<svg viewBox="0 0 197.4 48.6" xmlns="http://www.w3.org/2000/svg">
|
||||
<g fill="#1d2028">
|
||||
<path d="M34.1 0H15.5v25.1h25.1V6.5c0-3.6-2.9-6.5-6.5-6.5zM9.7 0H6.5C2.9 0 0 2.9 0 6.5v3.2h9.7zM0 15.5h9.7v9.7H0zM31 40.6h3.2c3.6 0 6.5-2.9 6.5-6.5V31H31zM15.5 31h9.7v9.7h-9.7zM0 31v3.2c0 3.6 2.9 6.5 6.5 6.5h3.2V31zM65.4 2.6h-3.8v35.5h20.1v-3.4H65.4zM93.9 12c-7.4 0-12.6 5.5-12.6 13.4v.9c.1 3.4 1.6 6.6 4.1 9 2.4 2.2 5.5 3.5 8.8 3.5h.5c3.5 0 6.8-1.3 9.4-3.5l.1-.1-1.7-2.8-.2.1c-2.1 1.9-4.7 3-7.5 3-4.6 0-9.3-3-9.6-9.7h19.2v-.2s.1-1.2.1-1.8c0-7.2-4.2-11.8-10.6-11.8zm-8.6 10.6c.8-4.5 4.1-7.4 8.4-7.4 3.2 0 6.7 1.9 7 7.4zM126.5 15v1.3c-1.6-2.7-4.6-4.4-7.7-4.4h-.3c-6.8 0-11.5 5.4-11.5 13.3 0 8 4.5 13.4 11.2 13.4 5.3 0 7.7-3.2 8.5-4.6v3.9h3.6V2.6h-3.7V15zm-7.8 20.3c-4.7 0-7.8-4-7.8-10 0-5.8 3.3-9.9 7.9-9.9 3.9 0 7.8 3.1 7.8 9.9 0 7.4-4.1 10-7.9 10zM152.2 15.5v.2c-.7-1.2-2.9-3.8-8.2-3.8-6.7 0-11.1 5.1-11.1 12.9s4.6 13.1 11.4 13.1c3.7 0 6.2-1.3 7.9-4v3.5c0 4.9-3.1 7.7-8.6 7.7-2.3 0-4.7-.6-6.8-1.7l-.2-.1-1.4 3.1.2.1c2.6 1.3 5.5 2 8.3 2 5.9 0 12.2-3 12.2-11.3V12.6h-3.7zm-7.4 19.1c-4.9 0-8.1-3.8-8.1-9.7 0-6 2.8-9.4 7.6-9.4 5.3 0 7.8 3.1 7.8 9.4.1 6.2-2.5 9.7-7.3 9.7zM171 12c-7.4 0-12.5 5.5-12.5 13.3v.9c.1 3.4 1.6 6.6 4.1 9 2.4 2.2 5.5 3.5 8.8 3.5h.5c3.5 0 6.8-1.3 9.4-3.5l.1-.1-1.8-2.8-.2.1c-2.1 1.9-4.7 3-7.5 3-4.6 0-9.3-3-9.6-9.7h19.3v-.2s.1-1.2.1-1.8c0-7.1-4.2-11.7-10.7-11.7zm-8.5 10.6c.8-4.5 4.1-7.4 8.4-7.4 3.2 0 6.7 1.9 7 7.4zM197.3 12.5c-.5-.1-.9-.1-1.4-.2-3.5 0-6.4 2.2-7.9 5.9V12.5h-3.7l.1 25.3v.2h3.8V27.3c0-1.6.2-3.3.7-4.8 1.2-3.9 3.9-6.4 7.1-6.4.4 0 .8 0 1.2.1h.2v-3.7z"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.6 KiB |
@ -1,3 +0,0 @@
|
||||
<svg width="10" height="9" viewBox="0 0 10 9" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M4.12476 0.974243C3.92944 1.16956 3.94897 1.46252 4.12476 1.65784L6.48804 3.90393L0.882568 3.90393C0.609131 3.90393 0.413818 4.09924 0.413818 4.37268L0.413818 4.99768C0.413818 5.25159 0.609131 5.46643 0.882568 5.46643L6.48804 5.46643L4.14429 7.69299C3.94897 7.88831 3.94897 8.18127 4.12476 8.37659L4.55444 8.80627C4.74976 8.98206 5.04272 8.98206 5.21851 8.80627L9.0271 4.99768C9.20288 4.8219 9.20288 4.52893 9.0271 4.35315L5.21851 0.544555C5.04272 0.368774 4.74976 0.368774 4.55444 0.544555L4.12476 0.974243Z" fill="#BBC0C5"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 637 B |
@ -1,3 +0,0 @@
|
||||
<svg height="24" viewBox="27.191 0 24.088 24" width="24.088" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M47.576 24H31.588a2 2 0 01-1.998-2.002V11.993c0-1.105.896-2.002 1.998-2.002h1V6.99c0-3.868 3.131-7.004 6.994-7.004s6.995 3.136 6.995 7.004v3.001h.999a2 2 0 011.998 2.002v10.005A2 2 0 0147.576 24zM43.579 6.99c0-2.21-1.79-4.002-3.997-4.002a4 4 0 00-3.997 4.002v3.001h7.994z"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 392 B |