diff options
author | Lennart Rosam <lennart.rosam@medien-systempartner.de> | 2013-08-02 09:41:31 +0200 |
---|---|---|
committer | Lennart Rosam <lennart.rosam@medien-systempartner.de> | 2013-08-02 09:41:31 +0200 |
commit | 79351d064f5471862c652f61eef1f221ad6cb59f (patch) | |
tree | 84eb7fe6bf8e1e3808933a08c46c7f4023c7a509 /config | |
parent | 16726ab79380067a6083bc42d6c51e2214ec54a3 (diff) | |
download | nextcloud-server-79351d064f5471862c652f61eef1f221ad6cb59f.tar.gz nextcloud-server-79351d064f5471862c652f61eef1f221ad6cb59f.zip |
Make default language configurable via config.php
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 8d978ea6ee7..bcf8ebdedb0 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -56,6 +56,9 @@ $CONFIG = array( /* Theme to use for ownCloud */ "theme" => "", +/* Optional ownCLoud default language - overrides automatic language detection on public pages like login or shared items. This has no effect on the users's language preference configured under "personal -> language" once they have logged in */ +"default_language" => "en", + /* Path to the parent directory of the 3rdparty directory */ "3rdpartyroot" => "", @@ -154,7 +157,7 @@ $CONFIG = array( /* Enable/disable X-Frame-Restriction */ /* HIGH SECURITY RISK IF DISABLED*/ "xframe_restriction" => true, - + /* The directory where the user data is stored, default to data in the owncloud * directory. The sqlite database is also stored here, when sqlite is used. */ |