Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorLennart Rosam <lennart.rosam@medien-systempartner.de>2013-08-02 11:41:31 +0400
committerThomas Müller <thomas.mueller@tmit.eu>2013-08-02 18:30:11 +0400
commitc9b7820e313fbda07222eda0db85e971b37d9033 (patch)
tree1442415173dd4fc27f0b1fbc6bc835b57da4f624 /config
parent9fc995498f6df6834d8846060e30f7346b0cf737 (diff)
Make default language configurable via config.php
Conflicts: config/config.sample.php
Diffstat (limited to 'config')
-rw-r--r--config/config.sample.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/config/config.sample.php b/config/config.sample.php
index aa81cb781a2..4a1eee331c9 100644
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -56,7 +56,10 @@ $CONFIG = array(
/* Theme to use for ownCloud */
"theme" => "",
-/* Path to the 3rdparty directory */
+/* 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" => "",
/* URL to the 3rdparty directory, as seen by the browser */
@@ -144,7 +147,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.
*/