-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
34 lines (26 loc) · 1.01 KB
/
main.py
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
from sites import launchpad, transifex, translatewiki, weblate
language = "pl"
launchpad_projects = ["josm"]
transifex_projects = [
["nguillaumin", "osmtracker-android"],
["overpass-turbo", "overpass-turbo"],
["ideditor", "id-editor"],
["openstreetmap", "presets"],
["openstreetmap", "historic-objects-preset"],
["openstreetmap", "vespucci"],
["yohanboniface", "umap"],
["openstreetmap-france", "osmose"],
["osm-catala", "osmbot"],
["fieldpapers", "fieldpapers"]
]
translatewiki_projects = ["osm-potlatch2-main",
"out-waymarked-trails-0-all",
"out-osm-potlatch2-help",
"out-osm-site"]
weblate_projects = ["osmand/main", "osmand/phrases"]
results = []
results.extend(launchpad.run(launchpad_projects, language))
results.extend(transifex.run(transifex_projects, language))
results.extend(translatewiki.run(translatewiki_projects, language))
results.extend(weblate.run(weblate_projects, language))
print(results)