forked from redstone-dev/Voyager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathutils.py
More file actions
61 lines (61 loc) · 1.98 KB
/
utils.py
File metadata and controls
61 lines (61 loc) · 1.98 KB
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
def r_category_ids():
# Thanks Jeffalo for the mapping <3
category_ids = {
"Suggestions": "1",
"Bugs and Glitches": "3",
"Questions about Scratch": "4",
"Announcements": "5",
"New Scratchers": "6",
"Help with Scripts": "7",
"Show and Tell": "8",
"Project Ideas": "9",
"Collaboration": "10",
"Requests": "11",
"Moderators": "12",
"Deutsch": "13",
"Español": "14",
"Français": "15",
"中文": "16",
"Polski": "17",
"日本語": "18",
"Nederlands": "19",
"Português": "20",
"Italiano": "21",
"עברית": "22",
"한국어": "23",
"Norsk": "24",
"Türkçe": "25",
"Ελληνικά": "26",
"Pусский": "27",
"Translating Scratch": "28",
"Things I'm Making and Creating": "29",
"Things I'm Reading and Playing": "30",
"Advanced Topics": "31",
"Connecting to the Physical World": "32",
"Català": "33",
"Other Languages": "34",
"Mentors Forum": "35",
"Bahasa Indonesia": "36",
"Scratch Day 2014": "37",
"Spam Dustbin": "38",
"Scratch Helper Groups": "39",
"Camp Counselor Forum": "40",
"Extension Developer's Forum": "41",
"Scratch Stability Team Forum": "42",
"Scratch Day 2015": "44",
"Scratch Design Studio Forum": "46",
"Developing Scratch Extensions": "48",
"Open Source Projects": "49",
"Welcoming Committee": "50",
"Community Blocks Forum": "51",
"Scratch Day 2016": "52",
"Scratch Day 2017": "54",
"Africa": "55",
"Scratch Day 2018": "56",
"Scratch 3.0 Beta": "57",
"Camp Counselors 2020": "58",
"فارسی": "59",
"Project Save & Level Codes": "60",
"April Fools Day - Suggest-Show-Question-Bugs-Help-Glitch-Tell-Etc": "61",
}
return category_ids