-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconstants.js
67 lines (67 loc) · 1.23 KB
/
constants.js
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
const FLASHCARD_DECKS = [{
title: 'Korean Alphabet',
words: {
'ㄱ': 'giyeok',
'ㄴ': 'nieun',
'ㄷ': 'digeut',
'ㄹ': 'rieul',
'ㅁ': 'mieum',
'ㅂ': 'bieup',
'ㅅ': 'siot',
'ㅇ': 'ieung',
'ㅈ': 'jieut',
'ㅊ': 'chieut',
'ㅋ': 'kieuk',
'ㅌ': 'tieut',
'ㅍ': 'pieup',
'ㅎ': 'hieut',
'ㄲ': 'ssanggiyeok',
'ㄸ': 'ssangdigeut',
'ㅃ': 'ssangbieup',
'ㅆ': 'ssangsiot',
'ㅉ': 'ssangjieut',
'ㅏ': 'a',
'ㅑ': 'ya',
'ㅓ': 'eo',
'ㅕ': 'yeo',
'ㅗ': 'o',
'ㅛ': 'yo',
'ㅜ': 'u',
'ㅠ': 'yu',
'ㅡ': 'eu',
'ㅣ': 'i',
'ㅐ': 'ae',
'ㅒ': 'yae',
'ㅔ': 'e',
'ㅖ': 'ye',
'ㅘ': 'wa',
'ㅙ': 'wae',
'ㅚ': 'oe',
'ㅝ': 'wo',
'ㅞ': 'we',
'ㅟ': 'wi',
'ㅢ': 'ui'
}
}, {
title: 'Basic Korean Words',
words: {
'여자': 'woman',
'남자': 'man',
'사람': 'person',
'나무': 'tree',
'호수': 'lake',
'구름': 'cloud',
'땅': 'ground'
}
}, {
title: 'Foods in Korean',
words: {
'사과': 'apple',
'빵': 'bread',
'치즈': 'cheese',
'우유': 'milk',
'커피': 'coffee',
'바나나': 'banana',
'복숭아': 'peach'
}
}];