-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlanguage.pl
More file actions
100 lines (88 loc) · 1.99 KB
/
language.pl
File metadata and controls
100 lines (88 loc) · 1.99 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
:- module(language, [cn_en/2, pr_en/2, pronoun/1, connective/1, noun/1, verb/1, pinyin/2, radicals/2]).
cn_en("亻", "person").
cn_en("冖", "roof").
cn_en("小", "small").
cn_en("大", "big").
cn_en("一", "1").
cn_en("二", "2").
cn_en("三", "3").
cn_en("四", "4").
cn_en("五", "5").
cn_en("六", "6").
cn_en("八", "8").
cn_en("九", "9").
cn_en("太", "too").
cn_en("家", "family").
cn_en("吃", "eat").
cn_en("去", "go").
cn_en("做", "do").
cn_en("爱", "love").
cn_en("我", "I").
cn_en("你", "you").
cn_en("他", "he").
cn_en("她", "she").
cn_en("它", "it").
cn_en("人", "person").
cn_en("和", "and").
cn_en("床", "bed").
cn_en("玩", "play").
cn_en("很", "very").
cn_en("多", "many").
cn_en("少", "few").
cn_en("要", "want").
cn_en("要", "will").
cn_en("想", "want").
cn_en("这", "this").
cn_en("那", "that").
cn_en("不", "not").
cn_en("北", "north").
cn_en("东", "east").
cn_en("南", "south").
cn_en("西", "west").
cn_en("董", "understand").
cn_en("汉子", "character").
cn_en("名子", "name").
cn_en("东西", "things").
cn_en("沙发", "sofa").
cn_en("非常", "extremely").
cn_en("同场", "usually").
cn_en("多少", "how many").
cn_en("但是", "but").
cn_en("朋又", "friend").
cn_en("明百", "understand").
pr_en("a", "the").
pr_en("bola", "cake").
pr_en("carro", "car").
pr_en("cachorro", "dog").
pr_en("e", "and").
pr_en("gato", "cat").
pr_en("homem", "man").
pr_en("mas", "but").
pr_en("menino", "boy").
pr_en("menina", "girl").
pr_en("minha", "mine").
pr_en("mulher", "woman").
pr_en("o", "the").
pr_en("obrigado", "thanks").
pr_en("obrigada", "thanks").
pr_en("onde", "where").
pr_en("um", "a").
pr_en("uma", "a").
pr_en("voce", "you").
pronoun("我").
pronoun("你").
pronoun("他").
pronoun("她").
pronoun("它").
connective("和").
noun("沙发").
noun("床").
verb("吃").
pinyin("我", "wo").
pinyin("你", "ni").
pinyin("他", "ta").
pinyin("她", "ta").
pinyin("它", "ta").
pinyin("和", "he").
pinyin("沙发", "sha fa").
radicals("你", ["亻", "冖", "小"]).