mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
a6e635ca7d
fcc3ed651 Remove some expired new-in a9c5981f5 Fix cascade example 82bb250fa Add some lines about permalinks tokens in front matter 328fe564e Remove some outdated new-in fb140b153 Hide showcase menu entry 42d9d1c79 Update image formats from which EXIF data can be extracted 09ad56b6e netlify: Hugo 0.130.0 1d503f846 Merge branch 'tempv0.130.0' e2458074d math: Add trigonometric functions and some angle helper functions 392afc8f9 Disable the showcase section for now 0300750f2 Improve example of image render hook 60a9306af Improve description of the .Site.RegularPages method 8d759175d Fix typos 55daa4554 Update XxHash.md 397c81cb7 Add namespace for hash functions 70fe8d2f0 netlify: Bump Hugo 0.129.0 5a9771aff Merge branch 'tempv0.129.0' f9146575b Fix typo e6e1fea49 Fix typo in Hugo docs | functions | partial 732d10ec4 source: Expose GitInfo Body 34c97e639 netlify: Hugo 0.128.2 3270587e9 Fix typo 727c5396e netlify: Hugo 0.128.1 80b6ae99c Update GitHub Pages workflow file example 027134102 Update GitHub Pages workflow file example 2600a8a2e Miscellaneous edits 3fdd5819b Update Build.md 7764005c3 Improve example of render hook directory structure 5e3941d82 Fix typos 748bf065f Restructure templates section fafbf6566 Update Defer.md 012162e0d Document changes to template functions in v0.128.0 0990ce35b quick-reference: Update emojis 6677a30ef Update Goldmark configuration documentation 4449d530d Document new pagination config 0af8be439 Update Defer.md 56348196d netlify: Hugo 0.128.0 d67b6d82e Update content/en/functions/templates/Defer.md 23d996b3d Update content/en/functions/templates/Defer.md 7f7fb2f27 Document templates.Defer 5ada1e9d5 Fix docs merge (remove shortcode) d27ee6156 Merge branch 'tempv0.128.0' 5d7317c84 Fix typo 7c18ee546 Update theme 83bfea63b Update theme b274b3238 Merge commit '8b9803425e63e1b1801f8d5d676e96368d706722' ff34a035a deploy: Add stripIndexHtml target option d9e964bdb markup/goldmark: Add the Hugo Goldmark Extras "delete" extension ac5bd16d2 deps: Upgrade github.com/alecthomas/chroma v2.13.0 => v2.14.0 25377171b config: Remove extraneous BuildConfig setting 0d2044f6d docs: Regen docshelper a2548dac9 markup/goldmark: Support extras extension 9d0c86ee8 commands: Add gen chromastyles --lineNumbersTableStyle flag git-subtree-dir: docs git-subtree-split: fcc3ed651a1b6431303c2f88f20fa38531c52b3d
631 lines
19 KiB
Markdown
631 lines
19 KiB
Markdown
---
|
|
title: Multilingual mode
|
|
linkTitle: Multilingual
|
|
description: Localize your project for each language and region, including translations, images, dates, currencies, numbers, percentages, and collation sequence. Hugo's multilingual framework supports single-host and multihost configurations.
|
|
categories: [content management]
|
|
keywords: [multilingual,i18n,internationalization]
|
|
menu:
|
|
docs:
|
|
parent: content-management
|
|
weight: 230
|
|
weight: 230
|
|
toc: true
|
|
aliases: [/content/multilingual/,/tutorials/create-a-multilingual-site/]
|
|
---
|
|
|
|
## Configure languages
|
|
|
|
This is the default language configuration:
|
|
|
|
{{< code-toggle config=languages />}}
|
|
|
|
In the above, `en` is the language key.
|
|
|
|
{{% note %}}
|
|
Each language key must conform to the syntax described in [RFC 5646]. You must use hyphens to separate subtags. For example:
|
|
|
|
- `en`
|
|
- `en-GB`
|
|
- `pt-BR`
|
|
|
|
[RFC 5646]: https://datatracker.ietf.org/doc/html/rfc5646#section-2.1
|
|
{{% /note %}}
|
|
|
|
This is an example of a site configuration for a multilingual project. Any key not defined in a `languages` object will fall back to the global value in the root of your site configuration.
|
|
|
|
{{< code-toggle file=hugo >}}
|
|
defaultContentLanguage = 'de'
|
|
defaultContentLanguageInSubdir = true
|
|
|
|
[languages.de]
|
|
contentDir = 'content/de'
|
|
disabled = false
|
|
languageCode = 'de-DE'
|
|
languageDirection = 'ltr'
|
|
languageName = 'Deutsch'
|
|
title = 'Projekt Dokumentation'
|
|
weight = 1
|
|
|
|
[languages.de.params]
|
|
subtitle = 'Referenz, Tutorials und Erklärungen'
|
|
|
|
[languages.en]
|
|
contentDir = 'content/en'
|
|
disabled = false
|
|
languageCode = 'en-US'
|
|
languageDirection = 'ltr'
|
|
languageName = 'English'
|
|
title = 'Project Documentation'
|
|
weight = 2
|
|
|
|
[languages.en.params]
|
|
subtitle = 'Reference, Tutorials, and Explanations'
|
|
{{< /code-toggle >}}
|
|
|
|
defaultContentLanguage
|
|
: (`string`) The project's default language key, conforming to the syntax described in [RFC 5646]. This value must match one of the defined language keys. Examples:
|
|
|
|
- `en`
|
|
- `en-GB`
|
|
- `pt-BR`
|
|
|
|
defaultContentLanguageInSubdir
|
|
: (`bool`) If `true`, Hugo renders the default language site in a subdirectory matching the `defaultContentLanguage`. Default is `false`.
|
|
|
|
contentDir
|
|
: (`string`) The content directory for this language. Omit if [translating by file name].
|
|
|
|
disabled
|
|
: (`bool`) If `true`, Hugo will not render content for this language. Default is `false`.
|
|
|
|
languageCode
|
|
: (`string`) The language tag as described in [RFC 5646]. This value does not affect localization or URLs. Hugo uses this value to populate the `language` element in the [built-in RSS template], and the `lang` attribute of the `html` element in the [built-in alias template]. Examples:
|
|
|
|
- `en`
|
|
- `en-GB`
|
|
- `pt-BR`
|
|
|
|
languageDirection
|
|
: (`string`) The language direction, either left-to-right (`ltr`) or right-to-left (`rtl`). Use this value in your templates with the global [`dir`] HTML attribute.
|
|
|
|
languageName
|
|
: (`string`) The language name, typically used when rendering a language switcher.
|
|
|
|
title
|
|
: (`string`) The site title for this language (optional).
|
|
|
|
weight
|
|
: (`int`) The language weight. When set to a non-zero value, this is the primary sort criteria for this language.
|
|
|
|
[`dir`]: https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/dir
|
|
[built-in RSS template]: https://github.com/gohugoio/hugo/blob/master/tpl/tplimpl/embedded/templates/_default/rss.xml
|
|
[built-in alias template]: https://github.com/gohugoio/hugo/blob/master/tpl/tplimpl/embedded/templates/alias.html
|
|
[RFC 5646]: https://datatracker.ietf.org/doc/html/rfc5646#section-2.1
|
|
[translating by file name]: #translation-by-file-name
|
|
|
|
### Changes in Hugo 0.112.0
|
|
|
|
{{< new-in 0.112.0 >}}
|
|
|
|
In Hugo `v0.112.0` we consolidated all configuration options, and improved how the languages and their parameters are merged with the main configuration. But while testing this on Hugo sites out there, we received some error reports and reverted some of the changes in favor of deprecation warnings:
|
|
|
|
1. `site.Language.Params` is deprecated. Use `site.Params` directly.
|
|
1. Adding custom parameters to the top level language configuration is deprecated. Define custom parameters within `languages.xx.params`. See `color` in the example below.
|
|
|
|
{{< code-toggle file=hugo >}}
|
|
|
|
title = "My blog"
|
|
languageCode = "en-us"
|
|
|
|
[languages]
|
|
[languages.sv]
|
|
title = "Min blogg"
|
|
languageCode = "sv"
|
|
[languages.en.params]
|
|
color = "blue"
|
|
{{< /code-toggle >}}
|
|
|
|
In the example above, all settings except `color` below `params` map to predefined configuration options in Hugo for the site and its language, and should be accessed via the documented accessors:
|
|
|
|
```go-html-template
|
|
{{ site.Title }}
|
|
{{ site.LanguageCode }}
|
|
{{ site.Params.color }}
|
|
```
|
|
|
|
### Disable a language
|
|
|
|
To disable a language within a `languages` object in your site configuration:
|
|
|
|
{{< code-toggle file=hugo >}}
|
|
[languages.es]
|
|
disabled = true
|
|
{{< /code-toggle >}}
|
|
|
|
To disable one or more languages in the root of your site configuration:
|
|
|
|
{{< code-toggle file=hugo >}}
|
|
disableLanguages = ["es", "fr"]
|
|
{{< /code-toggle >}}
|
|
|
|
To disable one or more languages using an environment variable:
|
|
|
|
```sh
|
|
HUGO_DISABLELANGUAGES="es fr" hugo
|
|
```
|
|
|
|
Note that you cannot disable the default content language.
|
|
|
|
### Configure multilingual multihost
|
|
|
|
|
|
Hugo supports multiple languages in a multihost configuration. This means you can configure a `baseURL` per `language`.
|
|
|
|
{{% note %}}
|
|
If a `baseURL` is set on the `language` level, then all languages must have one and they must all be different.
|
|
{{% /note %}}
|
|
|
|
Example:
|
|
|
|
{{< code-toggle file=hugo >}}
|
|
[languages]
|
|
[languages.en]
|
|
baseURL = 'https://en.example.org/'
|
|
languageName = 'English'
|
|
title = 'In English'
|
|
weight = 2
|
|
[languages.fr]
|
|
baseURL = 'https://fr.example.org'
|
|
languageName = 'Français'
|
|
title = 'En Français'
|
|
weight = 1
|
|
{{</ code-toggle >}}
|
|
|
|
With the above, the two sites will be generated into `public` with their own root:
|
|
|
|
```text
|
|
public
|
|
├── en
|
|
└── fr
|
|
```
|
|
|
|
**All URLs (i.e `.Permalink` etc.) will be generated from that root. So the English home page above will have its `.Permalink` set to `https://example.org/`.**
|
|
|
|
When you run `hugo server` we will start multiple HTTP servers. You will typically see something like this in the console:
|
|
|
|
```text
|
|
Web Server is available at 127.0.0.1:1313 (bind address 127.0.0.1) fr
|
|
Web Server is available at 127.0.0.1:1314 (bind address 127.0.0.1) en
|
|
Press Ctrl+C to stop
|
|
```
|
|
|
|
Live reload and `--navigateToChanged` between the servers work as expected.
|
|
|
|
## Translate your content
|
|
|
|
There are two ways to manage your content translations. Both ensure each page is assigned a language and is linked to its counterpart translations.
|
|
|
|
### Translation by file name
|
|
|
|
Considering the following example:
|
|
|
|
1. `/content/about.en.md`
|
|
2. `/content/about.fr.md`
|
|
|
|
The first file is assigned the English language and is linked to the second.
|
|
The second file is assigned the French language and is linked to the first.
|
|
|
|
Their language is __assigned__ according to the language code added as a __suffix to the file name__.
|
|
|
|
By having the same **path and base file name**, the content pieces are __linked__ together as translated pages.
|
|
|
|
{{% note %}}
|
|
If a file has no language code, it will be assigned the default language.
|
|
{{% /note %}}
|
|
|
|
### Translation by content directory
|
|
|
|
This system uses different content directories for each of the languages. Each language's content directory is set using the `contentDir` parameter.
|
|
|
|
{{< code-toggle file=hugo >}}
|
|
languages:
|
|
en:
|
|
weight: 10
|
|
languageName: "English"
|
|
contentDir: "content/english"
|
|
fr:
|
|
weight: 20
|
|
languageName: "Français"
|
|
contentDir: "content/french"
|
|
{{< /code-toggle >}}
|
|
|
|
The value of `contentDir` can be any valid path -- even absolute path references. The only restriction is that the content directories cannot overlap.
|
|
|
|
Considering the following example in conjunction with the configuration above:
|
|
|
|
1. `/content/english/about.md`
|
|
2. `/content/french/about.md`
|
|
|
|
The first file is assigned the English language and is linked to the second.
|
|
The second file is assigned the French language and is linked to the first.
|
|
|
|
Their language is __assigned__ according to the content directory they are __placed__ in.
|
|
|
|
By having the same **path and basename** (relative to their language content directory), the content pieces are __linked__ together as translated pages.
|
|
|
|
### Bypassing default linking
|
|
|
|
Any pages sharing the same `translationKey` set in front matter will be linked as translated pages regardless of basename or location.
|
|
|
|
Considering the following example:
|
|
|
|
1. `/content/about-us.en.md`
|
|
2. `/content/om.nn.md`
|
|
3. `/content/presentation/a-propos.fr.md`
|
|
|
|
{{< code-toggle >}}
|
|
translationKey: "about"
|
|
{{< /code-toggle >}}
|
|
|
|
By setting the `translationKey` front matter parameter to `about` in all three pages, they will be __linked__ as translated pages.
|
|
|
|
### Localizing permalinks
|
|
|
|
Because paths and file names are used to handle linking, all translated pages will share the same URL (apart from the language subdirectory).
|
|
|
|
To localize URLs:
|
|
|
|
- For a regular page, set either [`slug`] or [`url`] in front matter
|
|
- For a section page, set [`url`] in front matter
|
|
|
|
[`slug`]: /content-management/urls/#slug
|
|
[`url`]: /content-management/urls/#url
|
|
|
|
For example, a French translation can have its own localized slug.
|
|
|
|
{{< code-toggle file=content/about.fr.md fm=true >}}
|
|
title: A Propos
|
|
slug: "a-propos"
|
|
{{< /code-toggle >}}
|
|
|
|
At render, Hugo will build both `/about/` and `/fr/a-propos/` without affecting the translation link.
|
|
|
|
### Page bundles
|
|
|
|
To avoid the burden of having to duplicate files, each Page Bundle inherits the resources of its linked translated pages' bundles except for the content files (Markdown files, HTML files etc...).
|
|
|
|
Therefore, from within a template, the page will have access to the files from all linked pages' bundles.
|
|
|
|
If, across the linked bundles, two or more files share the same basename, only one will be included and chosen as follows:
|
|
|
|
* File from current language bundle, if present.
|
|
* First file found across bundles by order of language `Weight`.
|
|
|
|
{{% note %}}
|
|
Page Bundle resources follow the same language assignment logic as content files, both by file name (`image.jpg`, `image.fr.jpg`) and by directory (`english/about/header.jpg`, `french/about/header.jpg`).
|
|
{{%/ note %}}
|
|
|
|
## Reference translated content
|
|
|
|
To create a list of links to translated content, use a template similar to the following:
|
|
|
|
{{< code file=layouts/partials/i18nlist.html >}}
|
|
{{ if .IsTranslated }}
|
|
<h4>{{ i18n "translations" }}</h4>
|
|
<ul>
|
|
{{ range .Translations }}
|
|
<li>
|
|
<a href="{{ .RelPermalink }}">{{ .Language.Lang }}: {{ .LinkTitle }}{{ if .IsPage }} ({{ i18n "wordCount" . }}){{ end }}</a>
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
{{ end }}
|
|
{{< /code >}}
|
|
|
|
The above can be put in a `partial` (i.e., inside `layouts/partials/`) and included in any template. It will not print anything if there are no translations for a given page.
|
|
|
|
The above also uses the [`i18n` function][i18func] described in the next section.
|
|
|
|
### List all available languages
|
|
|
|
`.AllTranslations` on a `Page` can be used to list all translations, including the page itself. On the home page it can be used to build a language navigator:
|
|
|
|
{{< code file=layouts/partials/allLanguages.html >}}
|
|
<ul>
|
|
{{ range $.Site.Home.AllTranslations }}
|
|
<li><a href="{{ .RelPermalink }}">{{ .Language.LanguageName }}</a></li>
|
|
{{ end }}
|
|
</ul>
|
|
{{< /code >}}
|
|
|
|
## Translation of strings
|
|
|
|
See the [`lang.Translate`] template function.
|
|
|
|
[`lang.Translate`]: /functions/lang/translate
|
|
|
|
## Localization
|
|
|
|
The following localization examples assume your site's primary language is English, with translations to French and German.
|
|
|
|
{{< code-toggle file=hugo >}}
|
|
defaultContentLanguage = 'en'
|
|
|
|
[languages]
|
|
[languages.en]
|
|
contentDir = 'content/en'
|
|
languageName = 'English'
|
|
weight = 1
|
|
[languages.fr]
|
|
contentDir = 'content/fr'
|
|
languageName = 'Français'
|
|
weight = 2
|
|
[languages.de]
|
|
contentDir = 'content/de'
|
|
languageName = 'Deutsch'
|
|
weight = 3
|
|
|
|
{{< /code-toggle >}}
|
|
|
|
### Dates
|
|
|
|
With this front matter:
|
|
|
|
{{< code-toggle >}}
|
|
date = 2021-11-03T12:34:56+01:00
|
|
{{< /code-toggle >}}
|
|
|
|
And this template code:
|
|
|
|
```go-html-template
|
|
{{ .Date | time.Format ":date_full" }}
|
|
```
|
|
|
|
The rendered page displays:
|
|
|
|
Language|Value
|
|
:--|:--
|
|
English|Wednesday, November 3, 2021
|
|
Français|mercredi 3 novembre 2021
|
|
Deutsch|Mittwoch, 3. November 2021
|
|
|
|
See [`time.Format`] for details.
|
|
|
|
### Currency
|
|
|
|
With this template code:
|
|
|
|
```go-html-template
|
|
{{ 512.5032 | lang.FormatCurrency 2 "USD" }}
|
|
```
|
|
|
|
The rendered page displays:
|
|
|
|
Language|Value
|
|
:--|:--
|
|
English|$512.50
|
|
Français|512,50 $US
|
|
Deutsch|512,50 $
|
|
|
|
See [lang.FormatCurrency] and [lang.FormatAccounting] for details.
|
|
|
|
### Numbers
|
|
|
|
With this template code:
|
|
|
|
```go-html-template
|
|
{{ 512.5032 | lang.FormatNumber 2 }}
|
|
```
|
|
|
|
The rendered page displays:
|
|
|
|
Language|Value
|
|
:--|:--
|
|
English|512.50
|
|
Français|512,50
|
|
Deutsch|512,50
|
|
|
|
See [lang.FormatNumber] and [lang.FormatNumberCustom] for details.
|
|
|
|
### Percentages
|
|
|
|
With this template code:
|
|
|
|
```go-html-template
|
|
{{ 512.5032 | lang.FormatPercent 2 }}
|
|
```
|
|
|
|
The rendered page displays:
|
|
|
|
Language|Value
|
|
:--|:--
|
|
English|512.50%
|
|
Français|512,50 %
|
|
Deutsch|512,50 %
|
|
|
|
See [lang.FormatPercent] for details.
|
|
|
|
## Menus
|
|
|
|
Localization of menu entries depends on how you define them:
|
|
|
|
- When you define menu entries [automatically] using the section pages menu, you must use translation tables to localize each entry.
|
|
- When you define menu entries [in front matter], they are already localized based on the front matter itself. If the front matter values are insufficient, use translation tables to localize each entry.
|
|
- When you define menu entries [in site configuration], you must create language-specific menu entries under each language key. If the names of the menu entries are insufficient, use translation tables to localize each entry.
|
|
|
|
### Create language-specific menu entries
|
|
|
|
#### Method 1 -- Use a single configuration file
|
|
|
|
For a simple menu with a small number of entries, use a single configuration file. For example:
|
|
|
|
{{< code-toggle file=hugo >}}
|
|
[languages.de]
|
|
languageCode = 'de-DE'
|
|
languageName = 'Deutsch'
|
|
weight = 1
|
|
|
|
[[languages.de.menus.main]]
|
|
name = 'Produkte'
|
|
pageRef = '/products'
|
|
weight = 10
|
|
|
|
[[languages.de.menus.main]]
|
|
name = 'Leistungen'
|
|
pageRef = '/services'
|
|
weight = 20
|
|
|
|
[languages.en]
|
|
languageCode = 'en-US'
|
|
languageName = 'English'
|
|
weight = 2
|
|
|
|
[[languages.en.menus.main]]
|
|
name = 'Products'
|
|
pageRef = '/products'
|
|
weight = 10
|
|
|
|
[[languages.en.menus.main]]
|
|
name = 'Services'
|
|
pageRef = '/services'
|
|
weight = 20
|
|
{{< /code-toggle >}}
|
|
|
|
#### Method 2 -- Use a configuration directory
|
|
|
|
With a more complex menu structure, create a [configuration directory] and split the menu entries into multiple files, one file per language. For example:
|
|
|
|
```text
|
|
config/
|
|
└── _default/
|
|
├── menus.de.toml
|
|
├── menus.en.toml
|
|
└── hugo.toml
|
|
```
|
|
|
|
{{< code-toggle file=config/_default/menus.de >}}
|
|
[[main]]
|
|
name = 'Produkte'
|
|
pageRef = '/products'
|
|
weight = 10
|
|
[[main]]
|
|
name = 'Leistungen'
|
|
pageRef = '/services'
|
|
weight = 20
|
|
{{< /code-toggle >}}
|
|
|
|
{{< code-toggle file=config/_default/menus.en >}}
|
|
[[main]]
|
|
name = 'Products'
|
|
pageRef = '/products'
|
|
weight = 10
|
|
[[main]]
|
|
name = 'Services'
|
|
pageRef = '/services'
|
|
weight = 20
|
|
{{< /code-toggle >}}
|
|
|
|
[configuration directory]: /getting-started/configuration/#configuration-directory
|
|
|
|
### Use translation tables
|
|
|
|
When rendering the text that appears in menu each entry, the [example menu template] does this:
|
|
|
|
```go-html-template
|
|
{{ or (T .Identifier) .Name | safeHTML }}
|
|
```
|
|
|
|
It queries the translation table for the current language using the menu entry's `identifier` and returns the translated string. If the translation table does not exist, or if the `identifier` key is not present in the translation table, it falls back to `name`.
|
|
|
|
The `identifier` depends on how you define menu entries:
|
|
|
|
- If you define the menu entry [automatically] using the section pages menu, the `identifier` is the page's `.Section`.
|
|
- If you define the menu entry [in site configuration] or [in front matter], set the `identifier` property to the desired value.
|
|
|
|
For example, if you define menu entries in site configuration:
|
|
|
|
{{< code-toggle file=hugo >}}
|
|
[[menus.main]]
|
|
identifier = 'products'
|
|
name = 'Products'
|
|
pageRef = '/products'
|
|
weight = 10
|
|
[[menus.main]]
|
|
identifier = 'services'
|
|
name = 'Services'
|
|
pageRef = '/services'
|
|
weight = 20
|
|
{{< / code-toggle >}}
|
|
|
|
Create corresponding entries in the translation tables:
|
|
|
|
{{< code-toggle file=i18n/de >}}
|
|
products = 'Produkte'
|
|
services = 'Leistungen'
|
|
{{< / code-toggle >}}
|
|
|
|
[example menu template]: /templates/menu/#example
|
|
[automatically]: /content-management/menus/#define-automatically
|
|
[in front matter]: /content-management/menus/#define-in-front-matter
|
|
[in site configuration]: /content-management/menus/#define-in-site-configuration
|
|
|
|
## Missing translations
|
|
|
|
If a string does not have a translation for the current language, Hugo will use the value from the default language. If no default value is set, an empty string will be shown.
|
|
|
|
While translating a Hugo website, it can be handy to have a visual indicator of missing translations. The [`enableMissingTranslationPlaceholders` configuration option][config] will flag all untranslated strings with the placeholder `[i18n] identifier`, where `identifier` is the id of the missing translation.
|
|
|
|
{{% note %}}
|
|
Hugo will generate your website with these missing translation placeholders. It might not be suitable for production environments.
|
|
{{% /note %}}
|
|
|
|
For merging of content from other languages (i.e. missing content translations), see [lang.Merge].
|
|
|
|
To track down missing translation strings, run Hugo with the `--printI18nWarnings` flag:
|
|
|
|
```sh
|
|
hugo --printI18nWarnings | grep i18n
|
|
i18n|MISSING_TRANSLATION|en|wordCount
|
|
```
|
|
|
|
## Multilingual themes support
|
|
|
|
To support Multilingual mode in your themes, some considerations must be taken for the URLs in the templates. If there is more than one language, URLs must meet the following criteria:
|
|
|
|
* Come from the built-in `.Permalink` or `.RelPermalink`
|
|
* Be constructed with the [`relLangURL`] or [`absLangURL`] template function, or be prefixed with `{{ .LanguagePrefix }}`
|
|
|
|
If there is more than one language defined, the `LanguagePrefix` method will return `/en` (or whatever the current language is). If not enabled, it will be an empty string (and is therefore harmless for single-language Hugo websites).
|
|
|
|
## Generate multilingual content with `hugo new content`
|
|
|
|
If you organize content with translations in the same directory:
|
|
|
|
```sh
|
|
hugo new content post/test.en.md
|
|
hugo new content post/test.de.md
|
|
```
|
|
|
|
If you organize content with translations in different directories:
|
|
|
|
```sh
|
|
hugo new content content/en/post/test.md
|
|
hugo new content content/de/post/test.md
|
|
```
|
|
|
|
[`abslangurl`]: /functions/urls/abslangurl/
|
|
[config]: /getting-started/configuration/
|
|
[go-i18n-source]: https://github.com/nicksnyder/go-i18n
|
|
[go-i18n]: https://github.com/nicksnyder/go-i18n
|
|
[Hugo Multilingual Part 1: Content translation]: https://regisphilibert.com/blog/2018/08/hugo-multilingual-part-1-managing-content-translation/
|
|
[i18func]: /functions/lang/translate/
|
|
[lang.FormatAccounting]: /functions/lang/formataccounting/
|
|
[lang.FormatCurrency]: /functions/lang/formatcurrency/
|
|
[lang.FormatNumber]: /functions/lang/formatnumber/
|
|
[lang.FormatNumberCustom]: /functions/lang/formatnumbercustom/
|
|
[lang.FormatPercent]: /functions/lang/formatpercent/
|
|
[lang.Merge]: /functions/lang/merge/
|
|
[menus]: /content-management/menus/
|
|
[OS environment]: /getting-started/configuration/#configure-with-environment-variables
|
|
[`rellangurl`]: /functions/urls/rellangurl/
|
|
[`time.Format`]: /functions/time/format/
|