diff options
author | blizzz <blizzz@arthur-schiwon.de> | 2017-12-08 18:19:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-08 18:19:01 +0100 |
commit | 83509b0fd34b7e74079efab8b26c584b22b48b91 (patch) | |
tree | 618d63f9030d1e8064f7622b2d1bb913e1ccaeab /config/config.sample.php | |
parent | 6aac1ffa33a0e1c9acad5eb78854c92dc0e1178a (diff) | |
parent | 8ffd4428bbe5791e5353bd9d60d0a3127adcb332 (diff) | |
download | nextcloud-server-83509b0fd34b7e74079efab8b26c584b22b48b91.tar.gz nextcloud-server-83509b0fd34b7e74079efab8b26c584b22b48b91.zip |
Merge pull request #7334 from nextcloud/feature/noid/language-depending-skeleton-directory
Allow `{lang}` as a placeholder in the skeleton directory
Diffstat (limited to 'config/config.sample.php')
-rw-r--r-- | config/config.sample.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 5a79140dfb1..05efcaa2738 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -246,6 +246,9 @@ $CONFIG = array( * The directory where the skeleton files are located. These files will be * copied to the data directory of new users. Leave empty to not copy any * skeleton files. + * ``{lang}`` can be used as a placeholder for the language of the user. + * If the directory does not exist, it falls back to non dialect (from ``de_DE`` + * to ``de``). If that does not exist either, it falls back to ``default`` * * Defaults to ``core/skeleton`` in the Nextcloud directory. */ @@ -878,6 +881,7 @@ $CONFIG = array( /** * custom path for LibreOffice/OpenOffice binary * + * * Defaults to ``''`` (empty string) */ 'preview_libreoffice_path' => '/usr/bin/libreoffice', |