1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/framaforms_ynh.git synced 2024-09-03 18:36:12 +02:00

add french translation to manifest

This commit is contained in:
ericgaspar 2020-08-29 16:31:58 +02:00 committed by ljf (zamentur)
parent a0d4407fdb
commit 1c4c90ae5f
2 changed files with 17 additions and 17 deletions

View file

@ -32,8 +32,8 @@ You can change some configuration by using the administration panel of drupal. Y
#### Multi-user support #### Multi-user support
Are LDAP and HTTP auth supported? No Are LDAP and HTTP auth supported? **No**
Can the app be used by multiple users? Yes Can the app be used by multiple users? **Yes**
#### Supported architectures #### Supported architectures
@ -48,9 +48,6 @@ Can the app be used by multiple users? Yes
* Other info you would like to add about this app. * Other info you would like to add about this app.
**More info on the documentation page:**
https://yunohost.org/packaging_apps
## Links ## Links
* Report a bug: https://github.com/YunoHost-Apps/framaforms_ynh/issues * Report a bug: https://github.com/YunoHost-Apps/framaforms_ynh/issues

View file

@ -10,7 +10,7 @@
"url": "https://framagit.org/framasoft/framaforms", "url": "https://framagit.org/framasoft/framaforms",
"license": "GPL-2.0-only", "license": "GPL-2.0-only",
"requirements": { "requirements": {
"yunohost": ">= 3.5" "yunohost": ">= 3.8.1"
}, },
"maintainer": { "maintainer": {
"name": "ljf", "name": "ljf",
@ -20,7 +20,7 @@
"multi_instance": true, "multi_instance": true,
"services": [ "services": [
"nginx", "nginx",
"php5-fpm", "php7.0-fpm",
"mysql" "mysql"
], ],
"arguments": { "arguments": {
@ -35,10 +35,11 @@
}, },
{ {
"name": "path", "name": "path",
"ask": {
"en": "Choose a path for Framaforms"
},
"type": "path", "type": "path",
"ask": {
"en": "Choose a path for Framaforms",
"fr": "Choisissez un chemin pour Framaforms"
},
"example": "/poll", "example": "/poll",
"default": "/poll" "default": "/poll"
}, },
@ -46,8 +47,8 @@
"name": "password", "name": "password",
"type": "password", "type": "password",
"ask": { "ask": {
"en": "Set the administrator password", "en": "Set the administrator password",
"fr": "Définissez le mot de passe administrateur" "fr": "Définissez le mot de passe administrateur"
}, },
"example": "Choose a password" "example": "Choose a password"
}, },
@ -55,21 +56,23 @@
"name": "language", "name": "language",
"type": "string", "type": "string",
"ask": { "ask": {
"en": "Choose the application language", "en": "Choose the application language",
"fr": "Choisissez la langue de l'application" "fr": "Choisissez la langue de l'application"
}, },
"choices": ["fr", "en"], "choices": ["fr", "en"],
"default": "en" "default": "en"
}, },
{ {
"name": "is_public", "name": "is_public",
"type": "boolean",
"ask": { "ask": {
"en": "Are visitors who do not have a YunoHost account on this server allowed to register and create forms ?" "en": "Are visitors who do not have a YunoHost account on this server allowed to register and create forms?",
"fr": "Les visiteurs qui n'ont pas de compte YunoHost sur ce serveur sont-ils autorisés à s'inscrire et à créer des formulaires ?"
}, },
"help": { "help": {
"en": "If no, only person with an account on your server will be able to create forms. In all cases, visitors will be able to reply to form" "en": "If no, only person with an account on your server will be able to create forms. In all cases, visitors will be able to reply to form.",
"fr": "Si non, seule la personne disposant d'un compte sur votre serveur pourra créer des formulaires. Dans tous les cas, les visiteurs pourront répondre au formulaire."
}, },
"type": "boolean",
"default": true "default": true
} }
] ]