Informational site for the Mastodon project
Submit translations here: https://crowdin.com/project/joinmastodon
To build the site, you'll need to have Node.js version 16 installed, which you can download from their website or install via tools like fnm
or nvm
. For dependency management, yarn
is used, it should be automatically be installed when you install Node.js, if it's not available you can use corepack enable
and corepack prepare yarn@1
to install it.
yarn
yarn run dev
See /package.json
for more scripts.
See CONTRIBUTING for more information. All interactions with this and other repositories that are part of the Mastodon project are subject to the Mastodon Code of Conduct.
Submit translations at Crowdin.
Translations are managed via Crowdin and distributed with react-intl. The basic translation workflow is:
- Messages are declared using the
<FormattedMessage>
component - Default messages are extracted to
locales/en.json
by runningyarn extract
- The locale files are synced with the Crowdin project. Any new messages in the source file(
locales/en.json
) are made available for translation for other languages. Any new translated messages are downloaded back to the repo into corresponding locale files (e.g.locales/es.json
). - On build, each locale loads its corresponding messages from
getStaticProps()
(example).
Localized versions of each page are hosted at dedicated URLs, making it easier for web crawling in users' preferred language. (docs)
Raster images should be added at the maximum resolution they'll be displayed at. If art direction is not required, mobile images will be generated automatically. (docs)
Next.js should be hosted using a Node.js server. (see instructions). While it absolutely can exported to static HTML,
- image optimization (for automatic webp conversion and compression)
- internationalized routing (code reference)
- and redirects (code reference)
are the primary benefits of a Node.js server for this project.
For now, Node 16 LTS is recommended for building the site until support for Node 18 is provided by Squoosh.