generated from defi-wonderland/web3-react-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' into feat/format-number
- Loading branch information
Showing
15 changed files
with
279 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/* eslint-disable @typescript-eslint/no-var-requires */ | ||
/* eslint-disable no-undef */ | ||
|
||
const path = require('path'); | ||
|
||
module.exports = { | ||
i18n: { | ||
locales: ['en', 'es'], | ||
defaultLocale: 'en', | ||
}, | ||
localePath: typeof window === 'undefined' ? path.resolve('./public/locales') : '/locales', | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,10 @@ | ||
/** @type {import('next').NextConfig} */ | ||
const nextConfig = {}; | ||
|
||
const nextConfig = { | ||
i18n: { | ||
locales: ['en', 'es'], | ||
defaultLocale: 'en', | ||
}, | ||
}; | ||
|
||
export default nextConfig; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
{ | ||
"HOME": { | ||
"title": "ZKsync Ecosystem", | ||
"gasPrice": "Gas Price", | ||
"transfer": "ERC-20 Transfer", | ||
"lockedAssets": "Locked assets in shared bridge", | ||
"DASHBOARD": { | ||
"title": "Chain list", | ||
"chain": "Chain", | ||
"chainId": "Chain ID", | ||
"nativeToken": "Native token", | ||
"tvl": "TVL - L1", | ||
"type": "Type", | ||
"search": "Search by chain name or id..." | ||
} | ||
}, | ||
"CHAINPAGE": { | ||
"website": "Website", | ||
"explorer": "Explorer", | ||
"launchDate": "Launch date", | ||
"environment": "Environment", | ||
"nativeToken": "Native token", | ||
"CHAININFORMATION": { | ||
"title": "Chain information", | ||
"chainType": "Chain type", | ||
"lastBlock": "Last block", | ||
"lastBlockVerified": "Last block verified", | ||
"transactionsPerSecond": "Transactions per second", | ||
"totalBatchesCommitted": "Total batches committed", | ||
"totalBatchesVerified": "Total batches verified", | ||
"averageBlockTime": "Average block time" | ||
}, | ||
"ZKCHAINTVL": { | ||
"title": "ZKchain TVL" | ||
}, | ||
"RPC": { | ||
"title": "RPC", | ||
"status": "Status" | ||
}, | ||
"FEEPARAMS": { | ||
"batch": "Batch Overhead L1 Gas", | ||
"compute": "Compute Overhead Part", | ||
"maxGasBatch": "Max Gas per Batch" | ||
} | ||
}, | ||
"FOOTER": { | ||
"docs": "Documentation", | ||
"github": "GitHub", | ||
"madeWithLove": "Made with ❤️ by" | ||
}, | ||
"DISCLAIMER": { | ||
"disclaimer": "Disclaimer: This application is currently in beta. Please proceed at your own risk. Any funds lost through its use are non-recoverable." | ||
}, | ||
"LOCALES": { | ||
"en": "English", | ||
"es": "Spanish" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
{ | ||
"HOME": { | ||
"title": "Ecosistema ZKsync", | ||
"gasPrice": "Precio del gas", | ||
"transfer": "Transferencia ERC-20", | ||
"lockedAssets": "Activos bloqueados en puente compartido", | ||
"DASHBOARD": { | ||
"title": "Lista de cadenas", | ||
"chain": "Cadena", | ||
"chainId": "ID de cadena", | ||
"nativeToken": "Token nativo", | ||
"tvl": "TVL - L1", | ||
"type": "Tipo", | ||
"search": "Buscar por nombre o ID de la cadena..." | ||
} | ||
}, | ||
"CHAINPAGE": { | ||
"website": "Sitio web", | ||
"explorer": "Explorador", | ||
"launchDate": "Fecha de lanzamiento", | ||
"environment": "Entorno", | ||
"nativeToken": "Token nativo", | ||
"CHAININFORMATION": { | ||
"title": "Información de la cadena", | ||
"chainType": "Tipo de cadena", | ||
"lastBlock": "Último bloque", | ||
"lastBlockVerified": "Último bloque verificado", | ||
"transactionsPerSecond": "Transacciones por segundo", | ||
"totalBatchesCommitted": "Total de lotes comprometidos", | ||
"totalBatchesVerified": "Total de lotes verificados", | ||
"averageBlockTime": "Tiempo promedio de bloque" | ||
}, | ||
"ZKCHAINTVL": { | ||
"title": "TVL de ZKchain" | ||
}, | ||
"RPC": { | ||
"title": "RPC", | ||
"status": "Estado" | ||
}, | ||
"FEEPARAMS": { | ||
"batch": "Sobrecarga de lote L1 Gas", | ||
"compute": "Parte de sobrecarga de cómputo", | ||
"maxGasBatch": "Máximo gas por lote" | ||
} | ||
}, | ||
"FOOTER": { | ||
"docs": "Documentación", | ||
"github": "GitHub", | ||
"madeWithLove": "Hecho con ❤️ por" | ||
}, | ||
"DISCLAIMER": { | ||
"disclaimer": "Advertencia: Esta aplicación está actualmente en beta. Por favor, proceda bajo su propio riesgo. Cualquier fondo perdido a través de su uso no es recuperable." | ||
}, | ||
"LOCALES": { | ||
"en": "Inglés", | ||
"es": "Español" | ||
} | ||
} |
Oops, something went wrong.