1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/getsimple_ynh.git synced 2024-09-03 18:36:25 +02:00
This commit is contained in:
ericgaspar 2022-05-15 16:30:00 +02:00
parent e96473d5db
commit 6ce1296095
No known key found for this signature in database
GPG key ID: 574F281483054D44
3 changed files with 15 additions and 6 deletions

View file

@ -71,7 +71,7 @@ define('GSDONOTPING', 1);
# Set PHP locale
# http://php.net/manual/en/function.setlocale.php
etlocale(LC_ALL, 'en_US');
etlocale(LC_ALL, '__LANGUAGE__');
# Define default timezone of server, accepts php timezone string
# valid timeszones can be found here http://www.php.net/manual/en/timezones.php

View file

@ -44,6 +44,15 @@
"name": "is_public",
"type": "boolean",
"default": true
} {
"name": "language",
"type": "string",
"ask": {
"en": "Choose the application language",
"fr": "Choisissez la langue de l'application"
},
"choices": ["de_DE", "fr_FR", "en_US", "nl_NL"],
"default": "fr_FR"
}
]
}

View file

@ -27,7 +27,7 @@ ynh_abort_if_errors
domain=$YNH_APP_ARG_DOMAIN
path_url=$YNH_APP_ARG_PATH
is_public=$YNH_APP_ARG_IS_PUBLIC
language=en_US
language=$YNH_APP_ARG_LANGUAGE
timezone="$(cat /etc/timezone)"
phpversion=$YNH_PHP_VERSION
@ -102,12 +102,12 @@ ynh_add_fpm_config
#=================================================
# ADD A CONFIGURATION
#=================================================
# ynh_script_progression --message="Adding a configuration file..." --weight=1
ynh_script_progression --message="Adding a configuration file..." --weight=1
# ynh_add_config --template="../conf/temp.gsconfig.php" --destination="$final_path/gsconfig.php"
ynh_add_config --template="../conf/temp.gsconfig.php" --destination="$final_path/temp.gsconfig.php"
# chmod 655 "$final_path/gsconfig.php"
# chown $app:$app "$final_path/gsconfig.php"
# chmod 655 "$final_path/temp.gsconfig.php"
# chown $app:$app "$final_path/temp.gsconfig.php"
#=================================================
# SETUP SSOWAT