tequdev / XRPL-Tutorial

This site lets you learn and touch the basic transactions of the XRP Ledger!

Home Page:https://xrpl-tutorial.vercel.app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

XRP Tutorial

Provides a tutorial on XRP Ledger that is not tied to any specific programming language.

Installation

pnpm install

Development

pnpm dev

Add new contents

If you create a new page, add page information to _meta.[lang].json, and add all language *. [lang].mdx files for all languages.

If you cannot translate the _meta.[lang].json for other languages, please provide the information in English.

For *.[lang].mdx file, please import English content. If you cannot create English content, import the content in the language in which you created the English content.

like

import AccountInfo from './AccountInfo.en.mdx'

<AccountInfo />

Internationalization

Languages already added

Modify *.[lang].mdx file.

In particular, untranslated contents are just import of file in other languages.

Add new language

Add the language to next.config.js.

Language tag cannot be include for underscore. (ex. ❌en_US ⭕️en-US)

module.exports = withNextra({
  i18n: {
    locales: ['en', 'ja'], // ← Add the language here
    defaultLocale: 'en',
  },
})

Add the language to theme.config.js.

  i18n: [
    { locale: 'en', text: 'English' },
    { locale: 'ja', text: '日本語' },
    // Add the language here
  ],

Create a new _meta.json,*.mdx for all correspondence. Any omissions will result in a 404 error for that page.

If not all pages can be translated, other pages can be imported to temporarily display a different language. (Recommend importing English content (*.en.mdx).)

like

import AccountInfo from './AccountInfo.en.mdx'

<AccountInfo />

About

This site lets you learn and touch the basic transactions of the XRP Ledger!

https://xrpl-tutorial.vercel.app


Languages

Language:TypeScript 57.4%Language:MDX 41.2%Language:JavaScript 1.3%Language:CSS 0.1%