diff options
author | Thomas Citharel <tcit@tcit.fr> | 2017-07-13 10:34:27 +0200 |
---|---|---|
committer | Georg Ehrke <developer@georgehrke.com> | 2018-06-27 13:19:23 +0200 |
commit | abab7eb7f071282a4a3fa839dcc6f61ac4632f6b (patch) | |
tree | 6f217feea2391c44cd959b6087e3ff0a697dc5ec /config | |
parent | 4a9f8623b50ab0ba6a7fd411c0750a6bd5f63c14 (diff) | |
download | nextcloud-server-abab7eb7f071282a4a3fa839dcc6f61ac4632f6b.tar.gz nextcloud-server-abab7eb7f071282a4a3fa839dcc6f61ac4632f6b.zip |
handle config.php values
Signed-off-by: Georg Ehrke <developer@georgehrke.com>
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index a1445d77095..2218021bab9 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -179,6 +179,29 @@ $CONFIG = array( 'force_language' => 'en', /** + * This sets the default locale on your Nextcloud server, using ISO_639 + * language codes such as ``en`` for English, ``de`` for German, and ``fr`` for + * French, and ISO-3166 country codes such as ``GB``, ``US``, ``CA``, as defined + * in RFC 5646. It overrides automatic locale detection on public pages like + * login or shared items. User's locale preferences configured under "personal + * -> locale" override this setting after they have logged in. + * + * Defaults to ``en`` + */ +'default_locale' => 'en_US', + +/** + * With this setting a locale can be forced for all users. If a locale is + * forced, the users are also unable to change their locale in the personal + * settings. If users shall be unable to change their locale, but users have + * different languages, this value can be set to ``true`` instead of a locale + * code. + * + * Defaults to ``false`` + */ +'force_locale' => 'en_US', + +/** * Set the default app to open on login. Use the app names as they appear in the * URL after clicking them in the Apps menu, such as documents, calendar, and * gallery. You can use a comma-separated list of app names, so if the first |