From ac5d04837ceeade497cc49f62ff792dba3be7f84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Balet?= Date: Wed, 20 Aug 2025 15:13:12 +0200 Subject: [PATCH] docs(20-configuration.md): extend default is true --- src/content/docs/20-reference/20-configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/20-reference/20-configuration.md b/src/content/docs/20-reference/20-configuration.md index 3319eab..b4e156f 100644 --- a/src/content/docs/20-reference/20-configuration.md +++ b/src/content/docs/20-reference/20-configuration.md @@ -46,7 +46,7 @@ All properties are optional. |--------------------|-----------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | `fallbackLang` | `string` | The fallback language used when a translation is missing in the current language. | | `lang` | `string` | The initial language to set on startup. | -| `extend` | `boolean` | Default: `false`. When loading additional translations, merges the translations with the already loaded instread of replacing them. | +| `extend` | `boolean` | Default: `true`. When loading additional translations, merges the translations with the already loaded instread of replacing them. | | `loader` | `Provider`| Provides a [`TranslateLoader`](/reference/translate-loader-api/) to load translations. If not using a loader, you can provide translations useing the `setTranslation()` method. | | `compiler` | `Provider`| Provides a [`TranslateCompiler`](/reference/translate-compiler-api/) to prepare translations after loading. | | `parser` | `Provider`| Provides a [`TranslateParser`](/reference/translate-parser-api/) that interpolates parameters in translations. |