-
Notifications
You must be signed in to change notification settings - Fork 30
/
spellingMap.ts
41 lines (39 loc) · 1.03 KB
/
spellingMap.ts
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
// This file is used to map the spelling of drinks to the canonical spelling
// the structure is: { misspelling: "canonical spelling" }
export interface SpellingMap {
[key: string]: string;
}
export default {
americano: "Americano",
"cafe late": "Caffè Latte",
"cafe latte": "Caffè Latte",
caffe: "Caffè",
cappacino: "Cappuccino",
capacino: "Cappuccino",
cappocino: "Cappuccino",
capocino: "Cappuccino",
cappucino: "Cappuccino",
cappuccino: "Cappuccino",
capuccino: "Cappuccino",
capochino: "Cappuccino",
expreso: "Espresso",
expresso: "Espresso",
espresso: "Espresso",
"flat white": "Flat White",
flatwhite: "Flat White",
"flat-white": "Flat White",
"flatt white": "Flat White",
"filter coffee": "Coffee",
"fliter coffee": "Coffee",
late: "Latt",
lattey: "Latte",
larte: "Latte",
lattee: "Latte",
latte: "Latte",
ice: "Iced",
"white americano": "Americano",
"hot chocolate": "Hot Chocolate",
chocolate: "Hot Chocolate",
cocolate: "Hot Chocolate",
soya: "soy",
} as SpellingMap;