diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2023-04-13 08:19:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-13 08:19:32 +0200 |
commit | f95c76d82e5aba7513b8291e78a8e84a2e5aaaef (patch) | |
tree | afdc004d947054813cdd891f061fe67dd01dc13a | |
parent | 426aa8ae8d650dce43ff4db75d5de6130bdeadc8 (diff) | |
parent | 992b65e4a62807d25757820365dc5610a5fc9b91 (diff) | |
download | nextcloud-server-f95c76d82e5aba7513b8291e78a8e84a2e5aaaef.tar.gz nextcloud-server-f95c76d82e5aba7513b8291e78a8e84a2e5aaaef.zip |
Merge pull request #37508 from nextcloud/backport/37486/stable26
[stable26] fix default_language doc
-rw-r--r-- | config/config.sample.php | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index e254b89622d..892f84601e4 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -165,13 +165,14 @@ $CONFIG = [ /** * This sets the default language on your Nextcloud server, using ISO_639-1 * language codes such as ``en`` for English, ``de`` for German, and ``fr`` for - * French. It overrides automatic language detection on public pages like login - * or shared items. User's language preferences configured under "personal -> - * language" override this setting after they have logged in. Nextcloud has two - * distinguished language codes for German, 'de' and 'de_DE'. 'de' is used for - * informal German and 'de_DE' for formal German. By setting this value to 'de_DE' - * you can enforce the formal version of German unless the user has chosen - * something different explicitly. + * French. The default_language parameter is only used, when the browser does + * not send any language, and the user hasn’t configured own language + * preferences. + * + * Nextcloud has two distinguished language codes for German, 'de' and 'de_DE'. + * 'de' is used for informal German and 'de_DE' for formal German. By setting + * this value to 'de_DE' you can enforce the formal version of German unless + * the user has chosen something different explicitly. * * Defaults to ``en`` */ |