From 0f47d1c6cb179887d073566050b5b83d43c75657 Mon Sep 17 00:00:00 2001 From: Grena Date: Wed, 5 Jun 2024 10:34:40 +0200 Subject: [PATCH] Add french translation of SFTP access into config panel --- config_panel.toml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/config_panel.toml b/config_panel.toml index b229f0f..02f511a 100644 --- a/config_panel.toml +++ b/config_panel.toml @@ -4,19 +4,23 @@ version = "1.0" name = "My Webapp configuration" [main.sftp] - name = "SFTP access" + name.en = "SFTP access" + name.fr = "Accès SFTP" [main.sftp.with_sftp] - ask = "Do you need a SFTP access?" + ask.en = "Do you need a SFTP access?" + ask.fr = "Avez-vous besoin d'un accès SFTP ?" type = "boolean" default = true [main.sftp.password] - ask = "Set a password for the SFTP access" + ask.en = "Set a password for the SFTP access" + ask.fr = "Définir un mot de passe pour l’accès SFTP" type = "password" optional = true visible = "with_sftp" - help = "If a password already exist, leave blank and it will not be replaced." + help.en = "If a password already exist, leave blank and it will not be replaced." + help.fr = "Si un mot de passe existe déjà, laissez vide et il ne sera pas remplacé." [main.php_fpm_config] name = "PHP-FPM configuration"