Skip to content

simonmartinez/next-export-i18n-example

 
 

Repository files navigation

next-i18n-export Example Build Status

This repository is a showcase for the next-export-i18n project. See a running example at next-export-i18n-example.vercel.app

About next-i18n-export

Unfortunately, Next.js i18n-routing does not supports next export. Since most of the i18n-libraries are using Next.js's i18n-routing under the hood, none of them is able to support fully static sites which are generated with next export. If they are talking about SSG support, they are talking about pre-rendered sites which are served with Next.js. next exportcreates a truly static page which can be served with any webserver (e.g. nginx, apache etc).

For the different types of pre-rendering in Next.js, take a look at my article The two and a half + one flavors of Next.js's pre-rendering which explains and summarizes the different options.

Getting Started with next-i18n-export

Quick start with next-export-i18n

  1. Run yarn add next-i18n-export or npm install next-i18n-export
  2. Add your translation files to the i18n/ folder
  3. Require your translation files in i18n/index
  4. import { useTranslation, useLanguageQuery, LanguageSwitcher } from 'next-export-i18n' in your pages and get the hooks

In case there is a default language set in the browser and this language is available in the translations, it overrides the default language setting in the config file. Relevant is the primary subtag, e.g.: a default language of en-US from the will be read as en.

const { t } = useTranslation();
const [query] = useLanguageQuery();
  1. Add the <LanguageSwitcher lang={string}> component to change the language (or create your own language switcher)
  2. Add the query from useLanguageQuery to your internal links to enhance them with the language parameter (<Link href={{ query: query … }}>…)
  3. Add the translations with t(key) from useTranslation to your elements. They will be automatically update as soon as the language change.

For in depth explanation please see the next-export-i18n documentation

Getting Started with Next.js

Well, you are looking for a very specific solution related to Next.js, so I assume you already know about Next.js. But anyway …

Run the development server:

npm run dev
# or
yarn dev

and open http://localhost:3000 with your browser to see the result.

Export the project

npm run export
# or
yarn export

and serve the ./out directory with your favorite web server.

Tech Stack

  • next.js: 11.0.1
  • react.js: 17.0.2
  • jest: 27.0.6
  • typescript: 4.3.5

License

Licensed under the MIT license. MIT - http://www.opensource.org/licenses/mit-license.php

About

Example project for next-export-i18n

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Languages

  • CSS 50.4%
  • TypeScript 32.2%
  • JavaScript 17.4%