diff --git a/components/guides/GuideList.tsx b/components/guides/GuideList.tsx index c2dc3ec6..7011292a 100644 --- a/components/guides/GuideList.tsx +++ b/components/guides/GuideList.tsx @@ -1,5 +1,6 @@ import React from 'react'; import { Trans } from 'next-i18next'; +import { LinkOut } from '@/components/LinkOut'; function GuideList({ listItems }) { if (typeof listItems === 'string') return <>; @@ -10,7 +11,19 @@ function GuideList({ listItems }) {
  • , + a: , + guilink: ( + + ), + clilink: ( + + ), }} > {item.text} diff --git a/public/locales/en-US/guide-flexfarmer.json b/public/locales/en-US/guide-flexfarmer.json index 2cd15be7..77ad1a2f 100644 --- a/public/locales/en-US/guide-flexfarmer.json +++ b/public/locales/en-US/guide-flexfarmer.json @@ -6,13 +6,13 @@ "heading": "Requirements", "list": [ { - "text": "Hardware compatible with FlexFarmer: A modern computer running 64-bit Linux or Windows. Raspberry Pi is also supported." + "text": "Hardware compatible with FlexFarmer: A modern computer running 64-bit Linux or Windows. Raspberry Pi is also supported with a 64-bit OS (Raspberry Pi 3b+ or newer) or 64-bit emulation with QEMU (some older Raspberry Pi models, not recommended)" }, { "text": "At least 128MB available RAM." }, { "text": "Initialized Plot NFT (Made via GUI or CLI)." }, { "text": "Plots bound to that Plot NFT." }, { - "text": "PlotNFT joined to Flexpool (To manage your PlotNFT with the Chia client, see our CLI and GUI instructions)." + "text": "PlotNFT joined to Flexpool (To manage your PlotNFT with the Chia client, see our GUI and CLI instructions)." } ] },