-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.json.template
73 lines (73 loc) · 2.09 KB
/
config.json.template
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
{
"webserver": {
"bind": "127.0.0.1",
"port": 8080
},
"database": {
"type": "sqlite",
"options": {}
},
"registration": {
"token": {
"enabled": true
}
},
"lang": {
"finishMessage": "You finished the Challenge Gratulations!",
"finishWrongMessage": "Sadly you have made some Mistakes. Your guesses are {meters}m away from the right location",
"notAllPositionSet": "Please set ALL positions first!"
},
"client": {
"showDistanceForCorrect": false,
"showWhichWrong": true,
"showManualCoordinatesPrompt": false,
"showCurrentQuest": false,
"allowCheckWhileNotAllSet": false,
"guided": {
"enable": false,
"checkSolution": false,
"forceCoordinateWindow": false,
"hideManualPrompt": false,
"hideCheckPrompt": false,
"autoCallCheck": false
},
"lang": {
"siteName": "LocSearch",
"startToken": "Start searching without registering!",
"tokenPlaceholder": "Enter your token here",
"alreadyRegistered": "Already Registered?",
"newHere": "New here?",
"saveToken": "Save this token somewhere. This is the only way you can save your progress.",
"proceedRegistration": "Saved it! Proceed",
"correctAre": "The following are correct",
"wrongAre": "The following are wrong",
"cancel": "Cancel!",
"positions": "Positions",
"changePosition": "Change position",
"enterCoordinates": "Enter coordinates",
"placeOnMap": "Place on Map",
"latitude": "Latitude",
"longitude": "Longitude",
"guidedIsWrong": "This position seems to be wrong",
"guidedSelectedWrong": "The following task still has wrong selection."
}
},
"geo": {
"maxDistance": 100,
"minSingleDistance": 10
},
"map": {
"startOptions": {
"long": 13.3778,
"lat": 52.5161,
"zoom": 18
},
"layers": [
{
"url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",
"attribution": "<a href=\"https://www.openstreetmap.org/copyright\">OpenStreetMap</a> contributors"
}
],
"customScripts": []
}
}