This repository has been archived by the owner on Jan 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
manifest.json
81 lines (81 loc) · 2.04 KB
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "PirateBox",
"id": "piratebox",
"description": {
"en": "PirateBox",
"fr": "PirateBox"
},
"license": "AGPL-3",
"developer": {
"name": "Julien Vaubourg",
"email": "[email protected]",
"url": "http://julien.vaubourg.com"
},
"multi_instance": "false",
"arguments": {
"install" : [
{
"name": "domain",
"ask": {
"en": "Choose a domain for the web administration",
"fr": "Choisissez un domaine pour l'administration web"
},
"example": "domain.org"
},
{
"name": "path",
"ask": {
"en": "Choose a path for the web administration",
"fr": "Choisissez un chemin pour l'administration web"
},
"example": "/piratebox",
"default": "/piratebox"
},
{
"name": "opt_domain",
"ask": {
"en": "Choose a fake domain pour the PirateBox",
"fr": "Choisissez un faux domaine pour la PirateBox"
},
"example": "share.box",
"default": "share.box"
},
{
"name": "opt_name",
"ask": {
"en": "Choose a name for the PirateBox",
"fr": "Choisissez un nom pour la PirateBox"
},
"example": "ShareBox",
"default": "ShareBox"
},
{
"name": "opt_deleting",
"ask": {
"en": "Can users delete files? (yes/no)",
"fr": "Les utilisateurs peuvent-ils supprimer des fichiers ? (yes/no)"
},
"example": "yes",
"default": "yes"
},
{
"name": "opt_renaming",
"ask": {
"en": "Can users rename files? (yes/no)",
"fr": "Les utilisateurs peuvent-ils renommer des fichiers ? (yes/no)"
},
"example": "yes",
"default": "yes"
},
{
"name": "opt_chat",
"ask": {
"en": "Enable the chat? (yes/no)",
"fr": "Activer le chat ? (yes/no)"
},
"example": "yes",
"default": "yes"
}
]
}
}