-
Notifications
You must be signed in to change notification settings - Fork 0
/
lexicon.json
54 lines (54 loc) · 2.05 KB
/
lexicon.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
{
"direct_sensitive": {
"abc": "a b c",
"123": "one two three",
"NSW": "New South Wales",
"ACT": "Australian Capital Territory",
"QLD": "Queensland",
"SA": "South Australia",
"TAS": "Tasmania",
"VIC": "Victoria",
"WA": "Western Australia",
"NT": "Northern Territory",
"Albanese": "/ɑɫbɑˈneɪzi/",
"WW2": "World War Two",
"WWII": "World War Two",
"COVID-19": "Coronavirus",
"ISO": "International Organization for Standardization",
"IoT": "Internet of Things",
"NIST": "National Institute of Standards and Technology",
"DDoS": "Distributed Denial of Service",
"GDPR": "General Data Protection Regulation",
"AI": "Artificial Intelligence",
"ML": "Machine Learning",
"HTML": "HyperText Markup Language",
"CSS": "Cascading Style Sheets",
"JS": "JavaScript",
"PHP": "Hypertext Preprocessor",
"SQL": "Structured Query Language",
"API": "Application Programming Interface",
"UX": "User Experience",
"UI": "User Interface",
"CPU": "Central Processing Unit",
"GPU": "Graphics Processing Unit",
"RAM": "Random Access Memory",
"SSD": "Solid State Drive",
"HTTP": "Hypertext Transfer Protocol",
"HTTPS": "Hypertext Transfer Protocol Secure",
"EDI": "Electronic Data Interchange",
"ERP": "Enterprise Resource Planning",
"CRM": "Customer Relationship Management"
},
"direct_insensitive": {
"quasar": "ˈkweɪzɑɹ",
"quasars": "ˈkweɪzɑɹz",
"quasar's": "ˈkweɪzɑɹz"
},
"regex": {
"(?P<number>\\d+\\.?\\d*)°C": "\\g<number> degrees Celsius",
"(?P<number>\\d+\\.?\\d*)°F": "\\g<number> degrees Fahrenheit",
"-\\s?(?P<number>\\d+\\.?\\d*)°C": "negative \\g<number> degrees Celsius",
"-\\s?(?P<number>\\d+\\.?\\d*)°F": "negative \\g<number> degrees Fahrenheit",
"(?P<number>\\d+\\.?\\d*)%": "\\g<number> percent"
}
}