mirror of
https://github.com/YunoHost-Apps/rainloop_ynh.git
synced 2024-09-03 20:16:18 +02:00
Variable rename from language to lang.
This commit is contained in:
parent
a41177d100
commit
6b1d42496b
4 changed files with 6 additions and 15 deletions
|
@ -7,7 +7,7 @@
|
||||||
; Manifest
|
; Manifest
|
||||||
domain="domain.tld" (DOMAIN)
|
domain="domain.tld" (DOMAIN)
|
||||||
path="/rainloop" (PATH)
|
path="/rainloop" (PATH)
|
||||||
language="fr"
|
lang="fr"
|
||||||
is_public=1 (PUBLIC|public=1|private=0)
|
is_public=1 (PUBLIC|public=1|private=0)
|
||||||
password="pass"
|
password="pass"
|
||||||
ldap=1
|
ldap=1
|
||||||
|
|
|
@ -52,7 +52,7 @@
|
||||||
"default": false
|
"default": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "language",
|
"name": "lang",
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"ask": {
|
"ask": {
|
||||||
"en": "Choose the application language",
|
"en": "Choose the application language",
|
||||||
|
|
|
@ -28,7 +28,7 @@ ynh_print_info "Retrieve arguments from the manifest ..."
|
||||||
domain=$YNH_APP_ARG_DOMAIN
|
domain=$YNH_APP_ARG_DOMAIN
|
||||||
path_url=$YNH_APP_ARG_PATH
|
path_url=$YNH_APP_ARG_PATH
|
||||||
is_public=$YNH_APP_ARG_IS_PUBLIC
|
is_public=$YNH_APP_ARG_IS_PUBLIC
|
||||||
language=$YNH_APP_ARG_LANGUAGE
|
lang=$YNH_APP_ARG_LANG
|
||||||
password=$YNH_APP_ARG_PASSWORD
|
password=$YNH_APP_ARG_PASSWORD
|
||||||
ldap=$YNH_APP_ARG_LDAP
|
ldap=$YNH_APP_ARG_LDAP
|
||||||
|
|
||||||
|
@ -68,7 +68,7 @@ ynh_print_info "Store settings from manifest ..."
|
||||||
ynh_app_setting_set $app domain $domain
|
ynh_app_setting_set $app domain $domain
|
||||||
ynh_app_setting_set $app path $path_url
|
ynh_app_setting_set $app path $path_url
|
||||||
ynh_app_setting_set $app is_public $is_public
|
ynh_app_setting_set $app is_public $is_public
|
||||||
ynh_app_setting_set $app language $language
|
ynh_app_setting_set $app lang $lang
|
||||||
ynh_app_setting_set $app password $password #9999 Check if it's need to save password
|
ynh_app_setting_set $app password $password #9999 Check if it's need to save password
|
||||||
ynh_app_setting_set $app ldap $ldap
|
ynh_app_setting_set $app ldap $ldap
|
||||||
|
|
||||||
|
@ -166,7 +166,7 @@ sudo cp ../conf/data/configs/application.ini "$application_file"
|
||||||
ynh_replace_string "domain.tld" "$domain" "$application_file"
|
ynh_replace_string "domain.tld" "$domain" "$application_file"
|
||||||
ynh_replace_string "MYSQLUSER" "$db_name" "$application_file"
|
ynh_replace_string "MYSQLUSER" "$db_name" "$application_file"
|
||||||
ynh_replace_string "MYSQLPASSWORD" "$db_pwd" "$application_file"
|
ynh_replace_string "MYSQLPASSWORD" "$db_pwd" "$application_file"
|
||||||
ynh_replace_string "LANGTOCHANGE" "$language" "$application_file"
|
ynh_replace_string "LANGTOCHANGE" "$lang" "$application_file"
|
||||||
ynh_replace_string "PLUGINSTOENABLE" "$plugins" "$application_file"
|
ynh_replace_string "PLUGINSTOENABLE" "$plugins" "$application_file"
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -20,17 +20,8 @@ domain=$(ynh_app_setting_get $app domain)
|
||||||
path_url=$(ynh_app_setting_get $app path)
|
path_url=$(ynh_app_setting_get $app path)
|
||||||
is_public=$(ynh_app_setting_get $app is_public)
|
is_public=$(ynh_app_setting_get $app is_public)
|
||||||
final_path=$(ynh_app_setting_get $app final_path)
|
final_path=$(ynh_app_setting_get $app final_path)
|
||||||
language=$(ynh_app_setting_get $app language)
|
|
||||||
db_name=$(ynh_app_setting_get $app db_name)
|
|
||||||
|
|
||||||
lang=$(ynh_app_setting_get $app lang)
|
lang=$(ynh_app_setting_get $app lang)
|
||||||
|
db_name=$(ynh_app_setting_get $app db_name)
|
||||||
if [ -n "$lang" ]
|
|
||||||
then
|
|
||||||
language="$lang"
|
|
||||||
ynh_app_setting_set "$app" language "$language"
|
|
||||||
ynh_app_setting_delete "$app" lang
|
|
||||||
fi
|
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# ENSURE DOWNWARD COMPATIBILITY
|
# ENSURE DOWNWARD COMPATIBILITY
|
||||||
|
|
Loading…
Add table
Reference in a new issue