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

Capitalization in manifest

This commit is contained in:
tituspijean 2018-08-13 16:47:13 +02:00
parent e92b6c4aa7
commit ede7975e4e

View file

@ -1,102 +1,102 @@
{ {
"name": "Flarum", "name": "Flarum",
"id": "flarum", "id": "flarum",
"packaging_format": 1, "packaging_format": 1,
"description": { "description": {
"en": "Flarum (open-source forum software) package for YunoHost.", "en": "Flarum (open-source forum software) package for YunoHost.",
"fr": "Package Flarum (système de forum libre) pour YunoHost.", "fr": "Package Flarum (système de forum libre) pour YunoHost.",
"de": "Flarum (Open Source) ist ein Programmpaket für Yunohost." "de": "Flarum (Open Source) ist ein Programmpaket für Yunohost."
}, },
"url": "http://flarum.org/", "url": "http://flarum.org/",
"license": "MIT", "license": "MIT",
"version": "0.1.0-beta.7", "version": "0.1.0-beta.7",
"maintainer": { "maintainer": {
"name": "Titus PiJean", "name": "Titus PiJean",
"email": "tituspijean@outlook.com" "email": "tituspijean@outlook.com"
}, },
"requirements": { "requirements": {
"yunohost": ">= 2.4.0" "yunohost": ">= 2.4.0"
}, },
"multi_instance": true, "multi_instance": true,
"services": [ "services": [
"nginx", "nginx",
"php5-fpm", "php5-fpm",
"mysql" "mysql"
], ],
"arguments": { "arguments": {
"install": [{ "install": [{
"name": "domain", "name": "domain",
"type": "domain", "type": "domain",
"ask": { "ask": {
"en": "Choose a domain name for Flarum", "en": "Choose a domain name for Flarum",
"fr": "Choisissez un nom de domaine pour Flarum", "fr": "Choisissez un nom de domaine pour Flarum",
"de": "Wählen einen Domain-Namen für Flarum" "de": "Wählen einen Domain-Namen für Flarum"
}, },
"example": "example.com" "example": "example.com"
}, },
{ {
"name": "path", "name": "path",
"type": "path", "type": "path",
"ask": { "ask": {
"en": "Choose a path for Flarum", "en": "Choose a path for Flarum",
"fr": "Choisissez un chemin pour Flarum", "fr": "Choisissez un chemin pour Flarum",
"de": "Wählen einen Pfad für Flarum" "de": "Wählen einen Pfad für Flarum"
}, },
"example": "/flarum", "example": "/flarum",
"default": "/flarum" "default": "/flarum"
}, },
{ {
"name": "admin", "name": "admin",
"type": "user", "type": "user",
"ask": { "ask": {
"en": "Choose the admin user (required for automatic post-installation)", "en": "Choose the admin user (required for automatic post-installation)",
"fr": "Choisissez ladministrateur (nécessaire pour la post-installation automatique)", "fr": "Choisissez ladministrateur (nécessaire pour la post-installation automatique)",
"de": "Wählen einen Administrator (erforderlich für die automatische Nachinstallation)" "de": "Wählen einen Administrator (erforderlich für die automatische Nachinstallation)"
}, },
"example": "johndoe", "example": "johndoe",
"optional": true "optional": true
}, },
{ {
"name": "title", "name": "title",
"ask": { "ask": {
"en": "Choose a title for your forum (required for automatic post-installation)", "en": "Choose a title for your forum (required for automatic post-installation)",
"fr": "Choisissez un titre pour votre forum (nécessaire pour la post-installation automatique)", "fr": "Choisissez un titre pour votre forum (nécessaire pour la post-installation automatique)",
"de": "Wählen einen Titel für eure Internetforum (erforderlich für die automatische Nachinstallation)" "de": "Wählen einen Titel für eure Internetforum (erforderlich für die automatische Nachinstallation)"
}, },
"example": "My forum", "example": "My forum",
"default": "", "default": "",
"optional": true "optional": true
}, },
{ {
"name": "is_public", "name": "is_public",
"type": "boolean", "type": "boolean",
"ask": { "ask": {
"en": "Is it a public application?", "en": "Is it a public application?",
"fr": "Est-ce une application publique ?", "fr": "Est-ce une application publique ?",
"de": "Ist es eine öffentliche Applikation ?" "de": "Ist es eine öffentliche Applikation ?"
}, },
"default": true "default": true
}, },
{ {
"name": "bazaar_extension", "name": "bazaar_extension",
"type": "boolean", "type": "boolean",
"ask": { "ask": {
"en": "Do you want to install bazaar extension, extensions provider for Flarum?", "en": "Do you want to install Bazaar extension, extensions provider for Flarum?",
"fr": "Voulez-vous installer l'extension bazaar, fournisseur d'extensions pour Flarum ?", "fr": "Voulez-vous installer l'extension Bazaar, fournisseur d'extensions pour Flarum ?",
"de": "Wollen Sie die Bazaar Erweiterung installieren ?" "de": "Wollen Sie die Bazaar Erweiterung installieren ?"
}, },
"default": false "default": false
}, },
{ {
"name": "language", "name": "language",
"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",
"de": "Wählen Sie eine Sprache" "de": "Wählen Sie eine Sprache"
}, },
"choices": ["fr", "en", "de"], "choices": ["fr", "en", "de"],
"default": "en" "default": "en"
} }
] ]
} }
} }