-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathappConfig.json
More file actions
39 lines (39 loc) · 777 Bytes
/
Copy pathappConfig.json
File metadata and controls
39 lines (39 loc) · 777 Bytes
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
{
"app": {
"name": "Currency Converter",
"id": "net.exit4web.currencyconverter",
"version": "0.91",
"cacheTTL": 3600
},
"defaults": {
"from": "EUR",
"to": "USD"
},
"commands": [
{
"id": "convert",
"cmd": "Convert",
"title": "Currency",
"subtitle": "Try ‘12 €‘, ‘12 € to $‘ or ‘€‘ and convert your currency",
"default": true
},
{
"id": "set from",
"cmd": "Set",
"title": "Currency: set default from",
"subtitle": "Change default currency"
},
{
"id": "set to",
"cmd": "Set",
"title": "Currency: set default to",
"subtitle": "Change default currency"
},
{
"id": "help",
"cmd": "Help",
"title": "Currency: on-line help",
"subtitle": "Informations about Currency Converter"
}
]
}