diff --git a/src/i18n/en/index.js b/src/i18n/en/index.js index 910cdb0..b5764b8 100644 --- a/src/i18n/en/index.js +++ b/src/i18n/en/index.js @@ -89,7 +89,15 @@ const en = { text5: 'The Kryptokrona isn’t dependent on our central banks or servers, thus less fragile than todays financial systems.', title6: 'Drama-free', text6: 'Our network reduces the amount of new coins minted with every block, making for a drama-free emission.', - } + }, + mining: { + title: 'Mining', + mainText1: 'Kryptokrona is a cryptocurrency that relies on proof-of-work mining to achieve distributed consensus. It utilizes the Cryptonight Turtle algorithm. This algorithm is primarily mined on CPUs and is ASIC resistant. With Kryptokrona being ASIC resistant, the whole network gets decentralized. This means that the algorithm is purposefully designed to stop mining from being dominated by a set of specialized miners with the most expensive equipment. Therefore Kryptokrona should be easily mineable through regular computers', + title2: 'Hardware for mining', + text2: 'You can mine Kryptokrona on CPUs, GPUs & Android Phones. Compare your hashrate to others, and even help expand the list!', + title3: 'Software', + text3: 'There are several options when it comes to mining software.The most common mining software for mining such algorithms is XMRig. Guide on how to mine XKR is coming up soon.', + }, } export default en diff --git a/src/i18n/i18n-types.d.ts b/src/i18n/i18n-types.d.ts index a1ac7d2..14f0a25 100644 --- a/src/i18n/i18n-types.d.ts +++ b/src/i18n/i18n-types.d.ts @@ -282,6 +282,32 @@ type RootTranslation = { */ text6: string } + mining: { + /** + * Mining + */ + title: string + /** + * Kryptokrona is a cryptocurrency that relies on proof-of-work mining to achieve distributed consensus. It utilizes the Cryptonight Turtle algorithm. This algorithm is primarily mined on CPUs and is ASIC resistant. With Kryptokrona being ASIC resistant, the whole network gets decentralized. This means that the algorithm is purposefully designed to stop mining from being dominated by a set of specialized miners with the most expensive equipment. Therefore Kryptokrona should be easily mineable through regular computers + */ + mainText1: string + /** + * Hardware for mining + */ + title2: string + /** + * You can mine Kryptokrona on CPUs, GPUs & Android Phones. Compare your hashrate to others, and even help expand the list! + */ + text2: string + /** + * Software + */ + title3: string + /** + * There are several options when it comes to mining software.The most common mining software for mining such algorithms is XMRig. Guide on how to mine XKR is coming up soon. + */ + text3: string + } } export type TranslationFunctions = { @@ -552,6 +578,32 @@ export type TranslationFunctions = { */ text6: () => LocalizedString } + mining: { + /** + * Mining + */ + title: () => LocalizedString + /** + * Kryptokrona is a cryptocurrency that relies on proof-of-work mining to achieve distributed consensus. It utilizes the Cryptonight Turtle algorithm. This algorithm is primarily mined on CPUs and is ASIC resistant. With Kryptokrona being ASIC resistant, the whole network gets decentralized. This means that the algorithm is purposefully designed to stop mining from being dominated by a set of specialized miners with the most expensive equipment. Therefore Kryptokrona should be easily mineable through regular computers + */ + mainText1: () => LocalizedString + /** + * Hardware for mining + */ + title2: () => LocalizedString + /** + * You can mine Kryptokrona on CPUs, GPUs & Android Phones. Compare your hashrate to others, and even help expand the list! + */ + text2: () => LocalizedString + /** + * Software + */ + title3: () => LocalizedString + /** + * There are several options when it comes to mining software.The most common mining software for mining such algorithms is XMRig. Guide on how to mine XKR is coming up soon. + */ + text3: () => LocalizedString + } } export type Formatters = {} diff --git a/src/lib/components/Footer.svelte b/src/lib/components/Footer.svelte index afaf430..9f15b5a 100644 --- a/src/lib/components/Footer.svelte +++ b/src/lib/components/Footer.svelte @@ -24,6 +24,7 @@ {$LL.footer.stickers()} {$LL.footer.docs()} Github + Sylegudie

Hugin

diff --git a/src/routes/[lang]/mining/index.svelte b/src/routes/[lang]/mining/index.svelte index 6900e77..26c1092 100644 --- a/src/routes/[lang]/mining/index.svelte +++ b/src/routes/[lang]/mining/index.svelte @@ -2,6 +2,7 @@ import MiningConfig from "$lib/components/mining/MiningConfig.svelte"; import MiningCalc from "$lib/components/mining/MiningCalc.svelte"; import LinkButton from "../../../lib/components/buttons/LinkButton.svelte"; + import LL from "$i18n/i18n-svelte"; @@ -20,19 +21,13 @@
-

Mining

-

Kryptokrona is a cryptocurrency that relies on proof-of-work mining to achieve distributed consensus. It utilizes - the Cryptonight Turtle algorithm. This algorithm is primarily mined on CPUs and is ASIC resistant. With - Kryptokrona being ASIC resistant, the whole network gets decentralized. This means that the algorithm is - purposefully designed to stop mining from being dominated by a set of specialized miners with the most expensive - equipment. Therefore Kryptokrona should be easily mineable through "regular" computers.

-

Hardwate for mining

-

You can mine Kryptokrona on CPUs, GPUs & Android Phones. Compare your hashrate to others, and even help expand - the list!

+

{$LL.mining.title()}

+

{$LL.mining.mainText()}

+

{$LL.mining.title2()}

+

{$LL.mining.text2()}

-

Software

-

There are several options when it comes to mining software.The most common mining software for mining such - algorithms is XMRig. Guide on how to mine XKR is coming up soon.

+

{$LL.mining.title3()}

+

{$LL.mining.text3()}