This commit is contained in:
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+3404
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
[{"name": "include", "trans": ["包含"]}, {"name": "iostream", "trans": ["输入输出头文件"]}, {"name": "using", "trans": ["使用"]}, {"name": "namespace", "trans": ["命名空间"]}, {"name": "std", "trans": ["标准的缩写"]}, {"name": "main", "trans": ["主函数"]}, {"name": "int", "trans": ["声明整型变量或函数"]}, {"name": "char", "trans": ["声明字符型变量或函数"]}, {"name": "double", "trans": ["声明双精度变量或函数"]}, {"name": "float", "trans": ["声明浮点型变量或函数"]}, {"name": "long", "trans": ["声明长整型变量或函数"]}, {"name": "short", "trans": ["声明短整型变量或函数"]}, {"name": "signed", "trans": ["声明有符号类型变量或函数"]}, {"name": "unsigned", "trans": ["声明无符号类型变量或函数"]}, {"name": "enum", "trans": ["声明枚举类型"]}, {"name": "struct", "trans": ["声明结构体变量或函数"]}, {"name": "union", "trans": ["声明共用体(联合)数据类型"]}, {"name": "cin", "trans": ["输入命令"]}, {"name": "cout", "trans": ["输出命令"]}, {"name": "endl", "trans": ["end line的缩写,换行"]}, {"name": "scanf", "trans": ["输入命令"]}, {"name": "printf", "trans": ["输出命令"]}, {"name": "void", "trans": ["声明函数无返回值或无参数,声明无类型指针"]}, {"name": "for", "trans": ["一种循环语句"]}, {"name": "do", "trans": ["循环语句的循环体"]}, {"name": "while", "trans": ["循环语句的循环条件"]}, {"name": "break", "trans": ["跳出当前循环"]}, {"name": "continue", "trans": ["结束当前循环,开始下一轮循环"]}, {"name": "if", "trans": ["条件语句"]}, {"name": "else", "trans": ["条件语句否定分支(与 if 连用)"]}, {"name": "goto", "trans": ["无条件跳转语句"]}, {"name": "switch", "trans": ["用于开关语句"]}, {"name": "case", "trans": ["开关语句分支"]}, {"name": "default", "trans": ["开关语句中的“其他”分支"]}, {"name": "return", "trans": ["子程序返回语句(可以带参数,也看不带参数)"]}, {"name": "static", "trans": ["声明静态变量"]}, {"name": "const", "trans": ["声明只读变量 (*注意是变量*)"]}, {"name": "sizeof", "trans": ["计算数据类型长度"]}, {"name": "typedef", "trans": ["用以给数据类型取别名(当然还有其他作用)"]}]
|
||||
@@ -0,0 +1,116 @@
|
||||
[
|
||||
{
|
||||
"name": "if",
|
||||
"trans": [
|
||||
"如果"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "else",
|
||||
"trans": [
|
||||
"否则"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "while",
|
||||
"trans": [
|
||||
"while 型循环"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "for",
|
||||
"trans":[
|
||||
"for 型循环"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "and",
|
||||
"trans": [
|
||||
"逻辑与运算符"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "or",
|
||||
"trans": [
|
||||
"逻辑或运算符"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "not",
|
||||
"trans": [
|
||||
"逻辑非运算符"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "TRUE",
|
||||
"trans": [
|
||||
"真"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "FALSE",
|
||||
"trans": [
|
||||
"假"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "None",
|
||||
"trans": [
|
||||
"空值"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "continue",
|
||||
"trans": [
|
||||
"跳出本次循环,继续下一轮循环"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "break",
|
||||
"trans": [
|
||||
"跳出整个循环"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "pass",
|
||||
"trans": [
|
||||
"空语句,不做任何事情"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "def",
|
||||
"trans": [
|
||||
"define的缩写,定义一个函数"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "return",
|
||||
"trans": [
|
||||
"返回语句,退出def语句块"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "global",
|
||||
"trans": [
|
||||
"声明全局变量"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "class",
|
||||
"trans": [
|
||||
"定义一个类"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "import",
|
||||
"trans": [
|
||||
"导入模块"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "from",
|
||||
"trans": [
|
||||
"与import配合导入模块"
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,164 @@
|
||||
[
|
||||
{
|
||||
"name": "screensize",
|
||||
"trans": [
|
||||
"设置画布大小及颜色"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "setup",
|
||||
"trans": [
|
||||
"设置窗口大小和位置"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "forward",
|
||||
"trans": [
|
||||
"向当前画笔方向移动dist像素长,简化为fd(dist)"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "backward",
|
||||
"trans": [
|
||||
"向当前画笔相反方向移动dist像素长度,简化为bk(dist)"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "right",
|
||||
"trans": [
|
||||
"顺时针转动degree°"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "left",
|
||||
"trans": [
|
||||
"逆时针转动degree°"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "circle",
|
||||
"trans": [
|
||||
"逆时针画半径为r整圆"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dot",
|
||||
"trans": [
|
||||
"按给定直径画圆点"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "speed",
|
||||
"trans": [
|
||||
"画笔绘制的速度,s为0-10的整数(1-10越来越快,0表示最快)"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "pendown",
|
||||
"trans": [
|
||||
"移动时绘制图形,缺省时也为绘制,简化为down()"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "penup",
|
||||
"trans": [
|
||||
"移动时不绘制图形,提起笔,用于另起一个地方绘制时用,简化为up()"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "goto",
|
||||
"trans": [
|
||||
"将画笔移动到坐标为x,y的位置"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "setx",
|
||||
"trans": [
|
||||
"将当前x轴移动到指定位置"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "sety",
|
||||
"trans": [
|
||||
"将当前y轴移动到指定位置"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "setheading",
|
||||
"trans": [
|
||||
"设置当前朝向为angle角度,简化为seth(angle)"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "home",
|
||||
"trans": [
|
||||
"设置当前画笔位置为原点(0,0),并恢复默认朝向为向东(0)"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "pensize",
|
||||
"trans": [
|
||||
"绘制图形时的画笔宽度"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "pencolor",
|
||||
"trans": [
|
||||
"画笔颜色"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "shape",
|
||||
"trans": [
|
||||
"画笔外观形状,可选classic/arrow/turtle/circle/square/triangle"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "fillcolor",
|
||||
"trans": [
|
||||
"图形的填充颜色"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "color",
|
||||
"trans": [
|
||||
"同时设置pencolor=c1, fillcolor=c2"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "begin_fill",
|
||||
"trans": [
|
||||
"准备开始填充图形"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "end_fill",
|
||||
"trans": [
|
||||
"填充完成"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "hideturtle",
|
||||
"trans": [
|
||||
"隐藏箭头显示,简化为ht()"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "showturtle",
|
||||
"trans": [
|
||||
"与hideturtle()函数对应,简化为st()"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "clear",
|
||||
"trans": [
|
||||
"清空turtle窗口,但是turtle的位置和状态不会改变"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "reset",
|
||||
"trans": [
|
||||
"清空窗口,重置turtle状态为起始状态"
|
||||
]
|
||||
}
|
||||
]
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+31146
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,702 @@
|
||||
[
|
||||
{
|
||||
"name": "ohayougozaimasu",
|
||||
"trans": [
|
||||
"Good morning"
|
||||
],
|
||||
"notation": "おはようございます"
|
||||
},
|
||||
{
|
||||
"name": "konnichiwa",
|
||||
"trans": [
|
||||
"Hello/ good afternoon"
|
||||
],
|
||||
"notation": "こんにちは"
|
||||
},
|
||||
{
|
||||
"name": "konbanwa",
|
||||
"trans": [
|
||||
"Good evening"
|
||||
],
|
||||
"notation": "こんばんは"
|
||||
},
|
||||
{
|
||||
"name": "oyasuminasai",
|
||||
"trans": [
|
||||
"Goodnight"
|
||||
],
|
||||
"notation": "おやすみなさい"
|
||||
},
|
||||
{
|
||||
"name": "arigatougozaimasu",
|
||||
"trans": [
|
||||
"Thank you"
|
||||
],
|
||||
"notation": "ありがとうございます"
|
||||
},
|
||||
{
|
||||
"name": "sumimasen",
|
||||
"trans": [
|
||||
"Excuse me/ sorry"
|
||||
],
|
||||
"notation": "すみません"
|
||||
},
|
||||
{
|
||||
"name": "gomennasai",
|
||||
"trans": [
|
||||
"Sorry"
|
||||
],
|
||||
"notation": "ごめんなさい"
|
||||
},
|
||||
{
|
||||
"name": "hai",
|
||||
"trans": [
|
||||
"Yes"
|
||||
],
|
||||
"notation": "はい"
|
||||
},
|
||||
{
|
||||
"name": "iie",
|
||||
"trans": [
|
||||
"No"
|
||||
],
|
||||
"notation": "いいえ"
|
||||
},
|
||||
{
|
||||
"name": "watashi",
|
||||
"trans": [
|
||||
"I/me"
|
||||
],
|
||||
"notation": "わたし"
|
||||
},
|
||||
{
|
||||
"name": "anata",
|
||||
"trans": [
|
||||
"You"
|
||||
],
|
||||
"notation": "あなた"
|
||||
},
|
||||
{
|
||||
"name": "okaasan",
|
||||
"trans": [
|
||||
"Mother"
|
||||
],
|
||||
"notation": "お母(かあ)さん"
|
||||
},
|
||||
{
|
||||
"name": "otousan",
|
||||
"trans": [
|
||||
"Father"
|
||||
],
|
||||
"notation": "お父(とう)さん"
|
||||
},
|
||||
{
|
||||
"name": "ojiisan",
|
||||
"trans": [
|
||||
"Grandfather"
|
||||
],
|
||||
"notation": "お爺(じい)さん"
|
||||
},
|
||||
{
|
||||
"name": "obaasan",
|
||||
"trans": [
|
||||
"Grandmother"
|
||||
],
|
||||
"notation": "お婆(ばあ)さん"
|
||||
},
|
||||
{
|
||||
"name": "ojisan",
|
||||
"trans": [
|
||||
"Uncle"
|
||||
],
|
||||
"notation": "おじさん"
|
||||
},
|
||||
{
|
||||
"name": "obasan",
|
||||
"trans": [
|
||||
"Aunt"
|
||||
],
|
||||
"notation": "おばさん"
|
||||
},
|
||||
{
|
||||
"name": "oniisan",
|
||||
"trans": [
|
||||
"Older brother"
|
||||
],
|
||||
"notation": "お兄(にい)さん"
|
||||
},
|
||||
{
|
||||
"name": "oneesan",
|
||||
"trans": [
|
||||
"Older sister"
|
||||
],
|
||||
"notation": "お姉(ねえ)さん"
|
||||
},
|
||||
{
|
||||
"name": "otouto",
|
||||
"trans": [
|
||||
"Younger brother"
|
||||
],
|
||||
"notation": "弟(おとうと)"
|
||||
},
|
||||
{
|
||||
"name": "imouto",
|
||||
"trans": [
|
||||
"Younger sister"
|
||||
],
|
||||
"notation": "妹(いもうと)"
|
||||
},
|
||||
{
|
||||
"name": "ichi",
|
||||
"trans": [
|
||||
"One"
|
||||
],
|
||||
"notation": "一(いち)"
|
||||
},
|
||||
{
|
||||
"name": "ni",
|
||||
"trans": [
|
||||
"Two"
|
||||
],
|
||||
"notation": "二(に)"
|
||||
},
|
||||
{
|
||||
"name": "san",
|
||||
"trans": [
|
||||
"Three"
|
||||
],
|
||||
"notation": "三(さん)"
|
||||
},
|
||||
{
|
||||
"name": "yon",
|
||||
"trans": [
|
||||
"Four"
|
||||
],
|
||||
"notation": "四(よん)"
|
||||
},
|
||||
{
|
||||
"name": "go",
|
||||
"trans": [
|
||||
"Five"
|
||||
],
|
||||
"notation": "五(ご)"
|
||||
},
|
||||
{
|
||||
"name": "roku",
|
||||
"trans": [
|
||||
"Six"
|
||||
],
|
||||
"notation": "六(ろく)"
|
||||
},
|
||||
{
|
||||
"name": "nana",
|
||||
"trans": [
|
||||
"Seven"
|
||||
],
|
||||
"notation": "七(なな)"
|
||||
},
|
||||
{
|
||||
"name": "hachi",
|
||||
"trans": [
|
||||
"Eight"
|
||||
],
|
||||
"notation": "八(はち)"
|
||||
},
|
||||
{
|
||||
"name": "kyuu",
|
||||
"trans": [
|
||||
"Nine"
|
||||
],
|
||||
"notation": "九(きゅう)"
|
||||
},
|
||||
{
|
||||
"name": "juu",
|
||||
"trans": [
|
||||
"Ten"
|
||||
],
|
||||
"notation": "十(じゅう)"
|
||||
},
|
||||
{
|
||||
"name": "ichigatsu",
|
||||
"trans": [
|
||||
"January"
|
||||
],
|
||||
"notation": "一月(いちがつ)"
|
||||
},
|
||||
{
|
||||
"name": "nigatsu",
|
||||
"trans": [
|
||||
"February"
|
||||
],
|
||||
"notation": "二月(にがつ)"
|
||||
},
|
||||
{
|
||||
"name": "sangatsu",
|
||||
"trans": [
|
||||
"March"
|
||||
],
|
||||
"notation": "三月(さんがつ)"
|
||||
},
|
||||
{
|
||||
"name": "shigatsu",
|
||||
"trans": [
|
||||
"April"
|
||||
],
|
||||
"notation": "四月(しがつ)"
|
||||
},
|
||||
{
|
||||
"name": "gogatsu",
|
||||
"trans": [
|
||||
"May"
|
||||
],
|
||||
"notation": "五月(ごがつ)"
|
||||
},
|
||||
{
|
||||
"name": "rokugatsu",
|
||||
"trans": [
|
||||
"June"
|
||||
],
|
||||
"notation": "六月(ろくがつ)"
|
||||
},
|
||||
{
|
||||
"name": "shichigatsu",
|
||||
"trans": [
|
||||
"July"
|
||||
],
|
||||
"notation": "七月(しちがつ)"
|
||||
},
|
||||
{
|
||||
"name": "hachigatsu",
|
||||
"trans": [
|
||||
"August"
|
||||
],
|
||||
"notation": "八月(はちがつ)"
|
||||
},
|
||||
{
|
||||
"name": "kugatsu",
|
||||
"trans": [
|
||||
"September"
|
||||
],
|
||||
"notation": "九月(くがつ)"
|
||||
},
|
||||
{
|
||||
"name": "juugatsu",
|
||||
"trans": [
|
||||
"October"
|
||||
],
|
||||
"notation": "十月(じゅうがつ)"
|
||||
},
|
||||
{
|
||||
"name": "juuichigatsu",
|
||||
"trans": [
|
||||
"November"
|
||||
],
|
||||
"notation": "十一月(じゅういちがつ)"
|
||||
},
|
||||
{
|
||||
"name": "juunigatsu",
|
||||
"trans": [
|
||||
"December"
|
||||
],
|
||||
"notation": "十二月(じゅうにがつ)"
|
||||
},
|
||||
{
|
||||
"name": "getsuyoubi",
|
||||
"trans": [
|
||||
"Monday"
|
||||
],
|
||||
"notation": "月曜日(げつようび)"
|
||||
},
|
||||
{
|
||||
"name": "kayoubi",
|
||||
"trans": [
|
||||
"Tuesday"
|
||||
],
|
||||
"notation": "火曜日(かようび)"
|
||||
},
|
||||
{
|
||||
"name": "suiyoubi",
|
||||
"trans": [
|
||||
"Wednesday"
|
||||
],
|
||||
"notation": "水曜日(すいようび)"
|
||||
},
|
||||
{
|
||||
"name": "mokuyoubi",
|
||||
"trans": [
|
||||
"Thursday"
|
||||
],
|
||||
"notation": "木曜日(もくようび)"
|
||||
},
|
||||
{
|
||||
"name": "kinyoubi",
|
||||
"trans": [
|
||||
"Friday"
|
||||
],
|
||||
"notation": "金曜日(きんようび)"
|
||||
},
|
||||
{
|
||||
"name": "doyoubi",
|
||||
"trans": [
|
||||
"Saturday"
|
||||
],
|
||||
"notation": "土曜日(どようび)"
|
||||
},
|
||||
{
|
||||
"name": "nichiyoubi",
|
||||
"trans": [
|
||||
"Sunday"
|
||||
],
|
||||
"notation": "日曜日(にちようび)"
|
||||
},
|
||||
{
|
||||
"name": "kinou",
|
||||
"trans": [
|
||||
"Yesterday"
|
||||
],
|
||||
"notation": "昨日(きのう)"
|
||||
},
|
||||
{
|
||||
"name": "kyou",
|
||||
"trans": [
|
||||
"Today"
|
||||
],
|
||||
"notation": "今日(きょう)"
|
||||
},
|
||||
{
|
||||
"name": "ashita",
|
||||
"trans": [
|
||||
"Tomorrow"
|
||||
],
|
||||
"notation": "明日(あした)"
|
||||
},
|
||||
{
|
||||
"name": "asa",
|
||||
"trans": [
|
||||
"Morning"
|
||||
],
|
||||
"notation": "朝(あさ)"
|
||||
},
|
||||
{
|
||||
"name": "hiru",
|
||||
"trans": [
|
||||
"Noon"
|
||||
],
|
||||
"notation": "昼(ひる)"
|
||||
},
|
||||
{
|
||||
"name": "yuugata",
|
||||
"trans": [
|
||||
"Evening"
|
||||
],
|
||||
"notation": "夕方(ゆうがた)"
|
||||
},
|
||||
{
|
||||
"name": "yoru",
|
||||
"trans": [
|
||||
"Night"
|
||||
],
|
||||
"notation": "夜(よる)"
|
||||
},
|
||||
{
|
||||
"name": "tanoshii",
|
||||
"trans": [
|
||||
"Happy"
|
||||
],
|
||||
"notation": "楽(たの)しい"
|
||||
},
|
||||
{
|
||||
"name": "kanashii",
|
||||
"trans": [
|
||||
"Sad"
|
||||
],
|
||||
"notation": "悲(かな)しい"
|
||||
},
|
||||
{
|
||||
"name": "takai",
|
||||
"trans": [
|
||||
"High/expensive"
|
||||
],
|
||||
"notation": "高(たか)い"
|
||||
},
|
||||
{
|
||||
"name": "hikui",
|
||||
"trans": [
|
||||
"Low"
|
||||
],
|
||||
"notation": "低(ひく)い"
|
||||
},
|
||||
{
|
||||
"name": "yasui",
|
||||
"trans": [
|
||||
"Cheap"
|
||||
],
|
||||
"notation": "安(やす)い"
|
||||
},
|
||||
{
|
||||
"name": "hayai",
|
||||
"trans": [
|
||||
"Fast/early"
|
||||
],
|
||||
"notation": "早(はや)い"
|
||||
},
|
||||
{
|
||||
"name": "osoi",
|
||||
"trans": [
|
||||
"Slow"
|
||||
],
|
||||
"notation": "遅(おそ)い"
|
||||
},
|
||||
{
|
||||
"name": "isogashii",
|
||||
"trans": [
|
||||
"Busy"
|
||||
],
|
||||
"notation": "忙(いそが)しい"
|
||||
},
|
||||
{
|
||||
"name": "oishii",
|
||||
"trans": [
|
||||
"Delicious"
|
||||
],
|
||||
"notation": "美味(おい)しい"
|
||||
},
|
||||
{
|
||||
"name": "mazui",
|
||||
"trans": [
|
||||
"Awful"
|
||||
],
|
||||
"notation": "不味(まず)い"
|
||||
},
|
||||
{
|
||||
"name": "amai",
|
||||
"trans": [
|
||||
"Sweet"
|
||||
],
|
||||
"notation": "甘(あま)い"
|
||||
},
|
||||
{
|
||||
"name": "shoppai",
|
||||
"trans": [
|
||||
"Salty"
|
||||
],
|
||||
"notation": "塩(しょ)っぱい"
|
||||
},
|
||||
{
|
||||
"name": "suppai",
|
||||
"trans": [
|
||||
"Sour"
|
||||
],
|
||||
"notation": "酸(す)っぱい"
|
||||
},
|
||||
{
|
||||
"name": "nigai",
|
||||
"trans": [
|
||||
"Bitter"
|
||||
],
|
||||
"notation": "苦(にが)い"
|
||||
},
|
||||
{
|
||||
"name": "tsurai",
|
||||
"trans": [
|
||||
"Hot/ spicy"
|
||||
],
|
||||
"notation": "辛(つら)い"
|
||||
},
|
||||
{
|
||||
"name": "atsui",
|
||||
"trans": [
|
||||
"Hot"
|
||||
],
|
||||
"notation": "熱(あつ)い"
|
||||
},
|
||||
{
|
||||
"name": "atatakai",
|
||||
"trans": [
|
||||
"Warm"
|
||||
],
|
||||
"notation": "暖(あたた)かい"
|
||||
},
|
||||
{
|
||||
"name": "tsumetai",
|
||||
"trans": [
|
||||
"Cold"
|
||||
],
|
||||
"notation": "冷(つめ)たい"
|
||||
},
|
||||
{
|
||||
"name": "akarui",
|
||||
"trans": [
|
||||
"Bright"
|
||||
],
|
||||
"notation": "明(あか)るい"
|
||||
},
|
||||
{
|
||||
"name": "kurai",
|
||||
"trans": [
|
||||
"Dark"
|
||||
],
|
||||
"notation": "暗(くら)い"
|
||||
},
|
||||
{
|
||||
"name": "suru",
|
||||
"trans": [
|
||||
"To do"
|
||||
],
|
||||
"notation": "する"
|
||||
},
|
||||
{
|
||||
"name": "miru",
|
||||
"trans": [
|
||||
"To see"
|
||||
],
|
||||
"notation": "見(み)る"
|
||||
},
|
||||
{
|
||||
"name": "kiku",
|
||||
"trans": [
|
||||
"To listen"
|
||||
],
|
||||
"notation": "聞(き)く"
|
||||
},
|
||||
{
|
||||
"name": "hanasu",
|
||||
"trans": [
|
||||
"To talk/speak"
|
||||
],
|
||||
"notation": "話(はな)す"
|
||||
},
|
||||
{
|
||||
"name": "iu",
|
||||
"trans": [
|
||||
"To say"
|
||||
],
|
||||
"notation": "言(い)う"
|
||||
},
|
||||
{
|
||||
"name": "kaku",
|
||||
"trans": [
|
||||
"To write"
|
||||
],
|
||||
"notation": "書(か)く"
|
||||
},
|
||||
{
|
||||
"name": "taberu",
|
||||
"trans": [
|
||||
"To eat"
|
||||
],
|
||||
"notation": "食(た)べる"
|
||||
},
|
||||
{
|
||||
"name": "nomu",
|
||||
"trans": [
|
||||
"To drink"
|
||||
],
|
||||
"notation": "飲(の)む"
|
||||
},
|
||||
{
|
||||
"name": "aruku",
|
||||
"trans": [
|
||||
"To walk"
|
||||
],
|
||||
"notation": "歩(ある)く"
|
||||
},
|
||||
{
|
||||
"name": "hashiru",
|
||||
"trans": [
|
||||
"To run"
|
||||
],
|
||||
"notation": "走(はし)る"
|
||||
},
|
||||
{
|
||||
"name": "suwaru",
|
||||
"trans": [
|
||||
"To sit"
|
||||
],
|
||||
"notation": "座(すわ)る"
|
||||
},
|
||||
{
|
||||
"name": "tatsu",
|
||||
"trans": [
|
||||
"To stand"
|
||||
],
|
||||
"notation": "立(た)つ"
|
||||
},
|
||||
{
|
||||
"name": "tabemono",
|
||||
"trans": [
|
||||
"Food"
|
||||
],
|
||||
"notation": "食(た)べ物(もの)"
|
||||
},
|
||||
{
|
||||
"name": "nomimono",
|
||||
"trans": [
|
||||
"Drinks"
|
||||
],
|
||||
"notation": "飲(の)み物(もの)"
|
||||
},
|
||||
{
|
||||
"name": "gohan",
|
||||
"trans": [
|
||||
"Rice/meal"
|
||||
],
|
||||
"notation": "ご飯(はん)"
|
||||
},
|
||||
{
|
||||
"name": "mizu",
|
||||
"trans": [
|
||||
"Water/cold water"
|
||||
],
|
||||
"notation": "水(みず)"
|
||||
},
|
||||
{
|
||||
"name": "oyu",
|
||||
"trans": [
|
||||
"Hot water"
|
||||
],
|
||||
"notation": "お湯(ゆ)"
|
||||
},
|
||||
{
|
||||
"name": "niku",
|
||||
"trans": [
|
||||
"Meat"
|
||||
],
|
||||
"notation": "肉(にく)"
|
||||
},
|
||||
{
|
||||
"name": "yasai",
|
||||
"trans": [
|
||||
"Vegetable"
|
||||
],
|
||||
"notation": "野菜(やさい)"
|
||||
},
|
||||
{
|
||||
"name": "sakana",
|
||||
"trans": [
|
||||
"Fish"
|
||||
],
|
||||
"notation": "魚(さかな)"
|
||||
},
|
||||
{
|
||||
"name": "raamen",
|
||||
"trans": [
|
||||
"Ramen"
|
||||
],
|
||||
"notation": "ラーメン"
|
||||
},
|
||||
{
|
||||
"name": "sushi",
|
||||
"trans": [
|
||||
"Sushi"
|
||||
],
|
||||
"notation": "寿司(すし)"
|
||||
},
|
||||
{
|
||||
"name": "onigiri",
|
||||
"trans": [
|
||||
"Onigiri"
|
||||
],
|
||||
"notation": "おにぎり"
|
||||
}
|
||||
]
|
||||
File diff suppressed because it is too large
Load Diff
+22388
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
+5339
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,860 @@
|
||||
[
|
||||
{ "name": "private", "usphone": "'praivit", "ukphone": "", "trans": ["a.私人的"] },
|
||||
{ "name": "conversation", "usphone": "kɔnvə'seiʃən", "ukphone": "", "trans": ["n.谈话"] },
|
||||
{ "name": "theatre", "usphone": "'θiətə", "ukphone": "", "trans": ["n.剧场,戏院"] },
|
||||
{ "name": "seat", "usphone": "si:t", "ukphone": "", "trans": ["n.座位"] },
|
||||
{ "name": "play", "usphone": "plei", "ukphone": "", "trans": ["n.戏"] },
|
||||
{ "name": "loudly", "usphone": "'laudli", "ukphone": "", "trans": ["ad.大声地"] },
|
||||
{ "name": "angry", "usphone": "'æŋgri", "ukphone": "", "trans": ["a.生气的"] },
|
||||
{ "name": "angrily", "usphone": "'æŋgrili", "ukphone": "", "trans": ["ad.生气地"] },
|
||||
{ "name": "attention", "usphone": "ə'tenʃən", "ukphone": "", "trans": ["n.注意"] },
|
||||
{ "name": "bear", "usphone": "beə", "ukphone": "", "trans": ["v.容忍"] },
|
||||
{ "name": "business", "usphone": "'biznis", "ukphone": "", "trans": ["n.事"] },
|
||||
{ "name": "rudely", "usphone": "'ru:dli", "ukphone": "", "trans": ["ad.无礼地,粗鲁地"] },
|
||||
{ "name": "until", "usphone": "ən'til, ʌn'til", "ukphone": "", "trans": ["prep.直到"] },
|
||||
{ "name": "outside", "usphone": "aut'said", "ukphone": "", "trans": ["ad.外面"] },
|
||||
{ "name": "ring", "usphone": "riŋ", "ukphone": "", "trans": ["v.(铃、电话等)响"] },
|
||||
{ "name": "aunt", "usphone": "ɑ:nt", "ukphone": "", "trans": ["n.姑,姨,婶,舅妈"] },
|
||||
{ "name": "repeat", "usphone": "ri'pi:t", "ukphone": "", "trans": ["v.重复"] },
|
||||
{ "name": "send", "usphone": "send", "ukphone": "", "trans": ["v.寄,送"] },
|
||||
{ "name": "postcard", "usphone": "'pəustkɑ:d", "ukphone": "", "trans": ["n.明信片"] },
|
||||
{ "name": "spoil", "usphone": "spɔil", "ukphone": "", "trans": ["v.使索然无味,损坏"] },
|
||||
{ "name": "museum", "usphone": "mju:'ziəm", "ukphone": "", "trans": ["n.博物馆"] },
|
||||
{ "name": "public", "usphone": "'pʌblik", "ukphone": "", "trans": ["a.公共的"] },
|
||||
{ "name": "friendly", "usphone": "'frendli", "ukphone": "", "trans": ["a.友好的"] },
|
||||
{ "name": "waiter", "usphone": "'weitə", "ukphone": "", "trans": ["n.服务员,招待员"] },
|
||||
{ "name": "lend", "usphone": "lend", "ukphone": "", "trans": ["v.借给"] },
|
||||
{ "name": "decision", "usphone": "di'siʒən", "ukphone": "", "trans": ["n.决定"] },
|
||||
{ "name": "whole", "usphone": "həul", "ukphone": "", "trans": ["a.整个的"] },
|
||||
{ "name": "single", "usphone": "'siŋgəl", "ukphone": "", "trans": ["a.唯一的,单一的"] },
|
||||
{ "name": "exciting", "usphone": "ik'saitiŋ", "ukphone": "", "trans": ["a.令人兴奋的"] },
|
||||
{ "name": "receive", "usphone": "ri'si:v", "ukphone": "", "trans": ["v.接受,收到"] },
|
||||
{ "name": "firm", "usphone": "fə:m", "ukphone": "", "trans": ["n.商行,公司"] },
|
||||
{ "name": "different", "usphone": "'difrənt", "ukphone": "", "trans": ["a.不同的"] },
|
||||
{ "name": "centre", "usphone": "'sentə", "ukphone": "", "trans": ["n.中心"] },
|
||||
{ "name": "abroad", "usphone": "ə'brɔ:d", "ukphone": "", "trans": ["ad.在国外"] },
|
||||
{ "name": "pigeon", "usphone": "pidʒin", "ukphone": "", "trans": ["n.鸽子"] },
|
||||
{ "name": "message", "usphone": "'mesidʒ", "ukphone": "", "trans": ["n.信息"] },
|
||||
{ "name": "over", "usphone": "'əuvə", "ukphone": "", "trans": ["v.越过"] },
|
||||
{ "name": "distance", "usphone": "'distəns", "ukphone": "", "trans": ["n.距离"] },
|
||||
{ "name": "request", "usphone": "ri'kwest", "ukphone": "", "trans": ["n.要求,请求"] },
|
||||
{ "name": "spare", "usphone": "speə", "ukphone": "", "trans": ["备件"] },
|
||||
{ "name": "service", "usphone": "'sə:vis", "ukphone": "", "trans": ["n.业务,服务"] },
|
||||
{ "name": "beggar", "usphone": "'begə", "ukphone": "", "trans": ["n.乞丐"] },
|
||||
{ "name": "food", "usphone": "fu:d", "ukphone": "", "trans": ["n.食物"] },
|
||||
{ "name": "pocket", "usphone": "'pɔkit", "ukphone": "", "trans": ["n.衣服口袋"] },
|
||||
{ "name": "call", "usphone": "kɔ:l", "ukphone": "", "trans": ["v.拜访,光顾"] },
|
||||
{ "name": "detective", "usphone": "di'tektiv", "ukphone": "", "trans": ["n.侦探"] },
|
||||
{ "name": "airport", "usphone": "'eəpɔ:t", "ukphone": "", "trans": ["n.机场"] },
|
||||
{ "name": "expect", "usphone": "ik'spekt", "ukphone": "", "trans": ["v.期待,等待"] },
|
||||
{ "name": "valuable", "usphone": "'væljuəbəl, -jubəl", "ukphone": "", "trans": ["a.贵重的"] },
|
||||
{ "name": "parcel", "usphone": "'pɑ:sl", "ukphone": "", "trans": ["n.包裹"] },
|
||||
{ "name": "diamond", "usphone": "'daiəmənd", "ukphone": "", "trans": ["n.钻石"] },
|
||||
{ "name": "steal", "usphone": "sti:l", "ukphone": "", "trans": ["v.偷"] },
|
||||
{ "name": "main", "usphone": "mein", "ukphone": "", "trans": ["a.主要的"] },
|
||||
{ "name": "airfield", "usphone": "'eəfi:ld", "ukphone": "", "trans": ["n.飞机起落的场地"] },
|
||||
{ "name": "guard", "usphone": "gɑ:d", "ukphone": "", "trans": ["n.警戒,守卫"] },
|
||||
{ "name": "precious", "usphone": "'preʃəs", "ukphone": "", "trans": ["a.珍贵的"] },
|
||||
{ "name": "stone", "usphone": "stəun", "ukphone": "", "trans": ["n.石子"] },
|
||||
{ "name": "sand", "usphone": "sænd", "ukphone": "", "trans": ["n.沙子"] },
|
||||
{ "name": "competition", "usphone": "ˌkɔmpi'tiʃən", "ukphone": "", "trans": ["n.比赛,竞赛"] },
|
||||
{ "name": "neat", "usphone": "ni:t", "ukphone": "", "trans": ["a.整齐的,整洁的"] },
|
||||
{ "name": "path", "usphone": "pɑ:θ", "ukphone": "", "trans": ["n.小路,小径"] },
|
||||
{ "name": "wooden", "usphone": "'wudn", "ukphone": "", "trans": ["a.木头的"] },
|
||||
{ "name": "pool", "usphone": "pu:l", "ukphone": "", "trans": ["n.水池"] },
|
||||
{ "name": "welcome", "usphone": "'welkəm", "ukphone": "", "trans": ["n.欢迎 v.欢迎"] },
|
||||
{ "name": "crowd", "usphone": "kraud", "ukphone": "", "trans": ["n.人群"] },
|
||||
{ "name": "gather", "usphone": "'gæeə", "ukphone": "", "trans": ["v.聚集"] },
|
||||
{ "name": "hand", "usphone": "hænd", "ukphone": "", "trans": ["n.(表或机器的)指针"] },
|
||||
{ "name": "shout", "usphone": "ʃaut", "ukphone": "", "trans": ["v.喊叫"] },
|
||||
{ "name": "refuse", "usphone": "ri'fju:z, ri'fju:s", "ukphone": "", "trans": ["v.拒绝"] },
|
||||
{ "name": "laugh", "usphone": "lɑ:f", "ukphone": "", "trans": ["v.笑"] },
|
||||
{ "name": "jazz", "usphone": "dʒæz", "ukphone": "", "trans": ["n.爵士音乐"] },
|
||||
{ "name": "musical", "usphone": "'mju:zikəl", "ukphone": "", "trans": ["a.音乐的"] },
|
||||
{ "name": "instrument", "usphone": "'instrumənt", "ukphone": "", "trans": ["n.乐器"] },
|
||||
{ "name": "clavichord", "usphone": "'klævikɔ:d", "ukphone": "", "trans": ["n.古钢琴"] },
|
||||
{ "name": "recently", "usphone": "'ri:səntli", "ukphone": "", "trans": ["ad.最近"] },
|
||||
{ "name": "damage", "usphone": "'dæmidʒ", "ukphone": "", "trans": ["v.损坏"] },
|
||||
{ "name": "key", "usphone": "ki:", "ukphone": "", "trans": ["n.琴键"] },
|
||||
{ "name": "string", "usphone": "striŋ", "ukphone": "", "trans": ["n.(乐器的)弦"] },
|
||||
{ "name": "shock", "usphone": "ʃɔk, ʃɑk", "ukphone": "", "trans": ["v.使不悦或生气,震惊"] },
|
||||
{ "name": "allow", "usphone": "ə'lau", "ukphone": "", "trans": ["v.允许,让"] },
|
||||
{ "name": "touch", "usphone": "tʌtʃ", "ukphone": "", "trans": ["v.触摸"] },
|
||||
{ "name": "turn", "usphone": "tə:n", "ukphone": "", "trans": ["n.行为,举止"] },
|
||||
{ "name": "deserve", "usphone": "di'zə:v", "ukphone": "", "trans": ["v.应得到,值得"] },
|
||||
{ "name": "lawyer", "usphone": "'lɔ:jə", "ukphone": "", "trans": ["n.律师"] },
|
||||
{ "name": "bank", "usphone": "bæŋk", "ukphone": "", "trans": ["n.银行"] },
|
||||
{ "name": "salary", "usphone": "'sæləri", "ukphone": "", "trans": ["n.工资"] },
|
||||
{ "name": "immediately", "usphone": "i'mi:diətli", "ukphone": "", "trans": ["ad.立刻"] },
|
||||
{ "name": "luck", "usphone": "lʌk", "ukphone": "", "trans": ["n.运气,幸运"] },
|
||||
{ "name": "captain", "usphone": "'kæptin", "ukphone": "", "trans": ["n.船长"] },
|
||||
{ "name": "sail", "usphone": "seil", "ukphone": "", "trans": ["v.航行"] },
|
||||
{ "name": "harbour", "usphone": "'ha:bə", "ukphone": "", "trans": ["n.港口"] },
|
||||
{ "name": "proud", "usphone": "praud", "ukphone": "", "trans": ["a.自豪"] },
|
||||
{ "name": "important", "usphone": "im'pɔ:tənt", "ukphone": "", "trans": ["a.重要的"] },
|
||||
{ "name": "group", "usphone": "gru:p", "ukphone": "", "trans": ["n.小组,团体"] },
|
||||
{ "name": "pop singer", "ukphone": "", "trans": ["流行歌手"] },
|
||||
{ "name": "club", "usphone": "klʌb", "ukphone": "", "trans": ["n.俱乐部"] },
|
||||
{ "name": "performance", "usphone": "pə'fɔ:məns", "ukphone": "", "trans": ["n.演出"] },
|
||||
{ "name": "occasion", "usphone": "ə'keiʒən", "ukphone": "", "trans": ["n.场合"] },
|
||||
{ "name": "amusing", "usphone": "ə'mju:ziŋ", "ukphone": "", "trans": ["a.好笑的,有趣的"] },
|
||||
{ "name": "experience", "usphone": "ik'spiəriəns", "ukphone": "", "trans": ["n.经历"] },
|
||||
{ "name": "wave", "usphone": "weiv", "ukphone": "", "trans": ["v.招手"] },
|
||||
{ "name": "lift", "usphone": "lift", "ukphone": "", "trans": ["n.搭便车"] },
|
||||
{ "name": "reply", "usphone": "ri'plai", "ukphone": "", "trans": ["v.回答"] },
|
||||
{ "name": "language", "usphone": "'læŋgwidʒ", "ukphone": "", "trans": ["n.语言"] },
|
||||
{ "name": "journey", "usphone": "'dʒə:ni", "ukphone": "", "trans": ["n.旅行"] },
|
||||
{ "name": "secretary", "usphone": "'sekrətəri, -teri", "ukphone": "", "trans": ["n.秘书"] },
|
||||
{ "name": "nervous", "usphone": "'nə:vəs", "ukphone": "", "trans": ["a.精神紧张的"] },
|
||||
{ "name": "afford", "usphone": "ə'fɔ:d", "ukphone": "", "trans": ["v.负担得起"] },
|
||||
{ "name": "weak", "usphone": "wi:k", "ukphone": "", "trans": ["a.弱的"] },
|
||||
{ "name": "interrupt", "usphone": "ˌintə'rʌpt", "ukphone": "", "trans": ["v.插话,打断"] },
|
||||
{ "name": "park", "usphone": "pɑ:k", "ukphone": "", "trans": ["v.停放(汽车)"] },
|
||||
{ "name": "traffic", "usphone": "'træfik", "ukphone": "", "trans": ["n.交通"] },
|
||||
{ "name": "ticket", "usphone": "'tikit", "ukphone": "", "trans": ["n.交通法规罚款单"] },
|
||||
{ "name": "note", "usphone": "nəut", "ukphone": "", "trans": ["n.便条"] },
|
||||
{ "name": "area", "usphone": "'eəriə", "ukphone": "", "trans": ["n.地点"] },
|
||||
{ "name": "sign", "usphone": "sain", "ukphone": "", "trans": ["n.指示牌"] },
|
||||
{ "name": "reminder", "usphone": "ri'maində", "ukphone": "", "trans": ["n.指示"] },
|
||||
{ "name": "fail", "usphone": "feil", "ukphone": "", "trans": ["v.无视,忘记"] },
|
||||
{ "name": "obey", "usphone": "ə'bei", "ukphone": "", "trans": ["v.服从"] },
|
||||
{ "name": "appear", "usphone": "ə'piə", "ukphone": "", "trans": ["v.登场,扮演"] },
|
||||
{ "name": "stage", "usphone": "steidʒ", "ukphone": "", "trans": ["n.舞台"] },
|
||||
{ "name": "bright", "usphone": "brait", "ukphone": "", "trans": ["a.鲜艳的"] },
|
||||
{ "name": "stocking", "usphone": "'stɔkiŋ", "ukphone": "", "trans": ["n.(女用)长筒袜"] },
|
||||
{ "name": "sock", "usphone": "sɔk", "ukphone": "", "trans": ["n.短袜"] },
|
||||
{ "name": "pub", "usphone": "pʌb", "ukphone": "", "trans": ["n.小酒店"] },
|
||||
{ "name": "landlord", "usphone": "'lændlɔ:d", "ukphone": "", "trans": ["n.店主"] },
|
||||
{ "name": "bill", "usphone": "bil", "ukphone": "", "trans": ["n.帐单"] },
|
||||
{ "name": "hurry", "usphone": "'hʌri", "ukphone": "", "trans": ["v.匆忙"] },
|
||||
{ "name": "ticket office", "ukphone": "", "trans": ["售票处"] },
|
||||
{ "name": "pity", "usphone": "'piti", "ukphone": "", "trans": ["n.令人遗憾的事"] },
|
||||
{ "name": "exclaim", "usphone": "ik'skleim", "ukphone": "", "trans": ["v.大声说"] },
|
||||
{ "name": "return", "usphone": "ri'tə:n", "ukphone": "", "trans": ["v.退回"] },
|
||||
{ "name": "sadly", "usphone": "'sædli", "ukphone": "", "trans": ["ad.悲哀地,丧气地"] },
|
||||
{ "name": "catch", "usphone": "kætʃ", "ukphone": "", "trans": ["v.抓到"] },
|
||||
{ "name": "fisherman", "usphone": "'fiʃəmən", "ukphone": "", "trans": ["n.钓鱼人,渔民"] },
|
||||
{ "name": "boot", "usphone": "bu:t", "ukphone": "", "trans": ["n.靴子"] },
|
||||
{ "name": "waste", "usphone": "weist", "ukphone": "", "trans": ["n.浪费"] },
|
||||
{ "name": "realize", "usphone": "'riəlaiz", "ukphone": "", "trans": ["v.意识到"] },
|
||||
{ "name": "mad", "usphone": "mæd", "ukphone": "", "trans": ["a.发疯"] },
|
||||
{ "name": "reason", "usphone": "'ri:zən", "ukphone": "", "trans": ["n.原因"] },
|
||||
{ "name": "sum", "usphone": "sʌm", "ukphone": "", "trans": ["n.量"] },
|
||||
{ "name": "determined", "usphone": "di'tə:mind", "ukphone": "", "trans": ["a.坚定的,下决心的"] },
|
||||
{ "name": "dream", "usphone": "dri:m", "ukphone": "", "trans": ["v.做梦,梦想"] },
|
||||
{ "name": "age", "usphone": "eidʒ", "ukphone": "", "trans": ["n.年龄"] },
|
||||
{ "name": "channel", "usphone": "'tʃænəl", "ukphone": "", "trans": ["n.海峡"] },
|
||||
{ "name": "throw", "usphone": "θrəu", "ukphone": "", "trans": ["v.扔,抛"] },
|
||||
{ "name": "complete", "usphone": "kəm'pli:t", "ukphone": "", "trans": ["v.完成"] },
|
||||
{ "name": "modern", "usphone": "'mɔdən", "ukphone": "", "trans": ["a.新式的,与以往不同的"] },
|
||||
{ "name": "strange", "usphone": "streindʒ", "ukphone": "", "trans": ["a.奇怪的"] },
|
||||
{ "name": "district", "usphone": "'distrikt", "ukphone": "", "trans": ["n.地区"] },
|
||||
{ "name": "manager", "usphone": "'mænidʒə", "ukphone": "", "trans": ["n.经理"] },
|
||||
{ "name": "upset", "usphone": "ʌp'set", "ukphone": "", "trans": ["a.不安"] },
|
||||
{ "name": "sympathetic", "usphone": "ˌsimpə'θetik", "ukphone": "", "trans": ["a.表示同情的"] },
|
||||
{ "name": "complain", "usphone": "kəm'plein", "ukphone": "", "trans": ["v.抱怨"] },
|
||||
{ "name": "wicked", "usphone": "'wikid", "ukphone": "", "trans": ["a.很坏的,邪恶的"] },
|
||||
{ "name": "contain", "usphone": "kən'tein", "ukphone": "", "trans": ["v.包含,内装"] },
|
||||
{ "name": "honesty", "usphone": "'ɔnisti", "ukphone": "", "trans": ["n.诚实"] },
|
||||
{ "name": "railway", "usphone": "'reilwei", "ukphone": "", "trans": ["n.铁路"] },
|
||||
{ "name": "porter", "usphone": "'pɔ:tə", "ukphone": "", "trans": ["n.搬运工"] },
|
||||
{ "name": "several", "usphone": "'sevərəl", "ukphone": "", "trans": ["几个"] },
|
||||
{ "name": "foreigner", "usphone": "'fɔrinə", "ukphone": "", "trans": ["n.外国人"] },
|
||||
{ "name": "wonder", "usphone": "'wʌndə", "ukphone": "", "trans": ["v.感到奇怪"] },
|
||||
{ "name": "art", "usphone": "ɑ:t", "ukphone": "", "trans": ["n.艺术"] },
|
||||
{ "name": "critic", "usphone": "'kritik", "ukphone": "", "trans": ["n.评论家"] },
|
||||
{ "name": "paint", "usphone": "peint", "ukphone": "", "trans": ["v.画"] },
|
||||
{ "name": "pretend", "usphone": "pri'tend", "ukphone": "", "trans": ["v.假装"] },
|
||||
{ "name": "pattern", "usphone": "'pætn", "ukphone": "", "trans": ["n.图案"] },
|
||||
{ "name": "curtain", "usphone": "'kə:tən", "ukphone": "", "trans": ["n.窗帘,幕布"] },
|
||||
{ "name": "material", "usphone": "mə'tiəriəl", "ukphone": "", "trans": ["n.材料"] },
|
||||
{ "name": "appreciate", "usphone": "ə'pri:ʃieit", "ukphone": "", "trans": ["v.鉴赏"] },
|
||||
{ "name": "notice", "usphone": "'nəutis", "ukphone": "", "trans": ["v.注意到"] },
|
||||
{ "name": "whether", "usphone": "'weeə", "ukphone": "", "trans": ["conj.是否"] },
|
||||
{ "name": "hang", "usphone": "hæŋ", "ukphone": "", "trans": ["v.悬挂,吊"] },
|
||||
{ "name": "critically", "usphone": "'kritikəli", "ukphone": "", "trans": ["ad.批评地"] },
|
||||
{ "name": "upside", "usphone": "'ʌpsaid", "ukphone": "", "trans": ["上下颠倒地"] },
|
||||
{ "name": "tent", "usphone": "tent", "ukphone": "", "trans": ["n.帐篷"] },
|
||||
{ "name": "field", "usphone": "fi:ld", "ukphone": "", "trans": ["n.田地,田野"] },
|
||||
{ "name": "smell", "usphone": "smel", "ukphone": "", "trans": ["v.闻起来"] },
|
||||
{ "name": "wonderful", "usphone": "'wʌndəful", "ukphone": "", "trans": ["a.极好的"] },
|
||||
{ "name": "campfire", "usphone": "'kæmpˌfaiə", "ukphone": "", "trans": ["n.营火,篝火"] },
|
||||
{ "name": "creep", "usphone": "kri:p", "ukphone": "", "trans": ["v.爬行"] },
|
||||
{ "name": "sleeping bag", "usphone": "'sli:piŋ", "ukphone": "", "trans": ["睡袋"] },
|
||||
{ "name": "comfortable", "usphone": "'kʌmfətəbəl", "ukphone": "", "trans": ["a.舒适的,安逸的"] },
|
||||
{ "name": "soundly", "usphone": "'sʌundli", "ukphone": "", "trans": ["ad.香甜地"] },
|
||||
{ "name": "leap", "usphone": "li:p", "ukphone": "", "trans": ["v.跳跃,跳起"] },
|
||||
{ "name": "heavily", "usphone": "'hevili", "ukphone": "", "trans": ["ad.大量地"] },
|
||||
{ "name": "stream", "usphone": "stri:m", "ukphone": "", "trans": ["n.小溪"] },
|
||||
{ "name": "form", "usphone": "fɔ:m", "ukphone": "", "trans": ["v.形成"] },
|
||||
{ "name": "wind", "usphone": "wind, waind", "ukphone": "", "trans": ["v.蜿蜒"] },
|
||||
{ "name": "right", "usphone": "rait", "ukphone": "", "trans": ["ad.正好"] },
|
||||
{ "name": "rare", "usphone": "reə", "ukphone": "", "trans": ["a.罕见的"] },
|
||||
{ "name": "ancient", "usphone": "'einʃənt", "ukphone": "", "trans": ["a.古代的,古老的"] },
|
||||
{ "name": "myth", "usphone": "miθ", "ukphone": "", "trans": ["n.神话故事"] },
|
||||
{ "name": "trouble", "usphone": "'trʌbəl", "ukphone": "", "trans": ["n.麻烦"] },
|
||||
{ "name": "effect", "usphone": "i'fekt", "ukphone": "", "trans": ["n.结果,效果"] },
|
||||
{ "name": "Medusa", "usphone": "mi'dju:zə", "ukphone": "", "trans": ["n.美杜莎(古希腊神话中位蛇发女怪之一)"] },
|
||||
{ "name": "Gorgon", "usphone": "'gɔ:gən", "ukphone": "", "trans": ["n.(古希腊神话中的)位蛇发女怪之一"] },
|
||||
{ "name": "taxi", "usphone": "'tæksi", "ukphone": "", "trans": ["n.出租汽车"] },
|
||||
{ "name": "Pilatus Porter", "ukphone": "", "trans": ["皮勒特斯·波特(飞机机名)"] },
|
||||
{ "name": "land", "usphone": "lænd", "ukphone": "", "trans": ["v.着陆"] },
|
||||
{ "name": "plough", "usphone": "plau", "ukphone": "", "trans": ["v.耕地"] },
|
||||
{ "name": "lonely", "usphone": "'ləunli", "ukphone": "", "trans": ["a.偏僻的,人迹罕至的"] },
|
||||
{ "name": "Welsh", "usphone": "welʃ", "ukphone": "", "trans": ["a.威尔士的"] },
|
||||
{ "name": "roof", "usphone": "ru:f", "ukphone": "", "trans": ["n.楼顶"] },
|
||||
{ "name": "block", "usphone": "blɔk", "ukphone": "", "trans": ["n.一座大楼"] },
|
||||
{ "name": "flat", "usphone": "flæt", "ukphone": "", "trans": ["n.公寓房"] },
|
||||
{ "name": "desert", "usphone": "'dezət", "ukphone": "", "trans": ["v.废弃"] },
|
||||
{ "name": "polo", "usphone": "'pəuləu", "ukphone": "", "trans": ["n.水球"] },
|
||||
{ "name": "cut", "usphone": "kʌt", "ukphone": "", "trans": ["v.穿过"] },
|
||||
{ "name": "row", "usphone": "rəu, rou", "ukphone": "", "trans": ["v.划(船)"] },
|
||||
{ "name": "kick", "usphone": "kik", "ukphone": "", "trans": ["v.踢"] },
|
||||
{ "name": "towards", "usphone": "tə'wɔ:dz", "ukphone": "", "trans": ["prep.朝,向"] },
|
||||
{ "name": "nearly", "usphone": "'niəli", "ukphone": "", "trans": ["ad.几乎"] },
|
||||
{ "name": "sight", "usphone": "sait", "ukphone": "", "trans": ["n.眼界,视域"] },
|
||||
{ "name": "retire", "usphone": "ri'taiə", "ukphone": "", "trans": ["v.退休"] },
|
||||
{ "name": "company", "usphone": "'kʌmpəni", "ukphone": "", "trans": ["n.公司"] },
|
||||
{ "name": "bicycle", "usphone": "'baisik(ə)l", "ukphone": "", "trans": ["n.自行车"] },
|
||||
{ "name": "save", "usphone": "seiv", "ukphone": "", "trans": ["v.积蓄"] },
|
||||
{ "name": "workshop", "usphone": "'wə:kʃɔp", "ukphone": "", "trans": ["n.车间"] },
|
||||
{ "name": "helper", "usphone": "'helpə", "ukphone": "", "trans": ["n.帮手,助手"] },
|
||||
{ "name": "employ", "usphone": "im'plɔi", "ukphone": "", "trans": ["v.雇佣"] },
|
||||
{ "name": "grandson", "usphone": "'grænsʌn", "ukphone": "", "trans": ["n.孙子"] },
|
||||
{ "name": "once", "usphone": "wʌns", "ukphone": "", "trans": ["ad.曾经,以前"] },
|
||||
{ "name": "temptation", "usphone": "temp'teiʃən", "ukphone": "", "trans": ["n.诱惑"] },
|
||||
{ "name": "article", "usphone": "'ɑ:tikəl", "ukphone": "", "trans": ["n.物品,东西"] },
|
||||
{ "name": "wrap", "usphone": "ræp", "ukphone": "", "trans": ["v.包裹"] },
|
||||
{ "name": "simply", "usphone": "'simpli", "ukphone": "", "trans": ["ad.仅仅"] },
|
||||
{ "name": "arrest", "usphone": "ə'rest", "ukphone": "", "trans": ["v.逮捕"] },
|
||||
{ "name": "darkness", "usphone": "'dɑ:knis", "ukphone": "", "trans": ["n.黑暗"] },
|
||||
{ "name": "explain", "usphone": "ik'splein", "ukphone": "", "trans": ["v.解释,叙述"] },
|
||||
{ "name": "coast", "usphone": "kəust", "ukphone": "", "trans": ["n.海岸"] },
|
||||
{ "name": "storm", "usphone": "stɔ:m", "ukphone": "", "trans": ["n.暴风雨"] },
|
||||
{ "name": "towards", "usphone": "tə'wɔ:dz", "ukphone": "", "trans": ["prep.接近"] },
|
||||
{ "name": "rock", "usphone": "rɔk", "ukphone": "", "trans": ["n.岩石,礁石"] },
|
||||
{ "name": "shore", "usphone": "ʃɔ:", "ukphone": "", "trans": ["n.海岸"] },
|
||||
{ "name": "light", "usphone": "lait", "ukphone": "", "trans": ["n.灯光"] },
|
||||
{ "name": "ahead", "usphone": "ə'hed", "ukphone": "", "trans": ["ad.在前面"] },
|
||||
{ "name": "cliff", "usphone": "klif", "ukphone": "", "trans": ["n.峭壁"] },
|
||||
{ "name": "struggle", "usphone": "'strʌgl", "ukphone": "", "trans": ["v.挣扎"] },
|
||||
{ "name": "hospital", "usphone": "'hɔspitl", "ukphone": "", "trans": ["n.医院"] },
|
||||
{ "name": "station", "usphone": "'steiʃən", "ukphone": "", "trans": ["n.(警察)局"] },
|
||||
{ "name": "most", "usphone": "məust", "ukphone": "", "trans": ["ad.相当,非常"] },
|
||||
{ "name": "while", "usphone": "wail", "ukphone": "", "trans": ["n.一段时间"] },
|
||||
{ "name": "regret", "usphone": "ri'gret", "ukphone": "", "trans": ["v.后悔"] },
|
||||
{ "name": "far", "usphone": "fɑ:", "ukphone": "", "trans": ["ad.非常"] },
|
||||
{ "name": "rush", "usphone": "rʌʃ", "ukphone": "", "trans": ["v.冲"] },
|
||||
{ "name": "act", "usphone": "ækt", "ukphone": "", "trans": ["v.行动"] },
|
||||
{ "name": "straight", "usphone": "streit", "ukphone": "", "trans": ["ad.径直"] },
|
||||
{ "name": "fright", "usphone": "frait", "ukphone": "", "trans": ["n.害怕"] },
|
||||
{ "name": "battered", "usphone": "'bætəd", "ukphone": "", "trans": ["a.撞坏的"] },
|
||||
{ "name": "shortly", "usphone": "'ʃɔ:tli", "ukphone": "", "trans": ["ad.很快,不久"] },
|
||||
{ "name": "afterwards", "usphone": "'a:ftəwədz", "ukphone": "", "trans": ["ad.以后"] },
|
||||
{ "name": "record", "usphone": "'rekɔ:d, ri'kɔ:d", "ukphone": "", "trans": ["n.记录"] },
|
||||
{ "name": "strong", "usphone": "strɔŋ", "ukphone": "", "trans": ["a.强壮的"] },
|
||||
{ "name": "swimmer", "usphone": "'swimə", "ukphone": "", "trans": ["n.游泳运动员"] },
|
||||
{ "name": "succeed", "usphone": "sək'si:d", "ukphone": "", "trans": ["v.成功"] },
|
||||
{ "name": "train", "usphone": "trein", "ukphone": "", "trans": ["v.训练"] },
|
||||
{ "name": "anxiously", "usphone": "'æŋkʃəsli", "ukphone": "", "trans": ["ad.焦急地"] },
|
||||
{ "name": "intend", "usphone": "in'tend", "ukphone": "", "trans": ["v.打算"] },
|
||||
{ "name": "solid", "usphone": "'sɔlid", "ukphone": "", "trans": ["a.固体的,硬的"] },
|
||||
{ "name": "Olympic", "usphone": "ə'limpik", "ukphone": "", "trans": ["a.奥林匹克的"] },
|
||||
{ "name": "hold", "usphone": "həuld", "ukphone": "", "trans": ["v.召开"] },
|
||||
{ "name": "government", "usphone": "'gʌvənmənt", "ukphone": "", "trans": ["n.政府"] },
|
||||
{ "name": "immense", "usphone": "i'mens", "ukphone": "", "trans": ["a.巨大的"] },
|
||||
{ "name": "stadium", "usphone": "'steidiəm", "ukphone": "", "trans": ["n.露天体育场"] },
|
||||
{ "name": "standard", "usphone": "'stændəd", "ukphone": "", "trans": ["n.标准"] },
|
||||
{ "name": "capital", "usphone": "'kæpitl", "ukphone": "", "trans": ["n.首都"] },
|
||||
{ "name": "fantastic", "usphone": "fæn'tæstik", "ukphone": "", "trans": ["a.巨大的"] },
|
||||
{ "name": "design", "usphone": "di'zain", "ukphone": "", "trans": ["v.设计"] },
|
||||
{ "name": "except", "usphone": "ik'sept", "ukphone": "", "trans": ["prep.除了"] },
|
||||
{ "name": "Mediterranean", "usphone": "ˌmeditə'reiniən", "ukphone": "", "trans": ["n.(the~)地中海"] },
|
||||
{ "name": "complain", "usphone": "kəm'plein", "ukphone": "", "trans": ["v.抱怨"] },
|
||||
{ "name": "continually", "usphone": "kən'tinjuəli", "ukphone": "", "trans": ["ad.不断地"] },
|
||||
{ "name": "bitterly", "usphone": "'bitəli", "ukphone": "", "trans": ["ad.刺骨地"] },
|
||||
{ "name": "sunshine", "usphone": "'sʌnʃain", "ukphone": "", "trans": ["n.阳光"] },
|
||||
{ "name": "operation", "usphone": "ˌɔpə'reiʃən", "ukphone": "", "trans": ["n.手术"] },
|
||||
{ "name": "successful", "usphone": "sək'sesfəl", "ukphone": "", "trans": ["a.成功的"] },
|
||||
{ "name": "following", "usphone": "'fɔləuiŋ", "ukphone": "", "trans": ["a.下一个"] },
|
||||
{ "name": "patient", "usphone": "'peiʃənt", "ukphone": "", "trans": ["n.病人"] },
|
||||
{ "name": "alone", "usphone": "ə'ləun", "ukphone": "", "trans": ["a.独自的"] },
|
||||
{ "name": "exchange", "usphone": "iks'tʃeindʒ", "ukphone": "", "trans": ["n.(电话的)交换台"] },
|
||||
{ "name": "inquire", "usphone": "in'kwaiə", "ukphone": "", "trans": ["v.询问,打听"] },
|
||||
{ "name": "certain", "usphone": "'sə:tən", "ukphone": "", "trans": ["a.某个"] },
|
||||
{ "name": "caller", "usphone": "'kɔ:lə", "ukphone": "", "trans": ["n.打电话的人"] },
|
||||
{ "name": "relative", "usphone": "'relətiv", "ukphone": "", "trans": ["n.亲戚"] },
|
||||
{ "name": "hostess", "usphone": "'həustis", "ukphone": "", "trans": ["n.女主人"] },
|
||||
{ "name": "unsmiling", "usphone": "'ʌn'smailiŋ", "ukphone": "", "trans": ["a.不笑的,严肃的"] },
|
||||
{ "name": "tight", "usphone": "tait", "ukphone": "", "trans": ["a.紧身的"] },
|
||||
{ "name": "fix", "usphone": "fiks", "ukphone": "", "trans": ["v.疑视"] },
|
||||
{ "name": "globe", "usphone": "gləub", "ukphone": "", "trans": ["n.地球"] },
|
||||
{ "name": "despair", "usphone": "di'speə", "ukphone": "", "trans": ["n.绝望"] },
|
||||
{ "name": "rude", "usphone": "ru:d", "ukphone": "", "trans": ["a.无礼的"] },
|
||||
{ "name": "mirror", "usphone": "'mirə", "ukphone": "", "trans": ["n.镜子"] },
|
||||
{ "name": "hole", "usphone": "həul", "ukphone": "", "trans": ["n.孔"] },
|
||||
{ "name": "remark", "usphone": "ri'mɑ:k", "ukphone": "", "trans": ["v.评说"] },
|
||||
{ "name": "remind", "usphone": "ri'maind", "ukphone": "", "trans": ["v.提醒"] },
|
||||
{ "name": "lighthouse", "usphone": "'laithaus", "ukphone": "", "trans": ["n.灯塔"] },
|
||||
{ "name": "musical", "usphone": "'mju:zikəl", "ukphone": "", "trans": ["a.精通音乐的"] },
|
||||
{ "name": "market", "usphone": "'mɑ:kit", "ukphone": "", "trans": ["n.市场,集市"] },
|
||||
{ "name": "snake", "usphone": "sneik", "ukphone": "", "trans": ["玩蛇者(通常借音乐控制)"] },
|
||||
{ "name": "pipe", "usphone": "paip", "ukphone": "", "trans": ["n.(吹奏地)管乐器"] },
|
||||
{ "name": "tune", "usphone": "tju:n, tu:n", "ukphone": "", "trans": ["n.曲调"] },
|
||||
{ "name": "glimpse", "usphone": "glimps", "ukphone": "", "trans": ["n.一瞥"] },
|
||||
{ "name": "snake", "usphone": "sneik", "ukphone": "", "trans": ["n.蛇"] },
|
||||
{ "name": "movement", "usphone": "'mu:vmənt", "ukphone": "", "trans": ["n.动作"] },
|
||||
{ "name": "continue", "usphone": "kən'tinju:", "ukphone": "", "trans": ["v.继续"] },
|
||||
{ "name": "dance", "usphone": "dɑ:ns", "ukphone": "", "trans": ["v.跳舞"] },
|
||||
{ "name": "obviously", "usphone": "'ɔbviəsli", "ukphone": "", "trans": ["ad.显然"] },
|
||||
{ "name": "difference", "usphone": "'difrəns", "ukphone": "", "trans": ["n.差别"] },
|
||||
{ "name": "Indian", "usphone": "'indiən", "ukphone": "", "trans": ["a.印度的"] },
|
||||
{ "name": "pole", "usphone": "pəul", "ukphone": "", "trans": ["n.(地球的)极"] },
|
||||
{ "name": "flight", "usphone": "flait", "ukphone": "", "trans": ["n.飞行"] },
|
||||
{ "name": "explorer", "usphone": "ik'splɔ:rə", "ukphone": "", "trans": ["n.探险家"] },
|
||||
{ "name": "lie", "usphone": "lai", "ukphone": "", "trans": ["v.处于"] },
|
||||
{ "name": "serious", "usphone": "'siəriəs", "ukphone": "", "trans": ["a.严重的"] },
|
||||
{ "name": "point", "usphone": "pɔint", "ukphone": "", "trans": ["n.地点"] },
|
||||
{ "name": "seem", "usphone": "si:m", "ukphone": "", "trans": ["v.似乎,好像"] },
|
||||
{ "name": "crash", "usphone": "kræʃ", "ukphone": "", "trans": ["v.坠毁"] },
|
||||
{ "name": "sack", "usphone": "sæk", "ukphone": "", "trans": ["n.袋子"] },
|
||||
{ "name": "clear", "usphone": "kliə", "ukphone": "", "trans": ["v.越过"] },
|
||||
{ "name": "aircraft", "usphone": "'eəkrɑ:ft", "ukphone": "", "trans": ["n.飞机"] },
|
||||
{ "name": "endless", "usphone": "'endlis", "ukphone": "", "trans": ["a.无尽的"] },
|
||||
{ "name": "plain", "usphone": "plein", "ukphone": "", "trans": ["n.平原"] },
|
||||
{ "name": "forest", "usphone": "'fɔrist", "ukphone": "", "trans": ["n.森林"] },
|
||||
{ "name": "risk", "usphone": "risk", "ukphone": "", "trans": ["n.危险,冒险"] },
|
||||
{ "name": "picnic", "usphone": "'piknik", "ukphone": "", "trans": ["n.野餐"] },
|
||||
{ "name": "edge", "usphone": "edʒ", "ukphone": "", "trans": ["n.边缘"] },
|
||||
{ "name": "strap", "usphone": "stræp", "ukphone": "", "trans": ["n.带,皮带"] },
|
||||
{ "name": "possession", "usphone": "pə'zeʃən", "ukphone": "", "trans": ["n.所有"] },
|
||||
{ "name": "breath", "usphone": "breθ", "ukphone": "", "trans": ["n.呼吸"] },
|
||||
{ "name": "contents", "usphone": "'kɔ:ntents", "ukphone": "", "trans": ["n.(常用复数)内有的物品"] },
|
||||
{ "name": "mend", "usphone": "mend", "ukphone": "", "trans": ["v.修理"] },
|
||||
{ "name": "clear", "usphone": "kliə", "ukphone": "", "trans": ["a.无罪的,不亏心的"] },
|
||||
{ "name": "conscience", "usphone": "'kɔnʃəns", "ukphone": "", "trans": ["n.良心,道德心"] },
|
||||
{ "name": "wallet", "usphone": "'wɑ:lit", "ukphone": "", "trans": ["n.皮夹,钱夹"] },
|
||||
{ "name": "savings", "usphone": "'seiviŋz", "ukphone": "", "trans": ["n.存款"] },
|
||||
{ "name": "villager", "usphone": "'vilidʒə", "ukphone": "", "trans": ["n.村民"] },
|
||||
{ "name": "per cent", "usphone": "pə'sent", "ukphone": "", "trans": ["百分之…"] },
|
||||
{ "name": "unload", "usphone": "ʌn'ləud", "ukphone": "", "trans": ["v.卸(货)"] },
|
||||
{ "name": "wooden", "usphone": "'wudn", "ukphone": "", "trans": ["a.木制的"] },
|
||||
{ "name": "extremely", "usphone": "ik'stri:mli", "ukphone": "", "trans": ["ad.非常,极其"] },
|
||||
{ "name": "occur", "usphone": "ə'kə:", "ukphone": "", "trans": ["v.发生"] },
|
||||
{ "name": "astonish", "usphone": "ə'stɔniʃ", "ukphone": "", "trans": ["v.使惊讶"] },
|
||||
{ "name": "pile", "usphone": "pail", "ukphone": "", "trans": ["n.堆"] },
|
||||
{ "name": "woollen", "usphone": "'wulən", "ukphone": "", "trans": ["n.羊毛的"] },
|
||||
{ "name": "goods", "usphone": "gudz", "ukphone": "", "trans": ["n.(常用复数)货物,商品"] },
|
||||
{ "name": "discover", "usphone": "dis'kʌvə", "ukphone": "", "trans": ["v.发现"] },
|
||||
{ "name": "admit", "usphone": "əd'mit", "ukphone": "", "trans": ["v.承认"] },
|
||||
{ "name": "confine", "usphone": "kən'fain", "ukphone": "", "trans": ["v.关在(一个狭小的空间里)"] },
|
||||
{ "name": "normal", "usphone": "'nɔ:məl", "ukphone": "", "trans": ["a.正常的,通常的"] },
|
||||
{ "name": "thirsty", "usphone": "'θə:sti", "ukphone": "", "trans": ["a.贪杯的"] },
|
||||
{ "name": "ghost", "usphone": "gəust", "ukphone": "", "trans": ["n.鬼魂"] },
|
||||
{ "name": "haunt", "usphone": "hɔ:nt", "ukphone": "", "trans": ["v.(鬼)来访,闹鬼"] },
|
||||
{ "name": "block", "usphone": "blɔk", "ukphone": "", "trans": ["v.堵"] },
|
||||
{ "name": "furniture", "usphone": "'fə:nitʃə", "ukphone": "", "trans": ["n.家具"] },
|
||||
{ "name": "whisky", "usphone": "'wiski", "ukphone": "", "trans": ["n.威士忌酒"] },
|
||||
{ "name": "suggest", "usphone": "sə'dʒest", "ukphone": "", "trans": ["v.暗示"] },
|
||||
{ "name": "shake", "usphone": "ʃeik", "ukphone": "", "trans": ["v.摇动"] },
|
||||
{ "name": "accept", "usphone": "ək'sept", "ukphone": "", "trans": ["v.接受"] },
|
||||
{ "name": "pull", "usphone": "pul", "ukphone": "", "trans": ["v.拔"] },
|
||||
{ "name": "cotton", "usphone": "'kɔtn", "ukphone": "", "trans": ["药棉"] },
|
||||
{ "name": "collect", "usphone": "kə'lekt", "ukphone": "", "trans": ["v.搜集"] },
|
||||
{ "name": "collection", "usphone": "kə'lekʃən", "ukphone": "", "trans": ["n.收藏品,收集品"] },
|
||||
{ "name": "nod", "usphone": "nɔd", "ukphone": "", "trans": ["v.点头"] },
|
||||
{ "name": "meanwhile", "usphone": "'mi:n'wail", "ukphone": "", "trans": ["ad.同时"] },
|
||||
{ "name": "tired", "usphone": "'taiəd", "ukphone": "", "trans": ["a.厌烦的"] },
|
||||
{ "name": "real", "usphone": "riəl", "ukphone": "", "trans": ["a.真正的"] },
|
||||
{ "name": "owner", "usphone": "'əunə", "ukphone": "", "trans": ["n.主人"] },
|
||||
{ "name": "spring", "usphone": "spriŋ", "ukphone": "", "trans": ["n.弹簧"] },
|
||||
{ "name": "mattress", "usphone": "'mætris", "ukphone": "", "trans": ["n.床垫"] },
|
||||
{ "name": "gust", "usphone": "gʌst", "ukphone": "", "trans": ["n.一阵风"] },
|
||||
{ "name": "sweep", "usphone": "swi:p", "ukphone": "", "trans": ["v.扫,刮"] },
|
||||
{ "name": "courtyard", "usphone": "'kɔ:tjɑ:d", "ukphone": "", "trans": ["n.院子"] },
|
||||
{ "name": "smash", "usphone": "smæʃ", "ukphone": "", "trans": ["v.碰碎,摔碎"] },
|
||||
{ "name": "miraculously", "usphone": "mi'rækjuləsli", "ukphone": "", "trans": ["ad.奇迹般地"] },
|
||||
{ "name": "unhurt", "usphone": "ʌn'hə:t", "ukphone": "", "trans": ["a.没有受伤的"] },
|
||||
{ "name": "glance", "usphone": "glɑ:ns", "ukphone": "", "trans": ["v.扫视"] },
|
||||
{ "name": "promptly", "usphone": "'prɔmptli", "ukphone": "", "trans": ["ad. 迅速地"] },
|
||||
{ "name": "ride", "usphone": "raid", "ukphone": "", "trans": ["n.旅行"] },
|
||||
{ "name": "excursion", "usphone": "ik'skə:ʃən", "ukphone": "", "trans": ["n.远足"] },
|
||||
{ "name": "conductor", "usphone": "kən'dʌktə", "ukphone": "", "trans": ["n.售票员"] },
|
||||
{ "name": "view", "usphone": "vju:", "ukphone": "", "trans": ["n.景色"] },
|
||||
{ "name": "reward", "usphone": "ri'wɔ:d", "ukphone": "", "trans": ["n.报偿"] },
|
||||
{ "name": "virtue", "usphone": "'və:tʃu:", "ukphone": "", "trans": ["n.美德"] },
|
||||
{ "name": "diet", "usphone": "'daiət", "ukphone": "", "trans": ["n.节食"] },
|
||||
{ "name": "forbid", "usphone": "fə'bid", "ukphone": "", "trans": ["v.禁止"] },
|
||||
{ "name": "hurriedly", "usphone": "'hʌridli", "ukphone": "", "trans": ["ad.匆忙地"] },
|
||||
{ "name": "embarrass", "usphone": "im'bærəs", "ukphone": "", "trans": ["v.使尴尬"] },
|
||||
{ "name": "guiltily", "usphone": "'giltili", "ukphone": "", "trans": ["ad.内疚地"] },
|
||||
{ "name": "strict", "usphone": "strikt", "ukphone": "", "trans": ["a.严格的"] },
|
||||
{ "name": "reward", "usphone": "ri'wɔ:d", "ukphone": "", "trans": ["v.给奖赏"] },
|
||||
{ "name": "occasionally", "usphone": "ə'keiʒənəli", "ukphone": "", "trans": ["ad.偶尔地"] },
|
||||
{ "name": "temporarily", "usphone": "'tempərərili", "ukphone": "", "trans": ["ad.暂时地"] },
|
||||
{ "name": "inch", "usphone": "intʃ", "ukphone": "", "trans": ["n.英寸(度量单位)"] },
|
||||
{ "name": "space", "usphone": "speis", "ukphone": "", "trans": ["n.空间"] },
|
||||
{ "name": "actually", "usphone": "'æktʃuəli", "ukphone": "", "trans": ["ad.实际上"] },
|
||||
{ "name": "hot", "usphone": "hɔt", "ukphone": "", "trans": ["a.带电的,充电的"] },
|
||||
{ "name": "fireman", "usphone": "'faiəmən", "ukphone": "", "trans": ["n.消防队员"] },
|
||||
{ "name": "cause", "usphone": "kɔ:z", "ukphone": "", "trans": ["v.引起 n.原因"] },
|
||||
{ "name": "examine", "usphone": "ig'zæmin", "ukphone": "", "trans": ["v.检查"] },
|
||||
{ "name": "a ccidentally", "usphone": "ˌæksi'dentəli", "ukphone": "", "trans": ["d.意外地,偶然地"] },
|
||||
{ "name": "remains", "usphone": "ri'meinz", "ukphone": "", "trans": ["n.尸体,残骸"] },
|
||||
{ "name": "wire", "usphone": "'waiə", "ukphone": "", "trans": ["n.电线"] },
|
||||
{ "name": "volt", "usphone": "vəult", "ukphone": "", "trans": ["n.伏特(电压单位)"] },
|
||||
{ "name": "power line", "ukphone": "", "trans": ["电力线"] },
|
||||
{ "name": "solve", "usphone": "sɔlv", "ukphone": "", "trans": ["v.解决"] },
|
||||
{ "name": "mystery", "usphone": "'mistəri", "ukphone": "", "trans": ["n.谜"] },
|
||||
{ "name": "snatch", "usphone": "snætʃ", "ukphone": "", "trans": ["v.抓住"] },
|
||||
{ "name": "spark", "usphone": "spɑ:k", "ukphone": "", "trans": ["n.电火花"] },
|
||||
{ "name": "sticky", "usphone": "'stiki", "ukphone": "", "trans": ["a.粘的"] },
|
||||
{ "name": "finger", "usphone": "'fiŋgə", "ukphone": "", "trans": ["n.手指"] },
|
||||
{ "name": "pie", "usphone": "pai", "ukphone": "", "trans": ["n.馅饼"] },
|
||||
{ "name": "mix", "usphone": "miks", "ukphone": "", "trans": ["v.混合,拌和"] },
|
||||
{ "name": "pastry", "usphone": "'peistri", "ukphone": "", "trans": ["n.面糊"] },
|
||||
{ "name": "annoying", "usphone": "ə'nɔiiŋ", "ukphone": "", "trans": ["a.恼人的"] },
|
||||
{ "name": "receiver", "usphone": "ri'si:və", "ukphone": "", "trans": ["n.电话的话筒"] },
|
||||
{ "name": "dismay", "usphone": "dis'mei", "ukphone": "", "trans": ["v.失望,泄气"] },
|
||||
{ "name": "recognize", "usphone": "'rekəgnaiz", "ukphone": "", "trans": ["v.认出,听出"] },
|
||||
{ "name": "persuade", "usphone": "pə'sweid", "ukphone": "", "trans": ["v.说服,劝说"] },
|
||||
{ "name": "mess", "usphone": "mes", "ukphone": "", "trans": ["n.乱七八糟"] },
|
||||
{ "name": "doorknob", "usphone": "'dɔ:nɔb", "ukphone": "", "trans": ["n.门把手"] },
|
||||
{ "name": "sign", "usphone": "sain", "ukphone": "", "trans": ["v.签字"] },
|
||||
{ "name": "register", "usphone": "'redʒistə", "ukphone": "", "trans": ["v.挂号邮寄"] },
|
||||
{ "name": "gold", "usphone": "gəuld", "ukphone": "", "trans": ["n.金子"] },
|
||||
{ "name": "mine", "usphone": "main", "ukphone": "", "trans": ["n.矿"] },
|
||||
{ "name": "treasure", "usphone": "'treʒə", "ukphone": "", "trans": ["n.财宝"] },
|
||||
{ "name": "revealer", "usphone": "ri'vi:lə", "ukphone": "", "trans": ["n.探测器"] },
|
||||
{ "name": "invent", "usphone": "in'vent", "ukphone": "", "trans": ["v.发明"] },
|
||||
{ "name": "detect", "usphone": "di'tekt", "ukphone": "", "trans": ["v.探测"] },
|
||||
{ "name": "bury", "usphone": "'beri", "ukphone": "", "trans": ["v.埋藏"] },
|
||||
{ "name": "cave", "usphone": "keiv", "ukphone": "", "trans": ["n.山洞"] },
|
||||
{ "name": "seashore", "usphone": "'si:ʃɔ:", "ukphone": "", "trans": ["n.海岸"] },
|
||||
{ "name": "pirate", "usphone": "'paiərət", "ukphone": "", "trans": ["n.海盗"] },
|
||||
{ "name": "arm", "usphone": "ɑ:m", "ukphone": "", "trans": ["v.武装"] },
|
||||
{ "name": "soil", "usphone": "sɔil", "ukphone": "", "trans": ["n.泥土"] },
|
||||
{ "name": "entrance", "usphone": "'entrəns", "ukphone": "", "trans": ["n.入口"] },
|
||||
{ "name": "finally", "usphone": "'fainəli", "ukphone": "", "trans": ["ad.最后"] },
|
||||
{ "name": "worthless", "usphone": "'wə:θləs", "ukphone": "", "trans": ["a.毫无价值的"] },
|
||||
{ "name": "thoroughly", "usphone": "'θʌrəli", "ukphone": "", "trans": ["ad.彻底地"] },
|
||||
{ "name": "trunk", "usphone": "trʌŋk", "ukphone": "", "trans": ["n.行李箱"] },
|
||||
{ "name": "confident", "usphone": "'kɔnfidənt", "ukphone": "", "trans": ["a.有信心的"] },
|
||||
{ "name": "value", "usphone": "'vælju:", "ukphone": "", "trans": ["n.价值"] },
|
||||
{ "name": "sound", "usphone": "saund", "ukphone": "", "trans": ["n.声音"] },
|
||||
{ "name": "excitement", "usphone": "ik'saitmənt", "ukphone": "", "trans": ["n.激动,兴奋"] },
|
||||
{ "name": "handsome", "usphone": "'hændsəm", "ukphone": "", "trans": ["a.漂亮的,美观的"] },
|
||||
{ "name": "Rolls-Royce", "usphone": "'rəʊlz'rɔis", "ukphone": "", "trans": ["罗尔斯—罗伊斯"] },
|
||||
{ "name": "Benz n.", "ukphone": "", "trans": ["奔驰"] },
|
||||
{ "name": "wheel", "usphone": "wi:l", "ukphone": "", "trans": ["n.轮子"] },
|
||||
{ "name": "explosion", "usphone": "ik'spləuʒən", "ukphone": "", "trans": ["n.爆炸,轰响"] },
|
||||
{ "name": "course", "usphone": "kɔ:s", "ukphone": "", "trans": ["n.跑道;行程"] },
|
||||
{ "name": "rival", "usphone": "'raivəl", "ukphone": "", "trans": ["n.对手"] },
|
||||
{ "name": "speed", "usphone": "spi:d", "ukphone": "", "trans": ["v.疾驶"] },
|
||||
{ "name": "downhill", "usphone": "ˌdaun'hil", "ukphone": "", "trans": ["ad.下坡"] },
|
||||
{ "name": "madam", "usphone": "'mædəm", "ukphone": "", "trans": ["n.(对妇女的尊称)太太,夫人"] },
|
||||
{ "name": "jeans", "usphone": "dʒi:nz", "ukphone": "", "trans": ["n.牛仔裤"] },
|
||||
{ "name": "hesitate", "usphone": "'heziteit", "ukphone": "", "trans": ["v.犹豫,迟疑"] },
|
||||
{ "name": "serve", "usphone": "sə:v", "ukphone": "", "trans": ["v.接待(顾客)"] },
|
||||
{ "name": "scornfully", "usphone": "'skɔ:nfuli", "ukphone": "", "trans": ["ad.轻蔑地"] },
|
||||
{ "name": "punish", "usphone": "'pʌniʃ", "ukphone": "", "trans": ["v.惩罚"] },
|
||||
{ "name": "fur", "usphone": "fə:", "ukphone": "", "trans": ["n.裘皮"] },
|
||||
{ "name": "eager", "usphone": "'i:gə", "ukphone": "", "trans": ["a.热切的,热情的"] },
|
||||
{ "name": "blessing", "usphone": "'blesiŋ", "ukphone": "", "trans": ["n.福分,福气"] },
|
||||
{ "name": "disguise", "usphone": "dis'gaiz", "ukphone": "", "trans": ["n.伪装"] },
|
||||
{ "name": "tiny", "usphone": "'taini", "ukphone": "", "trans": ["a.极小的"] },
|
||||
{ "name": "possess", "usphone": "pə'zes", "ukphone": "", "trans": ["v.拥有"] },
|
||||
{ "name": "cursed", "usphone": "'kə:sid", "ukphone": "", "trans": ["a.可恨的"] },
|
||||
{ "name": "increase", "usphone": "in'kri:s, 'inkri:s", "ukphone": "", "trans": ["v.增加"] },
|
||||
{ "name": "plant", "usphone": "plɑ:nt", "ukphone": "", "trans": ["v.种值"] },
|
||||
{ "name": "church", "usphone": "tʃə:tʃ", "ukphone": "", "trans": ["n.教堂"] },
|
||||
{ "name": "evil", "usphone": "'i:vəl", "ukphone": "", "trans": ["a.坏的"] },
|
||||
{ "name": "reputation", "usphone": "repju'teiʃən", "ukphone": "", "trans": ["n.名声"] },
|
||||
{ "name": "claim", "usphone": "kleim", "ukphone": "", "trans": ["v.以…为其后果"] },
|
||||
{ "name": "victim", "usphone": "'viktim", "ukphone": "", "trans": ["n.受害者,牺牲品"] },
|
||||
{ "name": "vicar", "usphone": "'vikə", "ukphone": "", "trans": ["n.教区牧师"] },
|
||||
{ "name": "source", "usphone": "sɔ:s", "ukphone": "", "trans": ["n.来源"] },
|
||||
{ "name": "income", "usphone": "'inkʌm", "ukphone": "", "trans": ["n.收入"] },
|
||||
{ "name": "trunk", "usphone": "trʌŋk", "ukphone": "", "trans": ["n.树干"] },
|
||||
{ "name": "bark", "usphone": "bɑ:k", "ukphone": "", "trans": ["v.狗叫"] },
|
||||
{ "name": "press", "usphone": "pres", "ukphone": "", "trans": ["v.按压"] },
|
||||
{ "name": "paw", "usphone": "pɔ:", "ukphone": "", "trans": ["n.脚爪"] },
|
||||
{ "name": "latch", "usphone": "lætʃ", "ukphone": "", "trans": ["n.门闩"] },
|
||||
{ "name": "expert", "usphone": "'ekspə:t", "ukphone": "", "trans": ["n.专家"] },
|
||||
{ "name": "develop", "usphone": "di'veləp", "ukphone": "", "trans": ["v.养成"] },
|
||||
{ "name": "habit", "usphone": "'hæbit", "ukphone": "", "trans": ["n.习惯"] },
|
||||
{ "name": "remove", "usphone": "ri'mu:v", "ukphone": "", "trans": ["v.拆掉,取下"] },
|
||||
{ "name": "future", "usphone": "'fju:tʃə", "ukphone": "", "trans": ["n.未来,前途"] },
|
||||
{ "name": "fair", "usphone": "feə", "ukphone": "", "trans": ["n.集市"] },
|
||||
{ "name": "fortune-teller", "usphone": "'fɔ:tʃən'telə", "ukphone": "", "trans": ["n.算命人"] },
|
||||
{ "name": "crystal", "usphone": "'kristəl", "ukphone": "", "trans": ["n.水晶"] },
|
||||
{ "name": "relation", "usphone": "ri'leiʃən", "ukphone": "", "trans": ["n.亲属"] },
|
||||
{ "name": "impatiently", "usphone": "im'peiʃəntli", "ukphone": "", "trans": ["ad.不耐烦地"] },
|
||||
{ "name": "Hubble", "usphone": "'hʌbl", "ukphone": "", "trans": ["n.哈勃"] },
|
||||
{ "name": "telescope", "usphone": "'teliskəup", "ukphone": "", "trans": ["n.望远镜"] },
|
||||
{ "name": "launch", "usphone": "lɔ:ntʃ", "ukphone": "", "trans": ["v.发射"] },
|
||||
{ "name": "space", "usphone": "speis", "ukphone": "", "trans": ["n.空间"] },
|
||||
{ "name": "NASA", "usphone": "'næsə", "ukphone": "", "trans": ["国家航空和宇宙航行局"] },
|
||||
{ "name": "billion", "usphone": "'biljən", "ukphone": "", "trans": ["n.亿"] },
|
||||
{ "name": "faulty", "usphone": "'fɔ:lti", "ukphone": "", "trans": ["a.有错误的"] },
|
||||
{ "name": "astronaut", "usphone": "'æstrənɔ:t", "ukphone": "", "trans": ["n.宇航员"] },
|
||||
{ "name": "shuttle", "usphone": "'ʃʌtl", "ukphone": "", "trans": ["n.宇航飞机"] },
|
||||
{ "name": "Endeavour", "usphone": "in'devə", "ukphone": "", "trans": ["n.“奋进”号"] },
|
||||
{ "name": "robot-arm n.", "ukphone": "", "trans": ["机器手"] },
|
||||
{ "name": "grab", "usphone": "græb", "ukphone": "", "trans": ["v.抓"] },
|
||||
{ "name": "atmosphere", "usphone": "'ætməsfiə", "ukphone": "", "trans": ["n.大气层"] },
|
||||
{ "name": "distant", "usphone": "'distənt", "ukphone": "", "trans": ["a.遥远的"] },
|
||||
{ "name": "galaxy", "usphone": "'gæləkəsi", "ukphone": "", "trans": ["n.星系"] },
|
||||
{ "name": "universe", "usphone": "'ju:nivə:s", "ukphone": "", "trans": ["n.宇宙"] },
|
||||
{ "name": "eagle eye", "ukphone": "", "trans": ["鹰眼"] },
|
||||
{ "name": "control", "usphone": "kən'trəul", "ukphone": "", "trans": ["n.控制"] },
|
||||
{ "name": "smoke", "usphone": "sməuk", "ukphone": "", "trans": ["n.烟"] },
|
||||
{ "name": "desolate", "usphone": "'desəleit", "ukphone": "", "trans": ["a.荒凉的"] },
|
||||
{ "name": "threaten", "usphone": "'θretn", "ukphone": "", "trans": ["v.威胁"] },
|
||||
{ "name": "surrounding", "usphone": "sə'raundiŋ", "ukphone": "", "trans": ["a.周围的"] },
|
||||
{ "name": "destruction", "usphone": "di'strʌkʃən", "ukphone": "", "trans": ["n.破坏,毁灭"] },
|
||||
{ "name": "flood", "usphone": "flʌd", "ukphone": "", "trans": ["n.洪水,水灾"] },
|
||||
{ "name": "authority", "usphone": "ɔ:'θɔriti", "ukphone": "", "trans": ["n.(常用复数)当局"] },
|
||||
{ "name": "grass-seed", "usphone": "'gra:s'si:d", "ukphone": "", "trans": ["n.草籽"] },
|
||||
{ "name": "spray", "usphone": "sprei", "ukphone": "", "trans": ["v.喷撒"] },
|
||||
{ "name": "quantity", "usphone": "'kwɔntəti", "ukphone": "", "trans": ["n.量"] },
|
||||
{ "name": "root", "usphone": "ru:t", "ukphone": "", "trans": ["n.根"] },
|
||||
{ "name": "century", "usphone": "'sentʃəri", "ukphone": "", "trans": ["n.世纪"] },
|
||||
{ "name": "patch", "usphone": "pætʃ", "ukphone": "", "trans": ["n.小片"] },
|
||||
{ "name": "blacken", "usphone": "'blækən", "ukphone": "", "trans": ["v.变黑,发暗"] },
|
||||
{ "name": "circle", "usphone": "'sə:kəl", "ukphone": "", "trans": ["n.圈子"] },
|
||||
{ "name": "admire", "usphone": "əd'maiə", "ukphone": "", "trans": ["v.赞美,钦佩"] },
|
||||
{ "name": "close", "usphone": "kləuz", "ukphone": "", "trans": ["a.亲密的"] },
|
||||
{ "name": "wedding", "usphone": "'wediŋ", "ukphone": "", "trans": ["n.婚礼"] },
|
||||
{ "name": "reception", "usphone": "ri'sepʃən", "ukphone": "", "trans": ["n.执行会"] },
|
||||
{ "name": "sort", "usphone": "sɔ:t", "ukphone": "", "trans": ["n.种类"] },
|
||||
{ "name": "tunnel", "usphone": "'tʌnl", "ukphone": "", "trans": ["n.隧道"] },
|
||||
{ "name": "port", "usphone": "pɔ:t", "ukphone": "", "trans": ["n.港口"] },
|
||||
{ "name": "ventilate", "usphone": "'ventileit", "ukphone": "", "trans": ["v.通风"] },
|
||||
{ "name": "chimney", "usphone": "'tʃimni", "ukphone": "", "trans": ["n.烟囱"] },
|
||||
{ "name": "sea level", "ukphone": "", "trans": ["海平面"] },
|
||||
{ "name": "double", "usphone": "'dʌbəl", "ukphone": "", "trans": ["a.双的"] },
|
||||
{ "name": "ventilation", "usphone": "ˌventi'leiʃən", "ukphone": "", "trans": ["n.通风"] },
|
||||
{ "name": "fear", "usphone": "fiə", "ukphone": "", "trans": ["v.害怕"] },
|
||||
{ "name": "invasion", "usphone": "in'veiʒən", "ukphone": "", "trans": ["n.入侵,侵略"] },
|
||||
{ "name": "officially", "usphone": "ə'fiʃəli", "ukphone": "", "trans": ["ad.正式地"] },
|
||||
{ "name": "connect", "usphone": "kə'nekt", "ukphone": "", "trans": ["v.连接"] },
|
||||
{ "name": "European", "usphone": "juərə'pi:ən", "ukphone": "", "trans": ["a.欧洲的"] },
|
||||
{ "name": "continent", "usphone": "'kɔntinənt", "ukphone": "", "trans": ["n.大陆"] },
|
||||
{ "name": "versus", "usphone": "'və:səs", "ukphone": "", "trans": ["prep.对"] },
|
||||
{ "name": "Christmas", "usphone": "'krisməs", "ukphone": "", "trans": ["n.圣诞节"] },
|
||||
{ "name": "circus", "usphone": "'sə:kəs", "ukphone": "", "trans": ["n.马戏团"] },
|
||||
{ "name": "present", "usphone": "pri'zent, 'prezənt", "ukphone": "", "trans": ["n.礼物"] },
|
||||
{ "name": "accompany", "usphone": "ə'kʌmpəni", "ukphone": "", "trans": ["v.陪伴,随行"] },
|
||||
{ "name": "approach", "usphone": "ə'prəutʃ", "ukphone": "", "trans": ["v.走近"] },
|
||||
{ "name": "ought", "usphone": "ɔ:t", "ukphone": "", "trans": ["modal verb 应该"] },
|
||||
{ "name": "weigh", "usphone": "wei", "ukphone": "", "trans": ["v.重"] },
|
||||
{ "name": "fortunate", "usphone": "'fɔ:tʃənət", "ukphone": "", "trans": ["a.幸运的"] },
|
||||
{ "name": "Lancaster", "usphone": "'læŋkəstə", "ukphone": "", "trans": ["n.兰开斯特"] },
|
||||
{ "name": "bomber", "usphone": "'bɔmə", "ukphone": "", "trans": ["n.轰炸机"] },
|
||||
{ "name": "remote", "usphone": "ri'məut", "ukphone": "", "trans": ["a.偏僻的"] },
|
||||
{ "name": "Pacific", "usphone": "pə'sifik", "ukphone": "", "trans": ["n.太平洋"] },
|
||||
{ "name": "damage", "usphone": "'dæmidʒ", "ukphone": "", "trans": ["v.毁坏"] },
|
||||
{ "name": "wreck", "usphone": "rek", "ukphone": "", "trans": ["n.残骸"] },
|
||||
{ "name": "rediscover", "usphone": "ri:di'skʌvə", "ukphone": "", "trans": ["v.重新发现"] },
|
||||
{ "name": "aerial", "usphone": "'eəriəl", "ukphone": "", "trans": ["a.航空的"] },
|
||||
{ "name": "survey", "usphone": "'sə:vei", "ukphone": "", "trans": ["n.调查"] },
|
||||
{ "name": "rescue", "usphone": "'reskju:", "ukphone": "", "trans": ["v.营救"] },
|
||||
{ "name": "package", "usphone": "'pækidʒ", "ukphone": "", "trans": ["v.把…打包"] },
|
||||
{ "name": "enthusiast", "usphone": "in'θju:ziæst", "ukphone": "", "trans": ["n.热心人"] },
|
||||
{ "name": "restore", "usphone": "ri'stɔ:", "ukphone": "", "trans": ["v.修复"] },
|
||||
{ "name": "imagine", "usphone": "i'mædʒin", "ukphone": "", "trans": ["v.想像"] },
|
||||
{ "name": "packing", "usphone": "'pækiŋ", "ukphone": "", "trans": ["包装箱"] },
|
||||
{ "name": "colony", "usphone": "'kɔləni", "ukphone": "", "trans": ["n.群"] },
|
||||
{ "name": "bee", "usphone": "bi:", "ukphone": "", "trans": ["n.蜂"] },
|
||||
{ "name": "hive", "usphone": "haiv", "ukphone": "", "trans": ["n.蜂房"] },
|
||||
{ "name": "preserve", "usphone": "pri'zə:v", "ukphone": "", "trans": ["v.保护"] },
|
||||
{ "name": "beeswax", "usphone": "'bi:zwæks", "ukphone": "", "trans": ["n.蜂蜡"] },
|
||||
{ "name": "volcano", "usphone": "vɔl'keinəu", "ukphone": "", "trans": ["n.火山"] },
|
||||
{ "name": "active", "usphone": "'æktiv", "ukphone": "", "trans": ["a.活动的"] },
|
||||
{ "name": "Congo", "usphone": "'kɔŋgou", "ukphone": "", "trans": ["n.(the~)刚果"] },
|
||||
{ "name": "erupt", "usphone": "i'rʌpt", "ukphone": "", "trans": ["v.(火山)喷发"] },
|
||||
{ "name": "violently", "usphone": "'vaiələntli", "ukphone": "", "trans": ["ad.猛烈地,剧烈地"] },
|
||||
{ "name": "manage", "usphone": "'mænidʒ", "ukphone": "", "trans": ["v.设法"] },
|
||||
{ "name": "brilliant", "usphone": "'briliənt", "ukphone": "", "trans": ["a.精彩的"] },
|
||||
{ "name": "liquid", "usphone": "'likwid", "ukphone": "", "trans": ["a.液态的"] },
|
||||
{ "name": "escape", "usphone": "i'skeip", "ukphone": "", "trans": ["v.逃脱"] },
|
||||
{ "name": "alive", "usphone": "ə'laiv", "ukphone": "", "trans": ["a.活着的"] },
|
||||
{ "name": "persistent", "usphone": "pə'sistənt", "ukphone": "", "trans": ["a.坚持的,固执的"] },
|
||||
{ "name": "avoid", "usphone": "ə'vɔid", "ukphone": "", "trans": ["v.避开"] },
|
||||
{ "name": "insist", "usphone": "in'sist", "ukphone": "", "trans": ["v.坚持做"] },
|
||||
{ "name": "murder", "usphone": "'mə:də", "ukphone": "", "trans": ["n.谋杀"] },
|
||||
{ "name": "instruct", "usphone": "in'strʌkt", "ukphone": "", "trans": ["v.命令,指示"] },
|
||||
{ "name": "acquire", "usphone": "ə'kwaiə", "ukphone": "", "trans": ["v.取得,获得"] },
|
||||
{ "name": "confidence", "usphone": "'kɔnfidəns", "ukphone": "", "trans": ["n.信心"] },
|
||||
{ "name": "examiner", "usphone": "ig'zæminə", "ukphone": "", "trans": ["n.主考人"] },
|
||||
{ "name": "suppose", "usphone": "sə'pəuz", "ukphone": "", "trans": ["v.假设"] },
|
||||
{ "name": "tap", "usphone": "tæp", "ukphone": "", "trans": ["v.轻敲"] },
|
||||
{ "name": "react", "usphone": "ri'ækt", "ukphone": "", "trans": ["v.反应"] },
|
||||
{ "name": "brake", "usphone": "breik", "ukphone": "", "trans": ["n.刹车"] },
|
||||
{ "name": "pedal", "usphone": "'pedəl", "ukphone": "", "trans": ["n.踏板"] },
|
||||
{ "name": "mournful", "usphone": "'mɔ:nful", "ukphone": "", "trans": ["a.悲哀的"] },
|
||||
{ "name": "bullfight", "usphone": "'bulfait", "ukphone": "", "trans": ["n.斗牛"] },
|
||||
{ "name": "drunk", "usphone": "drʌŋk", "ukphone": "", "trans": ["n.醉汉"] },
|
||||
{ "name": "wander", "usphone": "'wɔndə, 'wɑ:n:dər", "ukphone": "", "trans": ["v.溜达,乱走"] },
|
||||
{ "name": "ring", "usphone": "riŋ", "ukphone": "", "trans": ["n.圆形竞技场地"] },
|
||||
{ "name": "unaware", "usphone": "ˌʌnə'weə", "ukphone": "", "trans": ["a.不知道的,示觉察的"] },
|
||||
{ "name": "bull", "usphone": "bul", "ukphone": "", "trans": ["n.公牛"] },
|
||||
{ "name": "matador", "usphone": "'mætədɔ:", "ukphone": "", "trans": ["n.斗牛士"] },
|
||||
{ "name": "remark", "usphone": "ri'mɑ:k", "ukphone": "", "trans": ["n.评论;言语"] },
|
||||
{ "name": "apparently", "usphone": "ə'pærəntli", "ukphone": "", "trans": ["ad.明显地"] },
|
||||
{ "name": "sensitive", "usphone": "'sensitiv", "ukphone": "", "trans": ["a.敏感的"] },
|
||||
{ "name": "criticism", "usphone": "'kritisizəm", "ukphone": "", "trans": ["n.批评"] },
|
||||
{ "name": "charge", "usphone": "tʃɑ:dʒ", "ukphone": "", "trans": ["v.冲上去"] },
|
||||
{ "name": "clumsily", "usphone": "'klʌmzili", "ukphone": "", "trans": ["ad.笨拙地"] },
|
||||
{ "name": "bow", "usphone": "bau", "ukphone": "", "trans": ["v.鞠躬"] },
|
||||
{ "name": "safety", "usphone": "'seifti", "ukphone": "", "trans": ["n.安全地带"] },
|
||||
{ "name": "sympathetically", "usphone": "ˌsimpə'θetikəli", "ukphone": "", "trans": ["ad.同情地"] },
|
||||
{ "name": "parliament", "usphone": "'pɑ:ləmənt", "ukphone": "", "trans": ["n.议会,国会"] },
|
||||
{ "name": "erect", "usphone": "i'rekt", "ukphone": "", "trans": ["v.建起"] },
|
||||
{ "name": "accurate", "usphone": "'ækjurət", "ukphone": "", "trans": ["a.准确的"] },
|
||||
{ "name": "official", "usphone": "ə'fiʃəl", "ukphone": "", "trans": ["n.官员,行政人员"] },
|
||||
{ "name": "Greenwich", "usphone": "'grinidʒ", "ukphone": "", "trans": ["n.格林威治"] },
|
||||
{ "name": "observatory", "usphone": "əb'zə:vətəri", "ukphone": "", "trans": ["n.天文台"] },
|
||||
{ "name": "check", "usphone": "tʃek", "ukphone": "", "trans": ["v.检查"] },
|
||||
{ "name": "microphone", "usphone": "'maikrəfəun", "ukphone": "", "trans": ["n.扩音器,麦克风"] },
|
||||
{ "name": "tower", "usphone": "'tauə", "ukphone": "", "trans": ["n.塔"] },
|
||||
{ "name": "racing", "usphone": "'reisiŋ", "ukphone": "", "trans": ["n.竞赛"] },
|
||||
{ "name": "per", "usphone": "pə:", "ukphone": "", "trans": ["prep.每"] },
|
||||
{ "name": "Utah", "usphone": "'ju:tɑ:", "ukphone": "", "trans": ["n.犹他(美国州名)"] },
|
||||
{ "name": "horsepower", "usphone": "'hɔ:sˌpauə", "ukphone": "", "trans": ["n.马力"] },
|
||||
{ "name": "burst", "usphone": "bə:st", "ukphone": "", "trans": ["v.爆裂"] },
|
||||
{ "name": "average", "usphone": "'ævəridʒ", "ukphone": "", "trans": ["a.平均的"] },
|
||||
{ "name": "footstep", "usphone": "'futstep", "ukphone": "", "trans": ["n.足迹"] },
|
||||
{ "name": "record-holder", "usphone": "'rekɔ:d'həuldə", "ukphone": "", "trans": ["纪录保持者"] },
|
||||
{ "name": "truant", "usphone": "'tru:ənt", "ukphone": "", "trans": ["n.逃学的孩子"] },
|
||||
{ "name": "unimaginative", "usphone": "ˌʌni'mædʒinətiv", "ukphone": "", "trans": ["a.缺乏想象力的"] },
|
||||
{ "name": "shame", "usphone": "ʃeim", "ukphone": "", "trans": ["n.惭愧,羞耻"] },
|
||||
{ "name": "hitchhike", "usphone": "'hitʃhaik", "ukphone": "", "trans": ["v.搭便车旅行"] },
|
||||
{ "name": "meantime", "usphone": "'mi:ntaim", "ukphone": "", "trans": ["n.其间"] },
|
||||
{ "name": "lorry", "usphone": "'lɔri", "ukphone": "", "trans": ["n.卡车"] },
|
||||
{ "name": "border", "usphone": "'bɔ:də", "ukphone": "", "trans": ["n.边界"] },
|
||||
{ "name": "evade", "usphone": "i'veid", "ukphone": "", "trans": ["v.逃避,逃离"] },
|
||||
{ "name": "limelight", "usphone": "'laimlait", "ukphone": "", "trans": ["n.舞台灯光"] },
|
||||
{ "name": "precaution", "usphone": "pri'kɔ:ʃən", "ukphone": "", "trans": ["n.预防措施"] },
|
||||
{ "name": "fan", "usphone": "fæn", "ukphone": "", "trans": ["n.狂热者,迷"] },
|
||||
{ "name": "shady", "usphone": "'ʃeidi", "ukphone": "", "trans": ["a.遮荫的"] },
|
||||
{ "name": "sheriff", "usphone": "'ʃerif", "ukphone": "", "trans": ["n.司法长官"] },
|
||||
{ "name": "notice", "usphone": "'nəutis", "ukphone": "", "trans": ["n.告示"] },
|
||||
{ "name": "sneer", "usphone": "sniə", "ukphone": "", "trans": ["n.冷笑"] },
|
||||
{ "name": "thick", "usphone": "θik", "ukphone": "", "trans": ["a.厚的"] },
|
||||
{ "name": "signal", "usphone": "'signəl", "ukphone": "", "trans": ["n.信号"] },
|
||||
{ "name": "stamp", "usphone": "stæmp", "ukphone": "", "trans": ["v.跺,踩"] },
|
||||
{ "name": "helicopter", "usphone": "'helikɔptə", "ukphone": "", "trans": ["n.直升飞机"] },
|
||||
{ "name": "scene", "usphone": "si:n", "ukphone": "", "trans": ["n.现场"] },
|
||||
{ "name": "survivor", "usphone": "sə'vaivə", "ukphone": "", "trans": ["n.幸存者"] },
|
||||
{ "name": "fool", "usphone": "fu:l", "ukphone": "", "trans": ["n.傻瓜"] },
|
||||
{ "name": "bulletin", "usphone": "'bulətin", "ukphone": "", "trans": ["n.亲闻简报"] },
|
||||
{ "name": "announcer", "usphone": "ə'naunsə", "ukphone": "", "trans": ["n.(电视、电台)播音员"] },
|
||||
{ "name": "macaroni", "usphone": "ˌmækə'rəuni", "ukphone": "", "trans": ["n.通心面,空心面条"] },
|
||||
{ "name": "leading", "usphone": "'li:diŋ", "ukphone": "", "trans": ["a.主要的"] },
|
||||
{ "name": "grower", "usphone": "'grəuə", "ukphone": "", "trans": ["n.种植者"] },
|
||||
{ "name": "splendid", "usphone": "'splendid", "ukphone": "", "trans": ["a.极好的"] },
|
||||
{ "name": "stalk", "usphone": "stɔ:k", "ukphone": "", "trans": ["n.梗"] },
|
||||
{ "name": "gather", "usphone": "'gæeə", "ukphone": "", "trans": ["v.收庄稼"] },
|
||||
{ "name": "thresh", "usphone": "θreʃ", "ukphone": "", "trans": ["v.打(庄稼)"] },
|
||||
{ "name": "process", "usphone": "'prəuses", "ukphone": "", "trans": ["v.加工"] },
|
||||
{ "name": "signor", "usphone": "'si:njɔ:", "ukphone": "", "trans": ["n.(意大利语)先生"] },
|
||||
{ "name": "present", "usphone": "pri'zent, 'prezənt", "ukphone": "", "trans": ["a.目前的"] },
|
||||
{ "name": "champion", "usphone": "'tʃæmpiən", "ukphone": "", "trans": ["n.冠军"] },
|
||||
{ "name": "studio", "usphone": "'stju:diəu", "ukphone": "", "trans": ["n.播音室"] },
|
||||
{ "name": "mummy", "usphone": "'mʌmi", "ukphone": "", "trans": ["n.木乃伊"] },
|
||||
{ "name": "Egyptian", "usphone": "i'dʒipʃən", "ukphone": "", "trans": ["a.埃及的"] },
|
||||
{ "name": "temple", "usphone": "'tempəl", "ukphone": "", "trans": ["n.庙"] },
|
||||
{ "name": "mark", "usphone": "mɑ:k", "ukphone": "", "trans": ["n.斑点"] },
|
||||
{ "name": "plate", "usphone": "pleit", "ukphone": "", "trans": ["n.(照相)底片"] },
|
||||
{ "name": "disease", "usphone": "di'zi:z", "ukphone": "", "trans": ["n.疾病"] },
|
||||
{ "name": "last", "usphone": "lɑ:st", "ukphone": "", "trans": ["v.持续"] },
|
||||
{ "name": "prove", "usphone": "pru:v", "ukphone": "", "trans": ["v.显示出"] },
|
||||
{ "name": "resin", "usphone": "'rezin", "ukphone": "", "trans": ["n.树脂"] },
|
||||
{ "name": "skin", "usphone": "skin", "ukphone": "", "trans": ["n.皮,皮肤"] },
|
||||
{ "name": "section", "usphone": "'sekʃən", "ukphone": "", "trans": ["n.切片"] },
|
||||
{ "name": "figure", "usphone": "'figə", "ukphone": "", "trans": ["n.(人的)体形;人像"] },
|
||||
{ "name": "normally", "usphone": "'nɔ:məli", "ukphone": "", "trans": ["ad.通常地"] },
|
||||
{ "name": "survive", "usphone": "sə'vaiv", "ukphone": "", "trans": ["v.幸免于"] },
|
||||
{ "name": "entitle", "usphone": "in'taitl", "ukphone": "", "trans": ["v.以…为名"] },
|
||||
{ "name": "calm", "usphone": "kɑ:m", "ukphone": "", "trans": ["v.使镇定"] },
|
||||
{ "name": "nerve", "usphone": "nə:v", "ukphone": "", "trans": ["n.神经"] },
|
||||
{ "name": "concentration", "usphone": "ˌkɔnsən'treiʃən", "ukphone": "", "trans": ["n.集中,专心"] },
|
||||
{ "name": "suffer", "usphone": "'sʌfə", "ukphone": "", "trans": ["v.受苦,受害"] },
|
||||
{ "name": "symptom", "usphone": "'simptəm", "ukphone": "", "trans": ["n.症状"] },
|
||||
{ "name": "temper", "usphone": "'tempə", "ukphone": "", "trans": ["n.脾气"] },
|
||||
{ "name": "appetite", "usphone": "'æpitait", "ukphone": "", "trans": ["n.胃口,食欲"] },
|
||||
{ "name": "produce", "usphone": "prə'dju:s, 'prɔdju:s", "ukphone": "", "trans": ["v.拿出"] },
|
||||
{ "name": "urge", "usphone": "ə:dʒ", "ukphone": "", "trans": ["v.力劝,怂恿"] },
|
||||
{ "name": "satisfaction", "usphone": "ˌsætis'fækʃən", "ukphone": "", "trans": ["n.满意,满足"] },
|
||||
{ "name": "delighted", "usphone": "di'laitid", "ukphone": "", "trans": ["a.欣喜的"] },
|
||||
{ "name": "parent", "usphone": "'peərənt", "ukphone": "", "trans": ["n.父(母)亲"] },
|
||||
{ "name": "flight attendant", "usphone": "'flait əˌtendənt", "ukphone": "", "trans": ["空中乘务员"] },
|
||||
{ "name": "frightened", "usphone": "'fraitnd", "ukphone": "", "trans": ["a.害怕,担惊"] },
|
||||
{ "name": "curious", "usphone": "'kjuəriəs", "ukphone": "", "trans": ["a.急于了解,好奇的"] },
|
||||
{ "name": "bomb", "usphone": "bɔm", "ukphone": "", "trans": ["n.炸弹"] },
|
||||
{ "name": "plant", "usphone": "plɑ:nt", "ukphone": "", "trans": ["v.安放"] },
|
||||
{ "name": "palace", "usphone": "'pælis", "ukphone": "", "trans": ["n.宫殿"] },
|
||||
{ "name": "extraordinary", "usphone": "ik'strɔ:dinəri", "ukphone": "", "trans": ["a.不平常的.非凡的"] },
|
||||
{ "name": "exhibition", "usphone": "eksi'biʃ(ə)n", "ukphone": "", "trans": ["n.展览"] },
|
||||
{ "name": "iron", "usphone": "'aiən", "ukphone": "", "trans": ["n.铁"] },
|
||||
{ "name": "various", "usphone": "'veəriəs", "ukphone": "", "trans": ["a.各种各样的"] },
|
||||
{ "name": "machinery", "usphone": "mə'ʃi:nəri", "ukphone": "", "trans": ["n.机器"] },
|
||||
{ "name": "display", "usphone": "di'splei", "ukphone": "", "trans": ["n.展览"] },
|
||||
{ "name": "steam", "usphone": "sti:m", "ukphone": "", "trans": ["n.蒸汽"] },
|
||||
{ "name": "profit", "usphone": "'prɔfit", "ukphone": "", "trans": ["n.利润"] },
|
||||
{ "name": "college", "usphone": "'kɔlidʒ", "ukphone": "", "trans": ["n.学院"] },
|
||||
{ "name": "prisoner", "usphone": "'prizənə", "ukphone": "", "trans": ["n.囚犯"] },
|
||||
{ "name": "bush", "usphone": "buʃ", "ukphone": "", "trans": ["n.灌木丛"] },
|
||||
{ "name": "rapidly", "usphone": "'ræpidli", "ukphone": "", "trans": ["ad.迅速地"] },
|
||||
{ "name": "uniform", "usphone": "'ju:nifɔ:m", "ukphone": "", "trans": ["n.制服"] },
|
||||
{ "name": "rifle", "usphone": "'raifl", "ukphone": "", "trans": ["n.来福枪,步枪"] },
|
||||
{ "name": "shoulder", "usphone": "'ʃəuldə", "ukphone": "", "trans": ["n.肩"] },
|
||||
{ "name": "march", "usphone": "mɑ:tʃ", "ukphone": "", "trans": ["v.行进"] },
|
||||
{ "name": "boldly", "usphone": "'bəuldli", "ukphone": "", "trans": ["ad.大胆地"] },
|
||||
{ "name": "blaze", "usphone": "bleiz", "ukphone": "", "trans": ["v.闪耀"] },
|
||||
{ "name": "salute", "usphone": "sə'lu:t", "ukphone": "", "trans": ["v.行礼"] },
|
||||
{ "name": "elderly", "usphone": "'eldəli", "ukphone": "", "trans": ["a.上了年纪的"] },
|
||||
{ "name": "grey", "usphone": "grei", "ukphone": "", "trans": ["a.灰白的"] },
|
||||
{ "name": "sharp", "usphone": "ʃɑ:p", "ukphone": "", "trans": ["a.猛烈的"] },
|
||||
{ "name": "blow", "usphone": "bləu", "ukphone": "", "trans": ["n.打击"] },
|
||||
{ "name": "monster", "usphone": "'mɔnstə", "ukphone": "", "trans": ["n.怪物"] },
|
||||
{ "name": "sailor", "usphone": "'seilə", "ukphone": "", "trans": ["n.海员"] },
|
||||
{ "name": "sight", "usphone": "sait", "ukphone": "", "trans": ["v.见到"] },
|
||||
{ "name": "creature", "usphone": "'kri:tʃə", "ukphone": "", "trans": ["n.动物,生物"] },
|
||||
{ "name": "peculiar", "usphone": "pi'kju:liə", "ukphone": "", "trans": ["a.奇怪的,不寻常的"] },
|
||||
{ "name": "shining", "usphone": "'ʃainiŋ", "ukphone": "", "trans": ["a.闪闪发光的"] },
|
||||
{ "name": "oarfish", "usphone": "'ɔ:fiʃ", "ukphone": "", "trans": ["n.桨鱼"] },
|
||||
{ "name": "election", "usphone": "i'lekʃən", "ukphone": "", "trans": ["n.选举"] },
|
||||
{ "name": "former", "usphone": "'fɔ:mə", "ukphone": "", "trans": ["a.从前的"] },
|
||||
{ "name": "defeat", "usphone": "di'fi:t", "ukphone": "", "trans": ["v.打败"] },
|
||||
{ "name": "fanatical", "usphone": "fə'nætikəl", "ukphone": "", "trans": ["a.狂热的"] },
|
||||
{ "name": "opponent", "usphone": "ə'pəunənt", "ukphone": "", "trans": ["n.反对者,对手"] },
|
||||
{ "name": "radical", "usphone": "'rædikəl", "ukphone": "", "trans": ["a.激进的"] },
|
||||
{ "name": "progressive", "usphone": "prə'gresiv", "ukphone": "", "trans": ["a.进步的"] },
|
||||
{ "name": "ex- prefix.(", "ukphone": "", "trans": ["前缀,用于名词前)前…"] },
|
||||
{ "name": "suspicious", "usphone": "sə'spiʃəs", "ukphone": "", "trans": ["a.怀疑的"] },
|
||||
{ "name": "strike", "usphone": "straik", "ukphone": "", "trans": ["n.罢工"] },
|
||||
{ "name": "busman", "usphone": "'bʌsmən", "ukphone": "", "trans": ["n.公共汽车司机"] },
|
||||
{ "name": "state", "usphone": "steit", "ukphone": "", "trans": ["v.正式提出,宣布"] },
|
||||
{ "name": "agreement", "usphone": "ə'gri:mənt", "ukphone": "", "trans": ["n.协议"] },
|
||||
{ "name": "relieve", "usphone": "ri'li:v", "ukphone": "", "trans": ["v.减轻"] },
|
||||
{ "name": "pressure", "usphone": "'preʃə", "ukphone": "", "trans": ["n.压力,麻烦"] },
|
||||
{ "name": "extent", "usphone": "ik'stent", "ukphone": "", "trans": ["n.程度"] },
|
||||
{ "name": "volunteer", "usphone": "ˌvɔlən'tiə", "ukphone": "", "trans": ["v.自动提出,自愿"] },
|
||||
{ "name": "gratitude", "usphone": "'grætitju:d", "ukphone": "", "trans": ["n.感激"] },
|
||||
{ "name": "Press", "usphone": "pres", "ukphone": "", "trans": ["n.新闻界"] },
|
||||
{ "name": "object", "usphone": "'ɔbdʒiktˌ əb'dʒekt", "ukphone": "", "trans": ["v.不赞成,反对"] },
|
||||
{ "name": "inform", "usphone": "in'fɔ:m", "ukphone": "", "trans": ["v.告诉,通知"] },
|
||||
{ "name": "headmaster", "usphone": "ˌhed'mɑ:stə", "ukphone": "", "trans": ["n.校长"] },
|
||||
{ "name": "contribute", "usphone": "kən'tribju:t", "ukphone": "", "trans": ["v.捐助,援助"] },
|
||||
{ "name": "gift", "usphone": "gift", "ukphone": "", "trans": ["n.礼物,赠品"] },
|
||||
{ "name": "album", "usphone": "'ælbəm", "ukphone": "", "trans": ["n.签名簿,相册"] },
|
||||
{ "name": "patience", "usphone": "'peiʃəns", "ukphone": "", "trans": ["n.耐心"] },
|
||||
{ "name": "encouragement", "usphone": "in'kʌridʒmənt", "ukphone": "", "trans": ["n.鼓励"] },
|
||||
{ "name": "farewell", "usphone": "feə'wel", "ukphone": "", "trans": ["n.告别"] },
|
||||
{ "name": "honour", "usphone": "'ɔnə", "ukphone": "", "trans": ["n.敬意"] },
|
||||
{ "name": "coincidence", "usphone": "kəu'insidəns", "ukphone": "", "trans": ["n.巧合"] },
|
||||
{ "name": "total", "usphone": "'təutl", "ukphone": "", "trans": ["n.总数"] },
|
||||
{ "name": "devote", "usphone": "di'vəut", "ukphone": "", "trans": ["v.致力于"] },
|
||||
{ "name": "gardening", "usphone": "'gɑ:dəniŋ", "ukphone": "", "trans": ["n.园艺"] },
|
||||
{ "name": "hobby", "usphone": "'hɔbi", "ukphone": "", "trans": ["n.爱好,嗜好"] },
|
||||
{ "name": "swing", "usphone": "swiŋ", "ukphone": "", "trans": ["v.转向"] },
|
||||
{ "name": "speedboat", "usphone": "'spi:dbəut", "ukphone": "", "trans": ["n.快艇"] },
|
||||
{ "name": "desperately", "usphone": "'despəritli", "ukphone": "", "trans": ["ad.绝望地"] },
|
||||
{ "name": "companion", "usphone": "kəm'pæniən", "ukphone": "", "trans": ["n.同伙,同伴"] },
|
||||
{ "name": "buoy", "usphone": "bɔi", "ukphone": "", "trans": ["n.浮标"] },
|
||||
{ "name": "dismay", "usphone": "dis'mei", "ukphone": "", "trans": ["n.沮丧"] },
|
||||
{ "name": "tremendous", "usphone": "tri'mendəs", "ukphone": "", "trans": ["a.巨大的"] },
|
||||
{ "name": "petrol", "usphone": "'petrəl", "ukphone": "", "trans": ["n.汽油"] },
|
||||
{ "name": "drift", "usphone": "drift", "ukphone": "", "trans": ["v.漂动,漂流"] },
|
||||
{ "name": "gently", "usphone": "'dʒentli", "ukphone": "", "trans": ["ad.缓慢地,轻轻地"] },
|
||||
{ "name": "alibi", "usphone": "'ælibai", "ukphone": "", "trans": ["n.不在犯罪现场"] },
|
||||
{ "name": "commit", "usphone": "kə'mit", "ukphone": "", "trans": ["v.犯(罪、错)"] },
|
||||
{ "name": "inspector", "usphone": "in'spektə", "ukphone": "", "trans": ["n.探长"] },
|
||||
{ "name": "employer", "usphone": "im'plɔiə", "ukphone": "", "trans": ["n.雇主"] },
|
||||
{ "name": "confirm", "usphone": "kən'fə:m", "ukphone": "", "trans": ["v.确认,证实"] },
|
||||
{ "name": "suggest", "usphone": "sə'dʒest", "ukphone": "", "trans": ["v.提醒"] },
|
||||
{ "name": "truth", "usphone": "tru:θ", "ukphone": "", "trans": ["n.真相"] },
|
||||
{ "name": "trap", "usphone": "træp", "ukphone": "", "trans": ["v.陷入,使陷于困境"] },
|
||||
{ "name": "surface", "usphone": "'sə:fis", "ukphone": "", "trans": ["n.地面,表面"] },
|
||||
{ "name": "explosive", "usphone": "ik'spləusiv", "ukphone": "", "trans": ["n.炸药"] },
|
||||
{ "name": "vibration", "usphone": "vai'breiʃən", "ukphone": "", "trans": ["n.震动"] },
|
||||
{ "name": "collapse", "usphone": "kə'læps", "ukphone": "", "trans": ["v.坍塌"] },
|
||||
{ "name": "drill", "usphone": "dril", "ukphone": "", "trans": ["v.钻孔"] },
|
||||
{ "name": "capsule", "usphone": "'kæpsju:l", "ukphone": "", "trans": ["n.容器"] },
|
||||
{ "name": "layer", "usphone": "'leiə", "ukphone": "", "trans": ["n.层"] },
|
||||
{ "name": "beneath", "usphone": "bi'ni:θ", "ukphone": "", "trans": ["prep.在…之下"] },
|
||||
{ "name": "lower", "usphone": "'ləuə", "ukphone": "", "trans": ["v.放下,降低"] },
|
||||
{ "name": "progress", "usphone": "'prəugres, prə'gres", "ukphone": "", "trans": ["v.进展,进行"] },
|
||||
{ "name": "smoothly", "usphone": "'smu:eli", "ukphone": "", "trans": ["ad.顺利地"] },
|
||||
{ "name": "slip", "usphone": "slip", "ukphone": "", "trans": ["n.小错误"] },
|
||||
{ "name": "comedy", "usphone": "'kɔmidi", "ukphone": "", "trans": ["n.喜剧"] },
|
||||
{ "name": "present", "usphone": "pri'zent, 'prezənt", "ukphone": "", "trans": ["v.演出 a.出席,到场的"] },
|
||||
{ "name": "queue", "usphone": "kju:", "ukphone": "", "trans": ["v.排队"] },
|
||||
{ "name": "dull", "usphone": "dʌl", "ukphone": "", "trans": ["a.枯燥,无味"] },
|
||||
{ "name": "artiste", "usphone": "ɑ:'ti:st", "ukphone": "", "trans": ["n.艺人"] },
|
||||
{ "name": "advertiser", "usphone": "'ædvətaizə", "ukphone": "", "trans": ["n.报幕员"] },
|
||||
{ "name": "chip", "usphone": "tʃip", "ukphone": "", "trans": ["n.油煎豆片"] },
|
||||
{ "name": "overfish", "usphone": "əuvə'fiʃ", "ukphone": "", "trans": ["v.过度捕捞"] },
|
||||
{ "name": "giant", "usphone": "'dʒaiənt", "ukphone": "", "trans": ["a.巨大的"] },
|
||||
{ "name": "terrify", "usphone": "'terifai", "ukphone": "", "trans": ["v.吓,使恐怖"] },
|
||||
{ "name": "diver", "usphone": "'daivə", "ukphone": "", "trans": ["n.潜水员"] },
|
||||
{ "name": "oil rig", "usphone": "'ɔil ˌrig", "ukphone": "", "trans": ["石油钻塔"] },
|
||||
{ "name": "wit", "usphone": "wit", "ukphone": "", "trans": ["n.(复数)理智,头脑"] },
|
||||
{ "name": "cage", "usphone": "keidʒ", "ukphone": "", "trans": ["n.笼"] },
|
||||
{ "name": "shark", "usphone": "ʃɑ:k", "ukphone": "", "trans": ["n.鲨鱼"] },
|
||||
{ "name": "whale", "usphone": "weil", "ukphone": "", "trans": ["n.鲸"] },
|
||||
{ "name": "variety", "usphone": "və'raiəti", "ukphone": "", "trans": ["n.品种"] },
|
||||
{ "name": "cod", "usphone": "kɔd", "ukphone": "", "trans": ["n.鳕"] },
|
||||
{ "name": "skate", "usphone": "skeit", "ukphone": "", "trans": ["n.鳐"] },
|
||||
{ "name": "factor", "usphone": "'fæktə", "ukphone": "", "trans": ["n.因素"] },
|
||||
{ "name": "crew", "usphone": "kru:", "ukphone": "", "trans": ["n.全体工作人员"] },
|
||||
{ "name": "balloon", "usphone": "bə'lu:n", "ukphone": "", "trans": ["n.气球"] },
|
||||
{ "name": "royal", "usphone": "'rɔiəl", "ukphone": "", "trans": ["a.皇家"] },
|
||||
{ "name": "spy", "usphone": "spai", "ukphone": "", "trans": ["v.侦察"] },
|
||||
{ "name": "track", "usphone": "træk", "ukphone": "", "trans": ["n.轨迹,踪迹"] },
|
||||
{ "name": "binoculars", "usphone": "bi'nɔkjuləz", "ukphone": "", "trans": ["n.望远镜"] },
|
||||
{ "name": "fast", "usphone": "fɑ:st", "ukphone": "", "trans": ["ad.熟(睡)"] },
|
||||
{ "name": "ladder", "usphone": "'lædə", "ukphone": "", "trans": ["n.梯子"] },
|
||||
{ "name": "shed", "usphone": "ʃed", "ukphone": "", "trans": ["n.棚子"] },
|
||||
{ "name": "sarcastic", "usphone": "sɑ:'kæstik, sɑr-", "ukphone": "", "trans": ["a.讽刺的,讥笑的"] },
|
||||
{ "name": "tone", "usphone": "təun", "ukphone": "", "trans": ["n.语气,腔调"] },
|
||||
{ "name": "noble", "usphone": "'nəubəl", "ukphone": "", "trans": ["a.高尚的,壮丽的"] },
|
||||
{ "name": "monument", "usphone": "'mɔnjumənt", "ukphone": "", "trans": ["n.纪念碑"] },
|
||||
{ "name": "statue", "usphone": "'stætʃu:", "ukphone": "", "trans": ["n.雕像"] },
|
||||
{ "name": "liberty", "usphone": "'libəti", "ukphone": "", "trans": ["n.自由"] },
|
||||
{ "name": "present", "usphone": "pri'zent, 'prezənt", "ukphone": "", "trans": ["v.赠送"] },
|
||||
{ "name": "sculptor", "usphone": "'skʌlptə", "ukphone": "", "trans": ["n.雕刻家"] },
|
||||
{ "name": "actual", "usphone": "'æktʃuəl", "ukphone": "", "trans": ["a.实际的,真实的"] },
|
||||
{ "name": "copper", "usphone": "'kɔpə", "ukphone": "", "trans": ["n.铜"] },
|
||||
{ "name": "support", "usphone": "sə'pɔ:t", "ukphone": "", "trans": ["v.支持,支撑"] },
|
||||
{ "name": "framework", "usphone": "'freimwə:k", "ukphone": "", "trans": ["n.构架,框架"] },
|
||||
{ "name": "transport", "usphone": "træn'spɔ:t", "ukphone": "", "trans": ["v.运送"] },
|
||||
{ "name": "site", "usphone": "sait", "ukphone": "", "trans": ["n.场地"] },
|
||||
{ "name": "pedestal", "usphone": "'pedistl", "ukphone": "", "trans": ["n.底座"] },
|
||||
{ "name": "instruct", "usphone": "in'strʌkt", "ukphone": "", "trans": ["v.指导,传授"] },
|
||||
{ "name": "Los Angeles", "usphone": "lɔs'ændʒili:z", "ukphone": "", "trans": ["洛杉矶"] },
|
||||
{ "name": "reluctant", "usphone": "ri'lʌktənt", "ukphone": "", "trans": ["a.勉强的,不愿意的"] },
|
||||
{ "name": "weight", "usphone": "weit", "ukphone": "", "trans": ["n.重物"] },
|
||||
{ "name": "underwater", "usphone": "ˌʌndə'wɔ:tə", "ukphone": "", "trans": ["a.水下的"] },
|
||||
{ "name": "tricycle", "usphone": "'traisikəl", "ukphone": "", "trans": ["n.三轮车"] },
|
||||
{ "name": "compete", "usphone": "kəm'pi:t", "ukphone": "", "trans": ["v.比赛,对抗"] },
|
||||
{ "name": "yard", "usphone": "jɑ:d", "ukphone": "", "trans": ["n.码"] },
|
||||
{ "name": "gasp", "usphone": "gɑ:sp", "ukphone": "", "trans": ["v.喘气"] },
|
||||
{ "name": "fantasy", "usphone": "'fæntəsi", "ukphone": "", "trans": ["n.幻想故事"] },
|
||||
{ "name": "ambassador", "usphone": "æm'bæsədə", "ukphone": "", "trans": ["n.大使"] },
|
||||
{ "name": "frightful", "usphone": "'fraitfəl", "ukphone": "", "trans": ["a.可怕的,令人吃惊的"] },
|
||||
{ "name": "fire extinguisher", "ukphone": "", "trans": ["灭火器"] },
|
||||
{ "name": "drily", "usphone": "'draili", "ukphone": "", "trans": ["ad.冷淡地,枯燥无味地"] },
|
||||
{ "name": "embassy", "usphone": "'embəsi", "ukphone": "", "trans": ["n.大使馆"] },
|
||||
{ "name": "heaven", "usphone": "'hevən", "ukphone": "", "trans": ["n.天,天堂"] },
|
||||
{ "name": "basement", "usphone": "'beismənt", "ukphone": "", "trans": ["n.地下室"] },
|
||||
{ "name": "definitely", "usphone": "'definitli", "ukphone": "", "trans": ["ad.肯定地"] },
|
||||
{ "name": "post", "usphone": "pəust", "ukphone": "", "trans": ["v.派任"] },
|
||||
{ "name": "shot", "usphone": "ʃɔt", "ukphone": "", "trans": ["n.子弹"] },
|
||||
{ "name": "festival", "usphone": "'festivəl", "ukphone": "", "trans": ["n.节日"] },
|
||||
{ "name": "lantern", "usphone": "'læntən", "ukphone": "", "trans": ["n.灯笼"] },
|
||||
{ "name": "spectacle", "usphone": "'spektəkəl", "ukphone": "", "trans": ["n.景象,壮观,场面"] }
|
||||
]
|
||||
+8654
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,786 @@
|
||||
[
|
||||
{ "name": "fossil man", "ukphone": "", "trans": ["a.化石人"] },
|
||||
{ "name": "recount", "usphone": "[ri'kaunt]", "ukphone": "", "trans": ["v.叙述"] },
|
||||
{ "name": "saga", "usphone": "['sa:gә]", "ukphone": "", "trans": ["n.英雄故事"] },
|
||||
{ "name": "legend", "usphone": "['ledʒәnd]", "ukphone": "", "trans": ["n.传说,传奇"] },
|
||||
{ "name": "migration", "usphone": "[mai'greiʃәn]", "ukphone": "", "trans": ["n.迁移,移居"] },
|
||||
{ "name": "anthropologist", "usphone": "[ænθrә'pɔlәdʒist]", "ukphone": "", "trans": ["n.人类学家"] },
|
||||
{ "name": "archaeologist", "usphone": "['a:kiә'lɔdʒist]", "ukphone": "", "trans": ["n.考古学家"] },
|
||||
{ "name": "ancestor", "usphone": "['ænsistә]", "ukphone": "", "trans": ["n.祖先"] },
|
||||
{ "name": "Polynesian", "usphone": "[pɔli'ni:zjәn]", "ukphone": "", "trans": ["a.波利尼西亚(中太平洋之一群岛)的"] },
|
||||
{ "name": "Indonesia", "usphone": "['indәu'ni:zjә]", "ukphone": "", "trans": ["n.印度尼西亚"] },
|
||||
{ "name": "flint", "usphone": "[flint]", "ukphone": "", "trans": ["n.燧石"] },
|
||||
{ "name": "rot", "usphone": "[rɔt]", "ukphone": "", "trans": ["v.烂掉"] },
|
||||
{ "name": "beast", "usphone": "[bi:st]", "ukphone": "", "trans": ["n.野兽"] },
|
||||
{ "name": "census", "usphone": "['sensәs]", "ukphone": "", "trans": ["n.统计数字"] },
|
||||
{ "name": "acre", "usphone": "['eikә]", "ukphone": "", "trans": ["n.英亩"] },
|
||||
{ "name": "content", "usphone": "['kɔntent, kәn'tent]", "ukphone": "", "trans": ["a.满足的"] },
|
||||
{ "name": "Matterhorn", "usphone": "['mætәhɔ:n]", "ukphone": "", "trans": ["n.马特霍恩峰(阿尔卑斯山峰之一)"] },
|
||||
{ "name": "alpinist", "usphone": "['ælpinist]", "ukphone": "", "trans": ["n.登山运动员"] },
|
||||
{ "name": "pioneer", "usphone": "['paiә'niә]", "ukphone": "", "trans": ["v.开辟,倡导;n.先锋,开辟者"] },
|
||||
{ "name": "summit", "usphone": "['sʌmit]", "ukphone": "", "trans": ["n.顶峰"] },
|
||||
{ "name": "attain", "usphone": "[ә'tein]", "ukphone": "", "trans": ["v.到达"] },
|
||||
{ "name": "perilous", "usphone": "['perilәs]", "ukphone": "", "trans": ["a.危险的"] },
|
||||
{ "name": "shudder", "usphone": "['ʃʌdә]", "ukphone": "", "trans": ["v.不寒而栗"] },
|
||||
{ "name": "court", "usphone": "[kɔ:t]", "ukphone": "", "trans": ["v.追求"] },
|
||||
{ "name": "solitary", "usphone": "['sɔlitәri]", "ukphone": "", "trans": ["a.唯一的"] },
|
||||
{ "name": "impoverish", "usphone": "[im'pɔvәriʃ]", "ukphone": "", "trans": ["v.使贫困"] },
|
||||
{ "name": "Alpine", "usphone": "['ælpain]", "ukphone": "", "trans": ["a.阿尔卑斯山的"] },
|
||||
{ "name": "flea-ridden", "ukphone": "", "trans": ["a.布满跳蚤的"] },
|
||||
{ "name": "coarse", "usphone": "[kɔ:s]", "ukphone": "", "trans": ["a.粗劣的"] },
|
||||
{ "name": "boast", "usphone": "[bәust]", "ukphone": "", "trans": ["v.自恃有"] },
|
||||
{ "name": "parishioner", "usphone": "[pә'riʃәnә]", "ukphone": "", "trans": ["n.教区居民"] },
|
||||
{ "name": "shepherd", "usphone": "['ʃepәd]", "ukphone": "", "trans": ["n.牧羊人"] },
|
||||
{ "name": "linen", "usphone": "['linin]", "ukphone": "", "trans": ["n.亚麻布"] },
|
||||
{ "name": "solid", "usphone": "['sɔlid]", "ukphone": "", "trans": ["a.坚实的"] },
|
||||
{ "name": "safe", "usphone": "[seif]", "ukphone": "", "trans": ["n.保险柜"] },
|
||||
{ "name": "Ulyanovsk", "usphone": "[u:'lja:nɔfsk]", "ukphone": "", "trans": ["n.乌里扬诺夫斯克"] },
|
||||
{ "name": "commission", "usphone": "[kә'miʃәn]", "ukphone": "", "trans": ["n.委员会"] },
|
||||
{ "name": "opaque", "usphone": "[әu'peik]", "ukphone": "", "trans": ["a.不透明的"] },
|
||||
{ "name": "lotto", "usphone": "['lɔtou]", "ukphone": "", "trans": ["n.一种有编号的纸牌"] },
|
||||
{ "name": "slipper", "usphone": "['slipә]", "ukphone": "", "trans": ["n.拖鞋"] },
|
||||
{ "name": "blindfold", "usphone": "['blaindfәuld]", "ukphone": "", "trans": ["a..被蒙上眼睛的"] },
|
||||
{ "name": "leave", "usphone": "[li:v]", "ukphone": "", "trans": ["n.允许"] },
|
||||
{ "name": "fundamentals", "ukphone": "", "trans": ["n.基本原则"] },
|
||||
{ "name": "glorious", "usphone": "['glɔ:riәs]", "ukphone": "", "trans": ["a.光辉灿烂的"] },
|
||||
{ "name": "splendid", "usphone": "['splendid]", "ukphone": "", "trans": ["a.灿烂的"] },
|
||||
{ "name": "rub", "usphone": "[rʌb]", "ukphone": "", "trans": ["n.难题"] },
|
||||
{ "name": "identity", "usphone": "[ai'dentiti]", "ukphone": "", "trans": ["n.身份"] },
|
||||
{ "name": "dreary", "usphone": "['driәri]", "ukphone": "", "trans": ["a.沉郁的"] },
|
||||
{ "name": "commitment", "usphone": "[kә'mitmәnt]", "ukphone": "", "trans": ["n.信奉"] },
|
||||
{ "name": "mean", "usphone": "[mi:n]", "ukphone": "", "trans": ["a.吝啬,小气"] },
|
||||
{ "name": "social climber", "ukphone": "", "trans": ["追求更高社会地位的人,向上爬的人"] },
|
||||
{ "name": "devotion", "usphone": "[di'vәuʃәn]", "ukphone": "", "trans": ["n.热爱"] },
|
||||
{ "name": "cosmic", "usphone": "['kɔzmik]", "ukphone": "", "trans": ["a.宇宙的"] },
|
||||
{ "name": "suburban", "usphone": "[sә'bә:bәn]", "ukphone": "", "trans": ["a.见识不广的,偏狭的"] },
|
||||
{ "name": "conceited", "usphone": "[kәn'si:tid]", "ukphone": "", "trans": ["a.自高自大的"] },
|
||||
{ "name": "presumptuous", "usphone": "[pri'zʌmptjuәs]", "ukphone": "", "trans": ["a.自以为是的,放肆的"] },
|
||||
{ "name": "fatuous", "usphone": "['fætjuәs]", "ukphone": "", "trans": ["a.愚蠢的"] },
|
||||
{ "name": "cliche", "usphone": "['kli:ʃei]", "ukphone": "", "trans": ["n.陈词滥调"] },
|
||||
{ "name": "goodwill", "ukphone": "", "trans": ["n.友好"] },
|
||||
{ "name": "cricket", "usphone": "['krikit]", "ukphone": "", "trans": ["n.板球"] },
|
||||
{ "name": "inclination", "usphone": "['inkli'neiʃәn]", "ukphone": "", "trans": ["n.意愿"] },
|
||||
{ "name": "contest", "usphone": "[kәn'test, 'kɔntest]", "ukphone": "", "trans": ["n.比赛"] },
|
||||
{ "name": "orgy", "usphone": "['ɔ:dʒi]", "ukphone": "", "trans": ["n.无节制,放荡"] },
|
||||
{ "name": "deduce", "usphone": "[di'dju:s]", "ukphone": "", "trans": ["v.推断"] },
|
||||
{ "name": "competitive", "usphone": "[kәm'petitiv]", "ukphone": "", "trans": ["a.竞争性的"] },
|
||||
{ "name": "patriotism", "usphone": "['pætriәtizm]", "ukphone": "", "trans": ["n.地方观念,爱国主义"] },
|
||||
{ "name": "disgrace", "usphone": "[dis'greis]", "ukphone": "", "trans": ["v.使丢脸"] },
|
||||
{ "name": "savage", "usphone": "['sævidʒ]", "ukphone": "", "trans": ["a.野性的"] },
|
||||
{ "name": "combative", "usphone": "['kɔmbәtiv]", "ukphone": "", "trans": ["a.好斗的"] },
|
||||
{ "name": "mimic warfare", "ukphone": "", "trans": ["n.模拟战争"] },
|
||||
{ "name": "behaviour", "usphone": "[bi'heivjә]", "ukphone": "", "trans": ["n.行动,举止"] },
|
||||
{ "name": "absurd", "usphone": "[әb'sә:d]", "ukphone": "", "trans": ["a.荒唐的"] },
|
||||
{ "name": "bat", "usphone": "[bæt]", "ukphone": "", "trans": ["n.蝙蝠"] },
|
||||
{ "name": "strictly", "usphone": "['striktli]", "ukphone": "", "trans": ["ad.明确地"] },
|
||||
{ "name": "utilitarian", "usphone": "['ju:tili'tєәriәn]", "ukphone": "", "trans": ["a.实用的"] },
|
||||
{ "name": "appreciation", "usphone": "[ә'pri:ʃi'eiʃәn]", "ukphone": "", "trans": ["n.理解"] },
|
||||
{ "name": "obstruction", "usphone": "[әb'strʌkʃәn]", "ukphone": "", "trans": ["n.障碍物"] },
|
||||
{ "name": "elapse", "usphone": "[i'læps]", "ukphone": "", "trans": ["v.消逝"] },
|
||||
{ "name": "hull", "usphone": "[hʌl]", "ukphone": "", "trans": ["n.船体"] },
|
||||
{ "name": "interval", "usphone": "['intәvәl]", "ukphone": "", "trans": ["n.间隔"] },
|
||||
{ "name": "receipt", "usphone": "[ri'si:t]", "ukphone": "", "trans": ["n.收到"] },
|
||||
{ "name": "apparatus", "usphone": "[,æpә'reitәs]", "ukphone": "", "trans": ["n.仪器"] },
|
||||
{ "name": "shoal", "usphone": "[ʃәul]", "ukphone": "", "trans": ["n.鱼群"] },
|
||||
{ "name": "herring", "usphone": "['heriŋ]", "ukphone": "", "trans": ["n.鲱鱼"] },
|
||||
{ "name": "cod", "usphone": "[kɔd]", "ukphone": "", "trans": ["n.鳕鱼"] },
|
||||
{ "name": "squeak", "usphone": "[kwi:k]", "ukphone": "", "trans": ["n.尖叫声"] },
|
||||
{ "name": "slaughter", "usphone": "[slɔ:tә]", "ukphone": "", "trans": ["v.屠宰"] },
|
||||
{ "name": "fit", "usphone": "[it]", "ukphone": "", "trans": ["a.适合"] },
|
||||
{ "name": "grace", "usphone": "[greis]", "ukphone": "", "trans": ["v.给…增光"] },
|
||||
{ "name": "tariff", "usphone": "['tærif]", "ukphone": "", "trans": ["n.关税"] },
|
||||
{ "name": "standard", "usphone": "['stændәd]", "ukphone": "", "trans": ["n.标准"] },
|
||||
{ "name": "dialysis", "usphone": "[dai'ælisis]", "ukphone": "", "trans": ["n.分离,分解;透析,渗析"] },
|
||||
{ "name": "electrocute", "usphone": "[i'lektrәkjut]", "ukphone": "", "trans": ["v.使触电身亡"] },
|
||||
{ "name": "eliminate", "usphone": "[i'limineit]", "ukphone": "", "trans": ["v.消灭"] },
|
||||
{ "name": "accord", "usphone": "[ә'kɔ:d]", "ukphone": "", "trans": ["n.协议"] },
|
||||
{ "name": "device", "usphone": "[di'vais]", "ukphone": "", "trans": ["n.仪器,器械"] },
|
||||
{ "name": "hammer out", "ukphone": "", "trans": ["v.推敲"] },
|
||||
{ "name": "pact", "usphone": "[pækt]", "ukphone": "", "trans": ["n.合同,条约,公约"] },
|
||||
{ "name": "espionage(title)", "ukphone": "", "trans": ["n.间谍活动"] },
|
||||
{ "name": "Danish", "usphone": "['deiniʃ]", "ukphone": "", "trans": ["a.丹麦的,丹麦人的,丹麦语的"] },
|
||||
{ "name": "minstrel", "usphone": "['minstrәl]", "ukphone": "", "trans": ["n.中世纪的吟游歌手"] },
|
||||
{ "name": "wandering", "usphone": "['wɔndәriŋ]", "ukphone": "", "trans": ["a.漫游的"] },
|
||||
{ "name": "harp", "usphone": "[ha:p]", "ukphone": "", "trans": ["n.竖琴"] },
|
||||
{ "name": "ballad", "usphone": "['bælәd]", "ukphone": "", "trans": ["n.民歌"] },
|
||||
{ "name": "acrobatic", "usphone": "['ækrә'bætik]", "ukphone": "", "trans": ["a.杂技的"] },
|
||||
{ "name": "conjuring", "usphone": "['kʌndʒәriŋ]", "ukphone": "", "trans": ["n.魔术"] },
|
||||
{ "name": "Athelney", "ukphone": "", "trans": ["n.阿塞尔纳(英国一个小岛)"] },
|
||||
{ "name": "Chippenham", "ukphone": "", "trans": ["n.切本哈姆(英国一城市)"] },
|
||||
{ "name": "thither", "usphone": "['ðiðә]", "ukphone": "", "trans": ["ad.向那里"] },
|
||||
{ "name": "Dane", "usphone": "[dein]", "ukphone": "", "trans": ["n.丹麦人"] },
|
||||
{ "name": "slack", "usphone": "[slæk]", "ukphone": "", "trans": ["a.涣散的"] },
|
||||
{ "name": "conqueror", "usphone": "['kɔŋkәrә]", "ukphone": "", "trans": ["n.征服者"] },
|
||||
{ "name": "casual", "usphone": "['kæʒjuәl]", "ukphone": "", "trans": ["a.马虎的,随便的"] },
|
||||
{ "name": "precaution", "usphone": "[pri'kɔ:ʃәn]", "ukphone": "", "trans": ["n.预防,警惕"] },
|
||||
{ "name": "proceeds", "ukphone": "", "trans": ["n.所得"] },
|
||||
{ "name": "assemble", "usphone": "[ә'sembl]", "ukphone": "", "trans": ["v.集合"] },
|
||||
{ "name": "trivial", "usphone": "['triviәl]", "ukphone": "", "trans": ["a.微不足道的"] },
|
||||
{ "name": "prolonged", "ukphone": "", "trans": ["a.持久的"] },
|
||||
{ "name": "commissary", "usphone": "['kɔmisәri]", "ukphone": "", "trans": ["n.军粮供应"] },
|
||||
{ "name": "episode", "usphone": "['episәud]", "ukphone": "", "trans": ["n.一个事件,片断"] },
|
||||
{ "name": "epic", "usphone": "['epik]", "ukphone": "", "trans": ["n.史诗"] },
|
||||
{ "name": "harry", "usphone": "['hæri]", "ukphone": "", "trans": ["v.骚扰"] },
|
||||
{ "name": "assail", "usphone": "[ә'seil]", "ukphone": "", "trans": ["v.袭击"] },
|
||||
{ "name": "skirmish", "usphone": "['skә:miʃ]", "ukphone": "", "trans": ["n.小规模战斗"] },
|
||||
{ "name": "silicon", "usphone": "['silikәn]", "ukphone": "", "trans": ["n.硅"] },
|
||||
{ "name": "integrated", "usphone": "['intәgreitid]", "ukphone": "", "trans": ["a.综合的"] },
|
||||
{ "name": "circuit", "usphone": "['sә:kit]", "ukphone": "", "trans": ["n.线路,电路"] },
|
||||
{ "name": "California", "usphone": "['kæli'fɔ:njә]", "ukphone": "", "trans": ["n.加利福尼亚(美国州名)"] },
|
||||
{ "name": "workstation", "ukphone": "", "trans": ["n.工作站"] },
|
||||
{ "name": "chip", "usphone": "[tʃip]", "ukphone": "", "trans": ["n.芯片,集成电路片,集成块"] },
|
||||
{ "name": "newsletter", "usphone": "[nju:z'letә]", "ukphone": "", "trans": ["n.时事通讯"] },
|
||||
{ "name": "Macintosh", "ukphone": "", "trans": ["n.苹果机,一种个人电脑"] },
|
||||
{ "name": "penalize", "usphone": "['pi:nlaiz]", "ukphone": "", "trans": ["v.处罚,惩罚"] },
|
||||
{ "name": "customize", "ukphone": "", "trans": ["v.按顾客具体需要制造"] },
|
||||
{ "name": "spawn", "usphone": "[spɔ:n]", "ukphone": "", "trans": ["v.引起,酿成"] },
|
||||
{ "name": "thrive", "usphone": "[θraiv]", "ukphone": "", "trans": ["v.兴旺,繁荣"] },
|
||||
{ "name": "anarchy", "usphone": "['ænәki]", "ukphone": "", "trans": ["n.无政府状态,混乱"] },
|
||||
{ "name": "oriental", "usphone": "['ɔri'entl]", "ukphone": "", "trans": ["n.东方人"] },
|
||||
{ "name": "constitute", "usphone": "['kɔnstitju:t]", "ukphone": "", "trans": ["v.构成"] },
|
||||
{ "name": "drove", "usphone": "[drәuv]", "ukphone": "", "trans": ["n.群"] },
|
||||
{ "name": "innovator", "usphone": "['inouveitә]", "ukphone": "", "trans": ["n.改革者"] },
|
||||
{ "name": "forge", "usphone": "[fɔ:dʒ]", "ukphone": "", "trans": ["v.发展"] },
|
||||
{ "name": "memory-chip", "ukphone": "", "trans": ["n.内存条"] },
|
||||
{ "name": "Kansas", "usphone": "['kænzәs]", "ukphone": "", "trans": ["n.堪萨斯(美国州名)"] },
|
||||
{ "name": "Missouri", "usphone": "[mә'zuri]", "ukphone": "", "trans": ["n.密苏里(美国州名)"] },
|
||||
{ "name": "oppress", "usphone": "[ә'pres]", "ukphone": "", "trans": ["v.忧郁,压抑"] },
|
||||
{ "name": "justification", "usphone": "['dʒʌstifi'keiʃәn]", "ukphone": "", "trans": ["n.正当理由"] },
|
||||
{ "name": "justifiably", "usphone": "[-faiәbli]", "ukphone": "", "trans": ["ad.无可非议地"] },
|
||||
{ "name": "cheat", "usphone": "[tʃi:t]", "ukphone": "", "trans": ["v.欺骗"] },
|
||||
{ "name": "abject", "usphone": "['æbdʒekt]", "ukphone": "", "trans": ["a.可怜的"] },
|
||||
{ "name": "ignoble", "usphone": "[ig'nәubl]", "ukphone": "", "trans": ["a.不体面的,可耻的"] },
|
||||
{ "name": "impersonal", "usphone": "[im'pә:sәnl]", "ukphone": "", "trans": ["a.超脱个人感情影响的"] },
|
||||
{ "name": "ego", "usphone": "['egәu]", "ukphone": "", "trans": ["n.自我"] },
|
||||
{ "name": "recede", "usphone": "[ri'si:d]", "ukphone": "", "trans": ["v.退去"] },
|
||||
{ "name": "increasingly", "usphone": "[in'kri:siŋli]", "ukphone": "", "trans": ["ad.日益,不断"] },
|
||||
{ "name": "passionately", "ukphone": "", "trans": ["a..激昂地"] },
|
||||
{ "name": "painlessly", "ukphone": "", "trans": ["a..毫无痛苦地"] },
|
||||
{ "name": "vitality", "usphone": "[vai'tæliti]", "ukphone": "", "trans": ["n.精力"] },
|
||||
{ "name": "weariness", "usphone": "[wiәrinis]", "ukphone": "", "trans": ["n.疲惫感"] },
|
||||
{ "name": "current", "usphone": "['kʌrәnt]", "ukphone": "", "trans": ["a.通用的,流行的"] },
|
||||
{ "name": "account", "usphone": "[ә'kaunt]", "ukphone": "", "trans": ["n.账户"] },
|
||||
{ "name": "cash", "usphone": "[kæʃ]", "ukphone": "", "trans": ["n.现金"] },
|
||||
{ "name": "cheque", "usphone": "[tʃek]", "ukphone": "", "trans": ["n.支票"] },
|
||||
{ "name": "debtor", "usphone": "['detә]", "ukphone": "", "trans": ["n.借方"] },
|
||||
{ "name": "creditor", "usphone": "['kreditә]", "ukphone": "", "trans": ["n.贷方"] },
|
||||
{ "name": "obligation", "usphone": "['ɔbli'geiʃәn]", "ukphone": "", "trans": ["n.义务"] },
|
||||
{ "name": "complication", "usphone": "['kɔmpli'keiʃәn]", "ukphone": "", "trans": ["n.纠纷"] },
|
||||
{ "name": "debit", "usphone": "['debit]", "ukphone": "", "trans": ["v.把…记入借方"] },
|
||||
{ "name": "specimen", "usphone": "['spesimin]", "ukphone": "", "trans": ["n.样本"] },
|
||||
{ "name": "forge", "usphone": "[fɔ:dʒ]", "ukphone": "", "trans": ["v.发展"] },
|
||||
{ "name": "forgery", "usphone": "['fɔ:dʒәri]", "ukphone": "", "trans": ["n.伪造(文件,签名等)"] },
|
||||
{ "name": "adopt", "usphone": "[ә'dɔpt]", "ukphone": "", "trans": ["v.采用"] },
|
||||
{ "name": "facilitate", "usphone": "[fә'siliteit]", "ukphone": "", "trans": ["v.使便利"] },
|
||||
{ "name": "mineral", "usphone": "['minәrәl]", "ukphone": "", "trans": ["a.矿物的"] },
|
||||
{ "name": "boring", "usphone": "['bɔ:riŋ]", "ukphone": "", "trans": ["n.钻孔"] },
|
||||
{ "name": "derrick", "usphone": "['derik]", "ukphone": "", "trans": ["n.井架"] },
|
||||
{ "name": "haul", "usphone": "[hɔ:l]", "ukphone": "", "trans": ["v.拖,拉"] },
|
||||
{ "name": "rotate", "usphone": "[rәu'teit]", "ukphone": "", "trans": ["v.使转动"] },
|
||||
{ "name": "cutting bit", "ukphone": "", "trans": ["钻头"] },
|
||||
{ "name": "geologist", "usphone": "[dʒi'ɔlәdʒist]", "ukphone": "", "trans": ["n.地质学家"] },
|
||||
{ "name": "coring bit", "ukphone": "", "trans": ["取芯钻头"] },
|
||||
{ "name": "cylinder", "usphone": "['silindә]", "ukphone": "", "trans": ["n.圆柱体"] },
|
||||
{ "name": "strata", "usphone": "['streitә]", "ukphone": "", "trans": ["n.岩层[复]([单]stratum)"] },
|
||||
{ "name": "circulate", "usphone": "['sә:kjuleit]", "ukphone": "", "trans": ["v.注入,环流"] },
|
||||
{ "name": "gusher", "ukphone": "", "trans": ["n.喷油井"] },
|
||||
{ "name": "forecast", "usphone": "['fɔ:ka:st]", "ukphone": "", "trans": ["n.预报"] },
|
||||
{ "name": "speculative", "usphone": "['spekjulәtiv]", "ukphone": "", "trans": ["a.推测的"] },
|
||||
{ "name": "blizzard", "usphone": "['blizәd]", "ukphone": "", "trans": ["n.暴风雪"] },
|
||||
{ "name": "deteriorate", "usphone": "[di'tiәriәreit]", "ukphone": "", "trans": ["v.变坏,恶化"] },
|
||||
{ "name": "multiply", "usphone": "['mʌltiplai]", "ukphone": "", "trans": ["v.增加"] },
|
||||
{ "name": "cascade", "usphone": "[kæs'keid]", "ukphone": "", "trans": ["v.瀑布似地落下"] },
|
||||
{ "name": "turbulent", "usphone": "['tә:bjulәnt]", "ukphone": "", "trans": ["a.狂暴的"] },
|
||||
{ "name": "dust devil", "ukphone": "", "trans": ["小尘暴,尘旋风"] },
|
||||
{ "name": "squall", "usphone": "[skwɔ:l]", "ukphone": "", "trans": ["n.暴风"] },
|
||||
{ "name": "eddy", "usphone": "['edi]", "ukphone": "", "trans": ["n.旋涡"] },
|
||||
{ "name": "grid", "usphone": "[grid]", "ukphone": "", "trans": ["n.坐标方格"] },
|
||||
{ "name": "sensor", "usphone": "['sensә]", "ukphone": "", "trans": ["n.传感器"] },
|
||||
{ "name": "humidity", "usphone": "[hju:'miditi]", "ukphone": "", "trans": ["n.湿度"] },
|
||||
{ "name": "meteorologist", "ukphone": "", "trans": ["n.气象学家"] },
|
||||
{ "name": "Princeton", "usphone": "['prinstәn]", "ukphone": "", "trans": ["n.普林斯顿(美国城市名)"] },
|
||||
{ "name": "Mew Jersey", "ukphone": "", "trans": ["n.新泽西(美国州名)"] },
|
||||
{ "name": "fluctuation", "usphone": "['flʌktju'eiʃәn]", "ukphone": "", "trans": ["n.起伏,波动"] },
|
||||
{ "name": "deviation", "usphone": "['di:vi'eiʃәn]", "ukphone": "", "trans": ["n.偏差"] },
|
||||
{ "name": "secrecy (title)", "ukphone": "", "trans": ["n.秘密"] },
|
||||
{ "name": "effectiveness", "usphone": "[i'fektivnis]", "ukphone": "", "trans": ["n.成效,效力"] },
|
||||
{ "name": "inquiry", "usphone": "[in'kwaiәri]", "ukphone": "", "trans": ["n.调查研究"] },
|
||||
{ "name": "positive", "usphone": "['pɔzәtiv]", "ukphone": "", "trans": ["a.确实的"] },
|
||||
{ "name": "process", "usphone": "['prәuses]", "ukphone": "", "trans": ["n.过程"] },
|
||||
{ "name": "patent", "usphone": "['peitәnt]", "ukphone": "", "trans": ["n.专利 v.得到专利权"] },
|
||||
{ "name": "agent", "usphone": "['eidʒәnt]", "ukphone": "", "trans": ["n.情报人员"] },
|
||||
{ "name": "physiological", "usphone": "['fiziә'lɔdʒikәl]", "ukphone": "", "trans": ["a.生理的"] },
|
||||
{ "name": "maximum", "usphone": "['mæksimәm]", "ukphone": "", "trans": ["a.最大限度的"] },
|
||||
{ "name": "consideration", "usphone": "[kәn'sidә'reiʃәn]", "ukphone": "", "trans": ["n.考虑"] },
|
||||
{ "name": "descendant", "usphone": "[di'sendәnt]", "ukphone": "", "trans": ["n.子孙,后代"] },
|
||||
{ "name": "artificial", "usphone": "['a:ti'fiʃәl]", "ukphone": "", "trans": ["a.人工的"] },
|
||||
{ "name": "impose", "usphone": "[im'pәuz]", "ukphone": "", "trans": ["v.强加"] },
|
||||
{ "name": "dimension", "usphone": "[di'menʃәn]", "ukphone": "", "trans": ["n.直径"] },
|
||||
{ "name": "skyscraper", "usphone": "['skai'skreipә]", "ukphone": "", "trans": ["n.摩天大楼"] },
|
||||
{ "name": "tenant", "usphone": "['tenәnt]", "ukphone": "", "trans": ["n.租户"] },
|
||||
{ "name": "civilized", "usphone": "['sivilaizd]", "ukphone": "", "trans": ["a.文明的"] },
|
||||
{ "name": "banal", "usphone": "[bә'na:l]", "ukphone": "", "trans": ["a.平庸的"] },
|
||||
{ "name": "luxury", "usphone": "['lʌkʃәri]", "ukphone": "", "trans": ["n.豪华"] },
|
||||
{ "name": "deprive", "usphone": "[di'praiv]", "ukphone": "", "trans": ["v.剥夺"] },
|
||||
{ "name": "monstrous", "usphone": "['mɔnstrәs]", "ukphone": "", "trans": ["a.畸形的"] },
|
||||
{ "name": "edifice", "usphone": "['edifis]", "ukphone": "", "trans": ["n.大厦"] },
|
||||
{ "name": "toxic", "usphone": "['tɔksik]", "ukphone": "", "trans": ["a.有毒的"] },
|
||||
{ "name": "ceaselessly", "usphone": "['si:slisli]", "ukphone": "", "trans": ["ad.不停地"] },
|
||||
{ "name": "throng", "usphone": "[θrɔŋ]", "ukphone": "", "trans": ["v.挤满,壅塞"] },
|
||||
{ "name": "settlement", "usphone": "['setlmәnt]", "ukphone": "", "trans": ["n.新拓居地"] },
|
||||
{ "name": "enterprising", "usphone": "['entәpraiziŋ]", "ukphone": "", "trans": ["a.有事业心的"] },
|
||||
{ "name": "settler", "usphone": "['setlә]", "ukphone": "", "trans": ["n.移居者"] },
|
||||
{ "name": "Antipodes", "usphone": "[æn'tipәdi:z]", "ukphone": "", "trans": ["n.(the~)新西兰和澳大利亚(英)"] },
|
||||
{ "name": "promiscuous", "usphone": "[prә'miskjuәs]", "ukphone": "", "trans": ["a.杂乱的"] },
|
||||
{ "name": "abandon", "usphone": "[ә'bændәn]", "ukphone": "", "trans": ["n.放任,纵情"] },
|
||||
{ "name": "overrun", "usphone": "[әuvә'rʌn]", "ukphone": "", "trans": ["v.蔓延,泛滥"] },
|
||||
{ "name": "devastation", "usphone": "[devә'steiʃәn]", "ukphone": "", "trans": ["n.破坏,劫掠"] },
|
||||
{ "name": "burrow", "usphone": "['bʌrәu]", "ukphone": "", "trans": ["v.挖、掘"] },
|
||||
{ "name": "susceptible", "usphone": "[sә'septәbl]", "ukphone": "", "trans": ["a.易受感染的"] },
|
||||
{ "name": "virus", "usphone": "['vaiәrәs]", "ukphone": "", "trans": ["n.病毒"] },
|
||||
{ "name": "myxomatosis", "usphone": "['miksәmә'tәusis]", "ukphone": "", "trans": ["n.多发性粘液瘤"] },
|
||||
{ "name": "infect", "usphone": "[in'fekt]", "ukphone": "", "trans": ["v.传染"] },
|
||||
{ "name": "epidemic", "usphone": "['epi'demik]", "ukphone": "", "trans": ["n.流行病"] },
|
||||
{ "name": "mosquito", "usphone": "[mәs'ki:tәu]", "ukphone": "", "trans": ["n.蚊虫"] },
|
||||
{ "name": "carrier", "usphone": "['kæriә]", "ukphone": "", "trans": ["n.带菌者"] },
|
||||
{ "name": "exterminate", "usphone": "[eks'tә:mineit]", "ukphone": "", "trans": ["v.消灭"] },
|
||||
{ "name": "ironically", "usphone": "[ai'rɔnikәli]", "ukphone": "", "trans": ["ad.具有讽刺意味地"] },
|
||||
{ "name": "bequeath", "usphone": "[bi'kwi:ð]", "ukphone": "", "trans": ["v.把…传给"] },
|
||||
{ "name": "pest", "usphone": "[pest]", "ukphone": "", "trans": ["n.害虫,有害动物"] },
|
||||
{ "name": "pestilence", "usphone": "['pestilәns]", "ukphone": "", "trans": ["n.瘟疫"] },
|
||||
{ "name": "confine", "usphone": "[kәn'fain]", "ukphone": "", "trans": ["n.范围"] },
|
||||
{ "name": "domesticate", "usphone": "[dә'mestikeit]", "ukphone": "", "trans": ["v.驯养"] },
|
||||
{ "name": "porpoise(title)", "ukphone": "", "trans": ["n.海豚"] },
|
||||
{ "name": "mariner", "usphone": "['mærinә]", "ukphone": "", "trans": ["n.水手"] },
|
||||
{ "name": "shark", "usphone": "[ʃa:k]", "ukphone": "", "trans": ["n.鲨鱼"] },
|
||||
{ "name": "formation", "usphone": "[fɔ:'meiʃәn]", "ukphone": "", "trans": ["n.队形"] },
|
||||
{ "name": "dolphin", "usphone": "['dɔlfin]", "ukphone": "", "trans": ["n.海豚科动物"] },
|
||||
{ "name": "unconscious", "usphone": "[ʌn'kɔʃәs]", "ukphone": "", "trans": ["a.不省人事的"] },
|
||||
{ "name": "beaver", "usphone": "['bi:vә]", "ukphone": "", "trans": ["n.海狸"] },
|
||||
{ "name": "ashore", "usphone": "[ә'ʃɔ:]", "ukphone": "", "trans": ["ad.上岸"] },
|
||||
{ "name": "waterlogged", "ukphone": "", "trans": ["a.浸满水的"] },
|
||||
{ "name": "scent", "usphone": "[sent]", "ukphone": "", "trans": ["n.香味"] },
|
||||
{ "name": "ensue", "usphone": "[in'sju:]", "ukphone": "", "trans": ["v.接着发生"] },
|
||||
{ "name": "intrigue", "usphone": "[in'tri:g]", "ukphone": "", "trans": ["v.引起兴趣"] },
|
||||
{ "name": "indignity", "usphone": "[in'digniti]", "ukphone": "", "trans": ["n.侮辱"] },
|
||||
{ "name": "snout", "usphone": "[snaut]", "ukphone": "", "trans": ["n.口鼻部"] },
|
||||
{ "name": "shove", "usphone": "[ʃʌv]", "ukphone": "", "trans": ["v.硬推"] },
|
||||
{ "name": "aquaplane", "usphone": "['ækwәplein]", "ukphone": "", "trans": ["n.驾浪滑水板"] },
|
||||
{ "name": "oceanarium", "usphone": "['ouʃәn'ʒәri-әm]", "ukphone": "", "trans": ["n.水族馆"] },
|
||||
{ "name": "swoop", "usphone": "[swu:p]", "ukphone": "", "trans": ["v.猛扑"] },
|
||||
{ "name": "belly", "usphone": "['beli]", "ukphone": "", "trans": ["n.腹部"] },
|
||||
{ "name": "equilibrium", "usphone": "[i:kwi'libriәm]", "ukphone": "", "trans": ["n.平衡"] },
|
||||
{ "name": "butt", "usphone": "[bʌt]", "ukphone": "", "trans": ["v.碰撞"] },
|
||||
{ "name": "crack", "usphone": "[kræk]", "ukphone": "", "trans": ["n.重击"] },
|
||||
{ "name": "speculation", "usphone": "['spekju'leiʃәn]", "ukphone": "", "trans": ["n.推测"] },
|
||||
{ "name": "literally", "usphone": "['litәrәli]", "ukphone": "", "trans": ["ad.确实"] },
|
||||
{ "name": "odd", "usphone": "[ɔd]", "ukphone": "", "trans": ["a.奇特的"] },
|
||||
{ "name": "tissue", "usphone": "['tisju:]", "ukphone": "", "trans": ["n.组织"] },
|
||||
{ "name": "plausible", "usphone": "['plɔ:zәbl]", "ukphone": "", "trans": ["a.似乎有理的"] },
|
||||
{ "name": "hypothesis", "usphone": "[hai'pɔθisi:z]", "ukphone": "", "trans": ["n.假说"] },
|
||||
{ "name": "electroencephalograph", "ukphone": "", "trans": ["n.脑电图仪"] },
|
||||
{ "name": "electrode", "usphone": "[i'lektrәud]", "ukphone": "", "trans": ["n.电极"] },
|
||||
{ "name": "scaly", "usphone": "['skeili]", "ukphone": "", "trans": ["n.头发"] },
|
||||
{ "name": "psychiatrist", "usphone": "[sai'kaiәtrist]", "ukphone": "", "trans": ["n.精神病学家"] },
|
||||
{ "name": "punctuate", "usphone": "['pʌŋktjueit]", "ukphone": "", "trans": ["v.不时介入"] },
|
||||
{ "name": "jerky", "usphone": "[dʒә:ki]", "ukphone": "", "trans": ["a.急动的"] },
|
||||
{ "name": "disorder", "usphone": "[dis'ɔ:dә]", "ukphone": "", "trans": ["n.失调"] },
|
||||
{ "name": "implication", "usphone": "[impli'keiʃәn]", "ukphone": "", "trans": ["n.表明"] },
|
||||
{ "name": "saliva", "usphone": "[sә'laivә]", "ukphone": "", "trans": ["n.唾液"] },
|
||||
{ "name": "digestive", "usphone": "[di'dʒestiv]", "ukphone": "", "trans": ["a.助消化的"] },
|
||||
{ "name": "defy", "usphone": "[di'fai]", "ukphone": "", "trans": ["v.使不可能"] },
|
||||
{ "name": "analysis", "usphone": "[ә'nælәsis]", "ukphone": "", "trans": ["n.分析"] },
|
||||
{ "name": "prey", "usphone": "[prei]", "ukphone": "", "trans": ["n.被捕食的动物"] },
|
||||
{ "name": "fierce", "usphone": "[fiәs]", "ukphone": "", "trans": ["a.凶猛的"] },
|
||||
{ "name": "tussle", "usphone": "['tʌsl]", "ukphone": "", "trans": ["n.扭打"] },
|
||||
{ "name": "carnivore", "usphone": "['ka:nivɔ:]", "ukphone": "", "trans": ["n.食肉动物"] },
|
||||
{ "name": "vertebrate", "usphone": "['vә:tibrit]", "ukphone": "", "trans": ["n.脊椎动物"] },
|
||||
{ "name": "lizard", "usphone": "['lizәd]", "ukphone": "", "trans": ["n.蜥蜴"] },
|
||||
{ "name": "concoct", "usphone": "[kәn'kɔkt]", "ukphone": "", "trans": ["v.调制"] },
|
||||
{ "name": "potency", "usphone": "['pәutәnsi]", "ukphone": "", "trans": ["n.效力"] },
|
||||
{ "name": "conversion", "usphone": "[kәn'vә:ʃәn]", "ukphone": "", "trans": ["n.转变"] },
|
||||
{ "name": "arsenic", "usphone": "['a:snik]", "ukphone": "", "trans": ["n.砒霜"] },
|
||||
{ "name": "strychnine", "usphone": "['striknin]", "ukphone": "", "trans": ["n.马钱子碱"] },
|
||||
{ "name": "mamba", "usphone": "['mɔmbә]", "ukphone": "", "trans": ["n.树眼镜蛇"] },
|
||||
{ "name": "cobra", "usphone": "['kәubrә]", "ukphone": "", "trans": ["n.眼镜蛇"] },
|
||||
{ "name": "venom", "usphone": "['venәm]", "ukphone": "", "trans": ["n.毒液"] },
|
||||
{ "name": "neurotoxic", "usphone": "['njuәrou'tɔksik, 'nu-]", "ukphone": "", "trans": ["a.毒害神经的"] },
|
||||
{ "name": "viper", "usphone": "['vaipә]", "ukphone": "", "trans": ["n.蝰蛇"] },
|
||||
{ "name": "rattlesnake", "usphone": "['rætlsneik]", "ukphone": "", "trans": ["n.响尾蛇"] },
|
||||
{ "name": "haemolytic", "ukphone": "", "trans": ["a.溶血性的"] },
|
||||
{ "name": "viperine", "usphone": "['vaipәrin]", "ukphone": "", "trans": ["a.毒蛇的"] },
|
||||
{ "name": "supreme", "usphone": "[sju:'pri:m]", "ukphone": "", "trans": ["a.首屈一指的"] },
|
||||
{ "name": "protagonist", "usphone": "[prәu'tægәnist]", "ukphone": "", "trans": ["n.主角"] },
|
||||
{ "name": "outlaw", "usphone": "['autlɔ:]", "ukphone": "", "trans": ["n.逃犯,亡命之徒"] },
|
||||
{ "name": "framed", "ukphone": "", "trans": ["a.遭到陷害的"] },
|
||||
{ "name": "vicious", "usphone": "['viʃәs]", "ukphone": "", "trans": ["a.恶毒的"] },
|
||||
{ "name": "mythology", "usphone": "[mi'θɔlәdʒi]", "ukphone": "", "trans": ["n.神话"] },
|
||||
{ "name": "vanished", "ukphone": "", "trans": ["a.消失了的"] },
|
||||
{ "name": "absurdly", "usphone": "[әb'sә:dli]", "ukphone": "", "trans": ["ad.荒诞地"] },
|
||||
{ "name": "arena", "usphone": "[ә'ri:nә]", "ukphone": "", "trans": ["n.竞技场地"] },
|
||||
{ "name": "encroaching", "ukphone": "", "trans": ["a.渐渐渗入的"] },
|
||||
{ "name": "Indian", "usphone": "['indiәn]", "ukphone": "", "trans": ["n.印第安人"] },
|
||||
{ "name": "bewilder", "usphone": "[bi'wildә]", "ukphone": "", "trans": ["v.使手足无措"] },
|
||||
{ "name": "alien", "usphone": "['eiljәn]", "ukphone": "", "trans": ["a.外来的"] },
|
||||
{ "name": "taboo", "usphone": "[tә'bu:]", "ukphone": "", "trans": ["n.戒律"] },
|
||||
{ "name": "disinherit", "usphone": "['disin'herit]", "ukphone": "", "trans": ["v.剥夺…继承权"] },
|
||||
{ "name": "undeclared", "usphone": "['ʌndi'klєәd]", "ukphone": "", "trans": ["a.未经宣布的"] },
|
||||
{ "name": "hypocrisy", "usphone": "[hi'pɔkrәsi]", "ukphone": "", "trans": ["n.伪善"] },
|
||||
{ "name": "chicanery", "usphone": "[ʃi'keinәri]", "ukphone": "", "trans": ["n.诈骗"] },
|
||||
{ "name": "impending", "usphone": "[im'pendiŋ]", "ukphone": "", "trans": ["a.迫近的,迫在眉睫的"] },
|
||||
{ "name": "immolation", "usphone": "[imәu'leiʃәn]", "ukphone": "", "trans": ["n.杀戮"] },
|
||||
{ "name": "code", "usphone": "[kәud]", "ukphone": "", "trans": ["n.准则"] },
|
||||
{ "name": "loom", "usphone": "[lu:m]", "ukphone": "", "trans": ["v.赫然耸起"] },
|
||||
{ "name": "manifest", "usphone": "['mænifest]", "ukphone": "", "trans": ["a.明显的"] },
|
||||
{ "name": "morality", "usphone": "[mә'ræliti]", "ukphone": "", "trans": ["n.道德"] },
|
||||
{ "name": "communicate", "usphone": "[kә'mju:nikeit]", "ukphone": "", "trans": ["v.交流,交际"] },
|
||||
{ "name": "compound", "usphone": "['kɔmpaund, kәm'paund]", "ukphone": "", "trans": ["a.复合的"] },
|
||||
{ "name": "enhance", "usphone": "[in'ha:ns]", "ukphone": "", "trans": ["v.增进"] },
|
||||
{ "name": "tempo", "usphone": "['tempәu]", "ukphone": "", "trans": ["n.速率"] },
|
||||
{ "name": "trickle", "usphone": "['trikl]", "ukphone": "", "trans": ["n.涓涓细流"] },
|
||||
{ "name": "torrent", "usphone": "['tɔrәnt]", "ukphone": "", "trans": ["n.滔滔洪流"] },
|
||||
{ "name": "humanity", "usphone": "[hju:'mæniti]", "ukphone": "", "trans": ["n.人类"] },
|
||||
{ "name": "indifferently", "usphone": "[in'difrәntli]", "ukphone": "", "trans": ["ad.不在乎地"] },
|
||||
{ "name": "grimly", "usphone": "['grimli]", "ukphone": "", "trans": ["ad.可怖地"] },
|
||||
{ "name": "whimsical", "usphone": "['wimzikl]", "ukphone": "", "trans": ["a.怪诞的"] },
|
||||
{ "name": "shatter", "usphone": "['ʃætә]", "ukphone": "", "trans": ["v.毁坏"] },
|
||||
{ "name": "twofold", "usphone": "['tu:fәuld]", "ukphone": "", "trans": ["a.双重的"] },
|
||||
{ "name": "albatross", "usphone": "['ælbәtrɔs]", "ukphone": "", "trans": ["n.信天翁"] },
|
||||
{ "name": "sustenance", "usphone": "['sʌstәnәns]", "ukphone": "", "trans": ["n.支撑力"] },
|
||||
{ "name": "glider", "usphone": "['glaidә]", "ukphone": "", "trans": ["n.滑翔者"] },
|
||||
{ "name": "harness", "usphone": "['ha:nis]", "ukphone": "", "trans": ["v.利用"] },
|
||||
{ "name": "endow", "usphone": "[in'dau]", "ukphone": "", "trans": ["v.赋有"] },
|
||||
{ "name": "ply", "usphone": "[plai]", "ukphone": "", "trans": ["v.不断地供给"] },
|
||||
{ "name": "gale", "usphone": "[geil]", "ukphone": "", "trans": ["n.大风"] },
|
||||
{ "name": "partridge", "usphone": "['pa:tridʒ]", "ukphone": "", "trans": ["n.鹧鸪"] },
|
||||
{ "name": "like", "usphone": "[laik]", "ukphone": "", "trans": ["a.类似的"] },
|
||||
{ "name": "propulsion", "usphone": "[prә'pʌlʃәn]", "ukphone": "", "trans": ["n.推进力"] },
|
||||
{ "name": "utter", "usphone": "['ʌtә]", "ukphone": "", "trans": ["a.完全的"] },
|
||||
{ "name": "slip", "usphone": "[slip]", "ukphone": "", "trans": ["v.滑行"] },
|
||||
{ "name": "adverse", "usphone": "['ædvә:s]", "ukphone": "", "trans": ["a.逆的,相反的"] },
|
||||
{ "name": "omen", "usphone": "['әumen]", "ukphone": "", "trans": ["n.预兆"] },
|
||||
{ "name": "intense", "usphone": "[in'tens]", "ukphone": "", "trans": ["a.强烈的"] },
|
||||
{ "name": "aesthetic", "usphone": "[i:s'θetik]", "ukphone": "", "trans": ["a.审美的"] },
|
||||
{ "name": "realm", "usphone": "['relm]", "ukphone": "", "trans": ["n.世界"] },
|
||||
{ "name": "serenity", "usphone": "[si'reniti]", "ukphone": "", "trans": ["n.静谧"] },
|
||||
{ "name": "undeniable", "usphone": "['ʌndi'naiәbl]", "ukphone": "", "trans": ["a.不可否认的"] },
|
||||
{ "name": "indefinable", "usphone": "['indi'fainәbl]", "ukphone": "", "trans": ["a.模糊不清的"] },
|
||||
{ "name": "vulgar", "usphone": "['vʌlgә]", "ukphone": "", "trans": ["a.平庸的"] },
|
||||
{ "name": "radiance", "usphone": "['reidjәns]", "ukphone": "", "trans": ["n.发光"] },
|
||||
{ "name": "intimation", "usphone": "[inti'meiʃәn]", "ukphone": "", "trans": ["n.暗示"] },
|
||||
{ "name": "unutterable", "usphone": "[ʌn'ʌtәrәbl]", "ukphone": "", "trans": ["a.不可言传的"] },
|
||||
{ "name": "invest", "usphone": "[in'vest]", "ukphone": "", "trans": ["v.赋予"] },
|
||||
{ "name": "auditory", "usphone": "['ɔ:ditɑ:i]", "ukphone": "", "trans": ["a.听觉的"] },
|
||||
{ "name": "inadequate", "usphone": "[in'ædikwit]", "ukphone": "", "trans": ["a.不适当的"] },
|
||||
{ "name": "plea", "usphone": "[pli:]", "ukphone": "", "trans": ["n.要求"] },
|
||||
{ "name": "abatement", "usphone": "[ә'beitmәnt]", "ukphone": "", "trans": ["n.减少"] },
|
||||
{ "name": "discredit", "usphone": "[dis'kredit]", "ukphone": "", "trans": ["v.怀疑"] },
|
||||
{ "name": "allegation", "usphone": "[æli'geiʃәn]", "ukphone": "", "trans": ["n.断言"] },
|
||||
{ "name": "caption", "usphone": "[kæpʃәn]", "ukphone": "", "trans": ["n.插图说明"] },
|
||||
{ "name": "wreck", "usphone": "[rek]", "ukphone": "", "trans": ["n.残废人"] },
|
||||
{ "name": "snag", "usphone": "[snæg]", "ukphone": "", "trans": ["n.疑难之处,障碍"] },
|
||||
{ "name": "anecdote", "usphone": "['ænikdәut]", "ukphone": "", "trans": ["n.轶闻"] },
|
||||
{ "name": "slander", "usphone": "['sla:ndә]", "ukphone": "", "trans": ["v.诽谤"] },
|
||||
{ "name": "persecute", "usphone": "['pә:sikju:t]", "ukphone": "", "trans": ["v.迫害"] },
|
||||
{ "name": "squadron", "usphone": "['skwɔdrәn]", "ukphone": "", "trans": ["n.中队"] },
|
||||
{ "name": "psychiatric", "usphone": "['saiki'ætrik]", "ukphone": "", "trans": ["a.精神病学的"] },
|
||||
{ "name": "diagnosis", "usphone": "['daiәg'nәusis]", "ukphone": "", "trans": ["n.诊断"] },
|
||||
{ "name": "orphanage", "usphone": "['ɔ:fәnidʒ]", "ukphone": "", "trans": ["n.孤儿院"] },
|
||||
{ "name": "preservation", "usphone": "['prezә(:)'veiʃәn]", "ukphone": "", "trans": ["n.保存"] },
|
||||
{ "name": "silt", "usphone": "[silt]", "ukphone": "", "trans": ["n.淤泥"] },
|
||||
{ "name": "scavenger", "usphone": "['skævindʒә]", "ukphone": "", "trans": ["n.食腐动物"] },
|
||||
{ "name": "vole", "usphone": "[vәul]", "ukphone": "", "trans": ["n.野鼠,鼹鼠"] },
|
||||
{ "name": "decompose", "usphone": "['di:kәm'pәuz]", "ukphone": "", "trans": ["v.腐烂"] },
|
||||
{ "name": "inaccessible", "usphone": "[inæk'sesәbl]", "ukphone": "", "trans": ["a.不能到达的"] },
|
||||
{ "name": "crevasse", "usphone": "[kri'væs]", "ukphone": "", "trans": ["n.缝隙"] },
|
||||
{ "name": "Siberian", "usphone": "[sai'biәriәn]", "ukphone": "", "trans": ["a.西伯利亚的"] },
|
||||
{ "name": "paleontological", "ukphone": "", "trans": ["a.古生物学的"] },
|
||||
{ "name": "St.Petersbrug", "ukphone": "", "trans": ["n.圣彼得堡"] },
|
||||
{ "name": "sabre-toothed", "ukphone": "", "trans": ["a.长着锐利的长犬牙的"] },
|
||||
{ "name": "venture", "usphone": "['ventʃә]", "ukphone": "", "trans": ["v.冒险"] },
|
||||
{ "name": "bogged", "ukphone": "", "trans": ["a.陷入泥沼的,陷于困境的"] },
|
||||
{ "name": "galleon", "usphone": "['gæliәn]", "ukphone": "", "trans": ["n.大型帆船"] },
|
||||
{ "name": "Stockholm", "usphone": "['stɔkhәum]", "ukphone": "", "trans": ["n.斯德哥尔摩"] },
|
||||
{ "name": "flagship", "usphone": "['flægʃip]", "ukphone": "", "trans": ["n.旗舰"] },
|
||||
{ "name": "imperial", "usphone": "[im'piәriәl]", "ukphone": "", "trans": ["a.帝国的"] },
|
||||
{ "name": "hurricane", "usphone": "['hʌrikәn]", "ukphone": "", "trans": ["n.飓风"] },
|
||||
{ "name": "might", "usphone": "[mait]", "ukphone": "", "trans": ["n.力量"] },
|
||||
{ "name": "ferment", "usphone": "['fә:ment]", "ukphone": "", "trans": ["n.激动不安"] },
|
||||
{ "name": "ornament", "usphone": "['ɔ:nәmәnt, 'ɔ:nәment]", "ukphone": "", "trans": ["v.装饰"] },
|
||||
{ "name": "riot", "usphone": "['raiәt]", "ukphone": "", "trans": ["n.丰富"] },
|
||||
{ "name": "demon", "usphone": "['di:mәn]", "ukphone": "", "trans": ["n.恶魔"] },
|
||||
{ "name": "mermaid", "usphone": "['mә:meid]", "ukphone": "", "trans": ["n.美人鱼"] },
|
||||
{ "name": "cherub", "usphone": "['tʃerәb]", "ukphone": "", "trans": ["n.小天使"] },
|
||||
{ "name": "zoomorphic", "usphone": "['zouә'mɔ:fik]", "ukphone": "", "trans": ["a.兽形的"] },
|
||||
{ "name": "ablaze", "usphone": "[ә'bleiz]", "ukphone": "", "trans": ["a.光彩的"] },
|
||||
{ "name": "portray", "usphone": "[pɔ:'trei]", "ukphone": "", "trans": ["v.绘制"] },
|
||||
{ "name": "drifting", "ukphone": "", "trans": ["a.弥漫的"] },
|
||||
{ "name": "churn", "usphone": "[tʃә:n]", "ukphone": "", "trans": ["v.翻滚"] },
|
||||
{ "name": "pennant", "ukphone": "", "trans": ["n.三角旗"] },
|
||||
{ "name": "superstructure", "usphone": "['sju:pә'strʌktʃә]", "ukphone": "", "trans": ["n.上部结构"] },
|
||||
{ "name": "armament", "usphone": "['a:mәmәnt]", "ukphone": "", "trans": ["n.军械"] },
|
||||
{ "name": "triple", "usphone": "['tripl]", "ukphone": "", "trans": ["a.三层的"] },
|
||||
{ "name": "mount", "usphone": "[maunt]", "ukphone": "", "trans": ["v. 登上"] },
|
||||
{ "name": "bronze", "usphone": "[brɔnz]", "ukphone": "", "trans": ["n.青铜"] },
|
||||
{ "name": "cannon", "usphone": "['kænәn]", "ukphone": "", "trans": ["n.加农炮"] },
|
||||
{ "name": "majestic", "usphone": "[mә'dʒestik]", "ukphone": "", "trans": ["a.威严的"] },
|
||||
{ "name": "muzzle", "usphone": "['mʌzl]", "ukphone": "", "trans": ["n.炮口"] },
|
||||
{ "name": "freshen", "usphone": "['freʃәn]", "ukphone": "", "trans": ["v.变强"] },
|
||||
{ "name": "squall", "usphone": "[skwɔ:l]", "ukphone": "", "trans": ["n.暴风"] },
|
||||
{ "name": "list", "usphone": "[list]", "ukphone": "", "trans": ["v.倾斜"] },
|
||||
{ "name": "port", "usphone": "[pɔ:t]", "ukphone": "", "trans": ["n.(船、飞机的)左舷"] },
|
||||
{ "name": "ordnance", "usphone": "['ɔ:dnәns]", "ukphone": "", "trans": ["n.军械"] },
|
||||
{ "name": "heave", "usphone": "[hi:v]", "ukphone": "", "trans": ["v.拖"] },
|
||||
{ "name": "starboard", "usphone": "['sta:bәd]", "ukphone": "", "trans": ["n.(船、飞机的)右舷"] },
|
||||
{ "name": "counteract", "usphone": "['kauntә'rækt]", "ukphone": "", "trans": ["v.抵消"] },
|
||||
{ "name": "steepen", "usphone": "['sti:pәn]", "ukphone": "", "trans": ["v.变得更陡峭"] },
|
||||
{ "name": "ballast", "usphone": "['bælәst]", "ukphone": "", "trans": ["n.压舱物"] },
|
||||
{ "name": "inrush", "usphone": "['inrʌʃ]", "ukphone": "", "trans": ["n.水的涌入"] },
|
||||
{ "name": "Baltic", "usphone": "['bɔ:ltik]", "ukphone": "", "trans": ["n.波罗的海"] },
|
||||
{ "name": "skeptical", "usphone": "['skeptikәl]", "ukphone": "", "trans": ["a.怀疑的"] },
|
||||
{ "name": "forefathers", "ukphone": "", "trans": ["n.祖先"] },
|
||||
{ "name": "fervently", "usphone": "['fә:vәntli]", "ukphone": "", "trans": ["ad.热情地"] },
|
||||
{ "name": "curative", "usphone": "['kjuәrәtiv]", "ukphone": "", "trans": ["a.治病的"] },
|
||||
{ "name": "astronomical", "usphone": "['æstrә'nɔmikәl]", "ukphone": "", "trans": ["a.天文学的"] },
|
||||
{ "name": "tangible", "usphone": "[tændʒәbl]", "ukphone": "", "trans": ["a.实实在在的"] },
|
||||
{ "name": "remedy", "usphone": "['remidi]", "ukphone": "", "trans": ["n.药物"] },
|
||||
{ "name": "ointment", "usphone": "['ɔintmәnt]", "ukphone": "", "trans": ["n.药膏"] },
|
||||
{ "name": "prescribe", "usphone": "[pris'kraib]", "ukphone": "", "trans": ["v.开药方"] },
|
||||
{ "name": "indisposition", "usphone": "[in'dispә'ziʃәn]", "ukphone": "", "trans": ["n.小病"] },
|
||||
{ "name": "disgusting", "ukphone": "", "trans": ["a.令人讨厌的"] },
|
||||
{ "name": "inconvenience", "usphone": "['inkәn'vi:njәns]", "ukphone": "", "trans": ["n.不便"] },
|
||||
{ "name": "hovercraft", "usphone": "['hɔvәkra:ft]", "ukphone": "", "trans": ["n.气垫船"] },
|
||||
{ "name": "Norfolk Broads", "ukphone": "", "trans": ["n.诺福克郡的湖泊地区"] },
|
||||
{ "name": "cushion", "usphone": "['kuʃәn]", "ukphone": "", "trans": ["n.座垫"] },
|
||||
{ "name": "ring", "usphone": "[riŋ]", "ukphone": "", "trans": ["v.围"] },
|
||||
{ "name": "Solent", "ukphone": "", "trans": ["n.(英国的)苏伦特海峡"] },
|
||||
{ "name": "sensation", "usphone": "[sen'seiʃәn]", "ukphone": "", "trans": ["n.轰动"] },
|
||||
{ "name": "dune", "usphone": "[dju:n]", "ukphone": "", "trans": ["n.沙丘"] },
|
||||
{ "name": "plantation", "usphone": "[plæn'teiʃәn]", "ukphone": "", "trans": ["n.种植园"] },
|
||||
{ "name": "hover-train", "ukphone": "", "trans": ["n.气垫火车"] },
|
||||
{ "name": "navigation", "usphone": "['nævi'geiʃәn]", "ukphone": "", "trans": ["n.航海"] },
|
||||
{ "name": "sounding", "ukphone": "", "trans": ["n.水深度"] },
|
||||
{ "name": "porcupine", "usphone": "['pɔ:kjupain]", "ukphone": "", "trans": ["n.箭猪"] },
|
||||
{ "name": "dredge", "usphone": "[dredʒ]", "ukphone": "", "trans": ["v.挖掘"] },
|
||||
{ "name": "expedition", "usphone": "['ekspi'diʃәn]", "ukphone": "", "trans": ["n.远征"] },
|
||||
{ "name": "physicist", "usphone": "['fizisist]", "ukphone": "", "trans": ["n.物理学家"] },
|
||||
{ "name": "magnitude", "usphone": "['mægnitju:d]", "ukphone": "", "trans": ["n.很多"] },
|
||||
{ "name": "topography", "usphone": "[tә'pɔgrәfi]", "ukphone": "", "trans": ["n.地形"] },
|
||||
{ "name": "crust", "usphone": "[krʌst]", "ukphone": "", "trans": ["n.地壳"] },
|
||||
{ "name": "rugged", "usphone": "['rʌgid]", "ukphone": "", "trans": ["a.崎岖不平的"] },
|
||||
{ "name": "tableland", "ukphone": "", "trans": ["n.高地"] },
|
||||
{ "name": "sediment", "usphone": "['sedimәnt]", "ukphone": "", "trans": ["n.沉淀物"] },
|
||||
{ "name": "terrace", "usphone": "['terәs]", "ukphone": "", "trans": ["n.阶地"] },
|
||||
{ "name": "erode", "usphone": "[i'rәud]", "ukphone": "", "trans": ["v.侵蚀"] },
|
||||
{ "name": "colour-blind", "ukphone": "", "trans": ["a.色盲的"] },
|
||||
{ "name": "perception", "usphone": "[pә'sepʃәn]", "ukphone": "", "trans": ["n.知觉"] },
|
||||
{ "name": "comprehend", "usphone": "['kɔmpri'hend]", "ukphone": "", "trans": ["v.理解"] },
|
||||
{ "name": "spatial", "usphone": "['speiʃәl]", "ukphone": "", "trans": ["a.空间的"] },
|
||||
{ "name": "visualize", "usphone": "['vizjuәlaiz]", "ukphone": "", "trans": ["v.使具形象,设想"] },
|
||||
{ "name": "reminiscence", "usphone": "['remi'nisns]", "ukphone": "", "trans": ["n.回忆,联想"] },
|
||||
{ "name": "tadpole", "usphone": "['tædpәul]", "ukphone": "", "trans": ["n.蝌蚪"] },
|
||||
{ "name": "mushroom", "usphone": "['mʌʃrum]", "ukphone": "", "trans": ["n.蘑菇"] },
|
||||
{ "name": "carrot", "usphone": "['kærәt]", "ukphone": "", "trans": ["n.胡萝卜"] },
|
||||
{ "name": "bud", "usphone": "[bʌd]", "ukphone": "", "trans": ["n.花蕾"] },
|
||||
{ "name": "lark", "usphone": "[la:k]", "ukphone": "", "trans": ["n.云雀"] },
|
||||
{ "name": "ladybird", "ukphone": "", "trans": ["n.瓢虫"] },
|
||||
{ "name": "bulrush", "usphone": "['bulrʌʃ]", "ukphone": "", "trans": ["n.芦苇"] },
|
||||
{ "name": "controversy", "usphone": "['kɔntrәvә:si]", "ukphone": "", "trans": ["n.争议,争论"] },
|
||||
{ "name": "dust", "usphone": "[dʌst]", "ukphone": "", "trans": ["n.纠纷,骚动"] },
|
||||
{ "name": "clash", "usphone": "[klæʃ]", "ukphone": "", "trans": ["n.冲突"] },
|
||||
{ "name": "Inquisition", "usphone": "[inkwi'ziʃәn]", "ukphone": "", "trans": ["n.(罗马天主教的)宗教法庭"] },
|
||||
{ "name": "perspective", "usphone": "[pә:'spektiv]", "ukphone": "", "trans": ["n.观点,看法"] },
|
||||
{ "name": "despise", "usphone": "[dis'paiz]", "ukphone": "", "trans": ["v.蔑视"] },
|
||||
{ "name": "generalize", "usphone": "['dʒenәrәlaiz]", "ukphone": "", "trans": ["v.归纳"] },
|
||||
{ "name": "undercurrent", "usphone": "['ʌndә'kʌrәnt]", "ukphone": "", "trans": ["n.潜流"] },
|
||||
{ "name": "theoretical", "usphone": "[θiә'retikl]", "ukphone": "", "trans": ["a.理论上的"] },
|
||||
{ "name": "potentiality", "usphone": "[pә'tenʃi'æliti]", "ukphone": "", "trans": ["n.潜能"] },
|
||||
{ "name": "intimate", "usphone": "['intimit]", "ukphone": "", "trans": ["a.详尽的"] },
|
||||
{ "name": "familiarity", "usphone": "[fә'mili'æriti]", "ukphone": "", "trans": ["n.熟悉"] },
|
||||
{ "name": "culpable", "usphone": "['kʌlpәbl]", "ukphone": "", "trans": ["a.应受谴责的"] },
|
||||
{ "name": "Aristotelian", "usphone": "[æristә'ti:liәn]", "ukphone": "", "trans": ["n.亚里士多德学派的人"] },
|
||||
{ "name": "Aristotle", "usphone": "['æristɔtl]", "ukphone": "", "trans": ["n.亚里士多德(古希腊哲学家)"] },
|
||||
{ "name": "Leaning Tower Pisa", "ukphone": "", "trans": ["比萨斜塔"] },
|
||||
{ "name": "spiral", "usphone": "['spaiәrәl]", "ukphone": "", "trans": ["a.螺旋状的"] },
|
||||
{ "name": "nebula", "usphone": "['nebjulә]", "ukphone": "", "trans": ["n.星云"] },
|
||||
{ "name": "scratch", "usphone": "[skrætʃ]", "ukphone": "", "trans": ["n.擦痕"] },
|
||||
{ "name": "contrivance", "usphone": "[kәn'traivәns]", "ukphone": "", "trans": ["n.器械"] },
|
||||
{ "name": "distort", "usphone": "[dis'tɔ:t]", "ukphone": "", "trans": ["v.歪曲"] },
|
||||
{ "name": "adverse", "usphone": "['ædvә:s]", "ukphone": "", "trans": ["a.逆的,相反的"] },
|
||||
{ "name": "purchasable", "usphone": "['pә:tʃәsәbl]", "ukphone": "", "trans": ["a.可买到的"] },
|
||||
{ "name": "preacher", "usphone": "['pri:tʃә]", "ukphone": "", "trans": ["n.传教士"] },
|
||||
{ "name": "defendant", "usphone": "[di'fendәnt]", "ukphone": "", "trans": ["n.被告"] },
|
||||
{ "name": "outlook", "usphone": "['aut-luk]", "ukphone": "", "trans": ["n.视野"] },
|
||||
{ "name": "capacity", "usphone": "[kә'pæsiti]", "ukphone": "", "trans": ["n.能力"] },
|
||||
{ "name": "means", "usphone": "[mi:nz]", "ukphone": "", "trans": ["n.方法,手段,财产,资力"] },
|
||||
{ "name": "hamper", "usphone": "['hæmpә]", "ukphone": "", "trans": ["v.妨碍"] },
|
||||
{ "name": "savannah", "usphone": "[sә'vænә]", "ukphone": "", "trans": ["n.大草原"] },
|
||||
{ "name": "democratic", "usphone": "['demә'krætik]", "ukphone": "", "trans": ["a.民主的"] },
|
||||
{ "name": "tribal", "usphone": "[traibl]", "ukphone": "", "trans": ["a.部落的"] },
|
||||
{ "name": "tribe", "usphone": "[traib]", "ukphone": "", "trans": ["n.部落"] },
|
||||
{ "name": "illiterate", "usphone": "[i'litәrit]", "ukphone": "", "trans": ["n.文盲"] },
|
||||
{ "name": "compulsory", "usphone": "[kәm'pʌlsәri]", "ukphone": "", "trans": ["a.义务的"] },
|
||||
{ "name": "deem", "usphone": "[di:m]", "ukphone": "", "trans": ["v.认为"] },
|
||||
{ "name": "juvenile", "usphone": "['dʒu:vinail]", "ukphone": "", "trans": ["a.青少年的"] },
|
||||
{ "name": "delinquency", "usphone": "[di'liŋkwәnsi]", "ukphone": "", "trans": ["n.犯罪"] },
|
||||
{ "name": "adolescence", "usphone": "['ædәu'lesns]", "ukphone": "", "trans": ["n.青春期"] },
|
||||
{ "name": "slur", "usphone": "[slә:]", "ukphone": "", "trans": ["n.诋毁"] },
|
||||
{ "name": "adolescent", "usphone": "[ædә'lesәnt]", "ukphone": "", "trans": ["n.青少年(-岁)"] },
|
||||
{ "name": "disloyalty", "usphone": "[dis'lɔiәlti]", "ukphone": "", "trans": ["n.不忠实"] },
|
||||
{ "name": "spiteful", "usphone": "['spaitful]", "ukphone": "", "trans": ["a.恶意的,怀恨的"] },
|
||||
{ "name": "disillusionment", "usphone": "[-mәnt]", "ukphone": "", "trans": ["n.幻灭感"] },
|
||||
{ "name": "evaluation", "usphone": "[i'vælju'eiʃәn]", "ukphone": "", "trans": ["n.评价"] },
|
||||
{ "name": "Infallibility", "usphone": "[n'fælә'bilәti]", "ukphone": "", "trans": ["n.一贯正确"] },
|
||||
{ "name": "resent", "usphone": "[ri'zent]", "ukphone": "", "trans": ["v.怨恨"] },
|
||||
{ "name": "sincerity", "usphone": "[sin'seriti]", "ukphone": "", "trans": ["n.诚挚"] },
|
||||
{ "name": "victorian", "usphone": "[vik'tɔ:riәn]", "ukphone": "", "trans": ["a.维多利亚式的"] },
|
||||
{ "name": "retreat", "usphone": "[ri'tri:t]", "ukphone": "", "trans": ["v.后退"] },
|
||||
{ "name": "unreasoning", "usphone": "[ʌn'ri:zәniŋ]", "ukphone": "", "trans": ["a.不凭理智的"] },
|
||||
{ "name": "authoritarian", "usphone": "[ɔ:'θɔri'tєәriәn]", "ukphone": "", "trans": ["a.专制的"] },
|
||||
{ "name": "cow", "usphone": "[kau]", "ukphone": "", "trans": ["v.吓唬"] },
|
||||
{ "name": "hub", "usphone": "[hʌb]", "ukphone": "", "trans": ["n.(活动的)中心"] },
|
||||
{ "name": "lunar", "usphone": "['lju:nә]", "ukphone": "", "trans": ["a.月球的"] },
|
||||
{ "name": "oxygen", "usphone": "['ɔksidʒәn]", "ukphone": "", "trans": ["n.氧气"] },
|
||||
{ "name": "Apollo", "usphone": "[ә'pɔlәu]", "ukphone": "", "trans": ["n.阿波罗"] },
|
||||
{ "name": "accelerate", "usphone": "[æk'selәreit]", "ukphone": "", "trans": ["v.加速"] },
|
||||
{ "name": "terrestrial", "usphone": "[ti'restriәl]", "ukphone": "", "trans": ["a.地球"] },
|
||||
{ "name": "ermanently", "ukphone": "", "trans": ["ad.永远地"] },
|
||||
{ "name": "fascination", "usphone": "['fæsi'neiʃәn]", "ukphone": "", "trans": ["n.魅力"] },
|
||||
{ "name": "senior", "usphone": "['si:njә]", "ukphone": "", "trans": ["a.资历深的,年长的"] },
|
||||
{ "name": "chasm", "usphone": "[tʃæzәm]", "ukphone": "", "trans": ["n.断层,裂口"] },
|
||||
{ "name": "canyon", "usphone": "['kænjәn]", "ukphone": "", "trans": ["n.峡谷"] },
|
||||
{ "name": "disunited", "ukphone": "", "trans": ["a.分裂的"] },
|
||||
{ "name": "correspondingly", "ukphone": "", "trans": ["ad.相应地"] },
|
||||
{ "name": "backward", "usphone": "['bækwәd]", "ukphone": "", "trans": ["a.落后的"] },
|
||||
{ "name": "incur", "usphone": "[in'kә:]", "ukphone": "", "trans": ["v.承担"] },
|
||||
{ "name": "administer", "usphone": "[әd'ministә]", "ukphone": "", "trans": ["v.管理"] },
|
||||
{ "name": "administrative", "usphone": "[әd'ministrәtiv]", "ukphone": "", "trans": ["a.行政管理的"] },
|
||||
{ "name": "analogous", "usphone": "[ә'nælәgәs]", "ukphone": "", "trans": ["a.类似的"] },
|
||||
{ "name": "overheads", "ukphone": "", "trans": ["n.一般费用"] },
|
||||
{ "name": "initiative", "usphone": "[i'niʃiәtiv]", "ukphone": "", "trans": ["n.主动,积极性"] },
|
||||
{ "name": "checker", "ukphone": "", "trans": ["n.检查人员"] },
|
||||
{ "name": "foreman", "usphone": "['fɔ:mәn]", "ukphone": "", "trans": ["n.监工"] },
|
||||
{ "name": "dividend", "usphone": "['dividend]", "ukphone": "", "trans": ["n.红利"] },
|
||||
{ "name": "unduly", "usphone": "[ʌn'dju:li]", "ukphone": "", "trans": ["ad.过度地"] },
|
||||
{ "name": "likelihood", "usphone": "['laiklihud]", "ukphone": "", "trans": ["n.可能性"] },
|
||||
{ "name": "infant", "usphone": "['infәnt]", "ukphone": "", "trans": ["n.婴儿"] },
|
||||
{ "name": "vulnerable", "usphone": "['vʌlnәrәbl]", "ukphone": "", "trans": ["a.脆弱的"] },
|
||||
{ "name": "imperceptible", "usphone": "['impә'septәbl]", "ukphone": "", "trans": ["a.感觉不到的"] },
|
||||
{ "name": "robust", "usphone": "[rәu'bʌst]", "ukphone": "", "trans": ["a.强健的"] },
|
||||
{ "name": "organism", "usphone": "['ɔ:gәnizәm]", "ukphone": "", "trans": ["n.有机体"] },
|
||||
{ "name": "thermodynamics", "usphone": "['θә:mәudai'næmiks]", "ukphone": "", "trans": ["n.热力学"] },
|
||||
{ "name": "steep", "usphone": "[sti:p]", "ukphone": "", "trans": ["a.急转直下的"] },
|
||||
{ "name": "ageing", "ukphone": "", "trans": ["n.老化"] },
|
||||
{ "name": "odds", "usphone": "[ɔdz]", "ukphone": "", "trans": ["n.可能性"] },
|
||||
{ "name": "virtual", "usphone": "['vә:tjuәl]", "ukphone": "", "trans": ["a.实际上的"] },
|
||||
{ "name": "moot", "usphone": "[mu:t]", "ukphone": "", "trans": ["a.争论未决的"] },
|
||||
{ "name": "run-down", "ukphone": "", "trans": ["a.破旧的"] },
|
||||
{ "name": "friction", "usphone": "['frikʃәn]", "ukphone": "", "trans": ["n.摩擦"] },
|
||||
{ "name": "contamination", "usphone": "[kәntæmi'neiʃәn]", "ukphone": "", "trans": ["n.污染"] },
|
||||
{ "name": "sanitation", "usphone": "['sæni'teiʃn]", "ukphone": "", "trans": ["n.卫生,卫生设备"] },
|
||||
{ "name": "sewage", "usphone": "['sju:idʒ]", "ukphone": "", "trans": ["n.污水"] },
|
||||
{ "name": "leakage", "usphone": "['li:kidʒ]", "ukphone": "", "trans": ["n.泄漏"] },
|
||||
{ "name": "intermittent", "usphone": "[intә'mitnt]", "ukphone": "", "trans": ["a.间歇的,断断续续的"] },
|
||||
{ "name": "carbonated", "ukphone": "", "trans": ["a.碳化的,碳酸的"] },
|
||||
{ "name": "acidic", "usphone": "[ә'sidik]", "ukphone": "", "trans": ["a.酸的,酸性的"] },
|
||||
{ "name": "alcohol", "usphone": "['ælkәhɔl]", "ukphone": "", "trans": ["n.酒精"] },
|
||||
{ "name": "disinfectant", "usphone": "[disin'fektәnt]", "ukphone": "", "trans": ["n.消毒剂"] },
|
||||
{ "name": "sterilize", "usphone": "['sterilaiz]", "ukphone": "", "trans": ["v.消毒"] },
|
||||
{ "name": "ethanol", "usphone": "['eθәnoul]", "ukphone": "", "trans": ["n.乙醇"] },
|
||||
{ "name": "bactericidal", "usphone": "[bæktirә'saidl]", "ukphone": "", "trans": ["a.杀菌的"] },
|
||||
{ "name": "negligible", "usphone": "['neglidʒәbl]", "ukphone": "", "trans": ["a.可以忽略的,微不足道的"] },
|
||||
{ "name": "methylated", "ukphone": "", "trans": ["a.加入甲醇的"] },
|
||||
{ "name": "confess", "usphone": "[kәn'fes]", "ukphone": "", "trans": ["v.承认"] },
|
||||
{ "name": "inspiration", "usphone": "['inspә'reiʃәn]", "ukphone": "", "trans": ["n.灵感"] },
|
||||
{ "name": "Kashmir", "usphone": "['kæʃ'miә]", "ukphone": "", "trans": ["n.克什米尔"] },
|
||||
{ "name": "interweave", "usphone": "['intә'wi:v]", "ukphone": "", "trans": ["v.交织"] },
|
||||
{ "name": "afresh", "usphone": "[ә'freʃ]", "ukphone": "", "trans": ["ad.重新"] },
|
||||
{ "name": "discern", "usphone": "[di'sә:n]", "ukphone": "", "trans": ["v.辨明,领悟"] },
|
||||
{ "name": "indescribable", "usphone": "[indis'kraibәbl]", "ukphone": "", "trans": ["a.无法描述的"] },
|
||||
{ "name": "blur", "usphone": "[blә:]", "ukphone": "", "trans": ["v.使…模糊不清"] },
|
||||
{ "name": "yeast", "usphone": "[ji:st]", "ukphone": "", "trans": ["n.激动"] },
|
||||
{ "name": "fathom", "usphone": "['fæðәm]", "ukphone": "", "trans": ["n.噚(噚等于.米)"] },
|
||||
{ "name": "interminably", "ukphone": "", "trans": ["a..没完没了地"] },
|
||||
{ "name": "winkle", "usphone": "['wiŋkl]", "ukphone": "", "trans": ["v.挖掘"] },
|
||||
{ "name": "incidentally", "usphone": "['insi'dentәli]", "ukphone": "", "trans": ["ad.顺便说一下"] },
|
||||
{ "name": "pertinent", "usphone": "['pә:tinәnt]", "ukphone": "", "trans": ["a.中肯的"] },
|
||||
{ "name": "flirt", "usphone": "[flә:t]", "ukphone": "", "trans": ["v.调情"] },
|
||||
{ "name": "inmost", "usphone": "['inmәust]", "ukphone": "", "trans": ["a.内心深处的"] },
|
||||
{ "name": "signature", "usphone": "['signitʃә]", "ukphone": "", "trans": ["n.签名,标记"] },
|
||||
{ "name": "infinity", "usphone": "[in'finiti]", "ukphone": "", "trans": ["n.无穷"] },
|
||||
{ "name": "ray", "usphone": "[rei]", "ukphone": "", "trans": ["n.光线"] },
|
||||
{ "name": "energize", "usphone": "['enә'dʒaiz]", "ukphone": "", "trans": ["v.给与…能量"] },
|
||||
{ "name": "rhythm", "usphone": "['riðәm]", "ukphone": "", "trans": ["n.节奏"] },
|
||||
{ "name": "transmit", "usphone": "[trænz'mit]", "ukphone": "", "trans": ["v.传送"] },
|
||||
{ "name": "exquisite", "usphone": "['ekskwizit]", "ukphone": "", "trans": ["a.高雅的"] },
|
||||
{ "name": "phenomena", "usphone": "[fi'nɔminә]", "ukphone": "", "trans": ["n.现象"] },
|
||||
{ "name": "crest", "usphone": "[krest]", "ukphone": "", "trans": ["n.浪峰"] },
|
||||
{ "name": "trough", "usphone": "[trɔ:f]", "ukphone": "", "trans": ["n.波谷"] },
|
||||
{ "name": "vertical", "usphone": "['vә:tikәl]", "ukphone": "", "trans": ["a.垂直的"] },
|
||||
{ "name": "horizontal", "usphone": "['hɔri'zɔntl]", "ukphone": "", "trans": ["a.水平的"] },
|
||||
{ "name": "actuality", "usphone": "[æktʃu'æliti]", "ukphone": "", "trans": ["n.现实"] },
|
||||
{ "name": "catastrophic", "usphone": "[kætә'strɔfik]", "ukphone": "", "trans": ["a.大灾难的"] },
|
||||
{ "name": "particle", "usphone": "['pa:tikl]", "ukphone": "", "trans": ["n.微粒"] },
|
||||
{ "name": "maturity", "usphone": "[mә'tjuәriti]", "ukphone": "", "trans": ["n.成熟"] },
|
||||
{ "name": "undulate", "usphone": "['ʌndjuleit]", "ukphone": "", "trans": ["v.波动,形成波浪"] },
|
||||
{ "name": "tremor", "usphone": "['tremә]", "ukphone": "", "trans": ["n.震颤"] },
|
||||
{ "name": "gravitational", "usphone": "[grævi'teiʃәnl]", "ukphone": "", "trans": ["a.地心吸力的"] },
|
||||
{ "name": "technique", "usphone": "[tek'ni:k]", "ukphone": "", "trans": ["n.技术"] },
|
||||
{ "name": "tough", "usphone": "[tʌf]", "ukphone": "", "trans": ["a.强硬的"] },
|
||||
{ "name": "resentful", "usphone": "[ri'zentful]", "ukphone": "", "trans": ["a.仇恨不满的"] },
|
||||
{ "name": "assign", "usphone": "[ә'sain]", "ukphone": "", "trans": ["v.分配,指派"] },
|
||||
{ "name": "mahout", "usphone": "[mә'haut]", "ukphone": "", "trans": ["n.驯象的人"] },
|
||||
{ "name": "calf", "usphone": "[ka:f]", "ukphone": "", "trans": ["n.幼仔"] },
|
||||
{ "name": "pine", "usphone": "[pain]", "ukphone": "", "trans": ["v.消瘦"] },
|
||||
{ "name": "underline", "usphone": "['ʌndә'lain]", "ukphone": "", "trans": ["v.着重说明,强调"] },
|
||||
{ "name": "keep", "usphone": "[ki:p]", "ukphone": "", "trans": ["n.生计"] },
|
||||
{ "name": "subservient", "usphone": "[sәb'sә:vjәnt]", "ukphone": "", "trans": ["a.屈从的"] },
|
||||
{ "name": "plunge", "usphone": "[plʌndʒ]", "ukphone": "", "trans": ["v.向前冲"] },
|
||||
{ "name": "tame", "usphone": "[teim]", "ukphone": "", "trans": ["a.养驯服了的"] },
|
||||
{ "name": "tether", "usphone": "['teðә]", "ukphone": "", "trans": ["v.(用绳)拴"] },
|
||||
{ "name": "ticklish", "usphone": "['tikliʃ]", "ukphone": "", "trans": ["a.难对付的,棘手的"] },
|
||||
{ "name": "alarming", "ukphone": "", "trans": ["a.引起惊恐的"] },
|
||||
{ "name": "accompaniment", "usphone": "[ә'kʌmpәnimәnt]", "ukphone": "", "trans": ["n.伴奏"] },
|
||||
{ "name": "soothe", "usphone": "[su:ð]", "ukphone": "", "trans": ["v.镇定"] },
|
||||
{ "name": "chant", "usphone": "[tʃa:nt]", "ukphone": "", "trans": ["n.单调的歌"] },
|
||||
{ "name": "reinforce", "usphone": "['ri:in'fɔ:s]", "ukphone": "", "trans": ["v.加强"] },
|
||||
{ "name": "endearing", "usphone": "[in'diәriŋ]", "ukphone": "", "trans": ["a.惹人喜爱的"] },
|
||||
{ "name": "epithet", "usphone": "['epiθet]", "ukphone": "", "trans": ["n.称呼"] },
|
||||
{ "name": "susceptible", "usphone": "[sә'septәbl]", "ukphone": "", "trans": ["a.易受感染的"] },
|
||||
{ "name": "blandishment", "usphone": "['blændiʃmәnt]", "ukphone": "", "trans": ["n.奉承"] },
|
||||
{ "name": "lash", "usphone": "[læʃ]", "ukphone": "", "trans": ["v.猛烈地甩"] },
|
||||
{ "name": "curl", "usphone": "[kә:l]", "ukphone": "", "trans": ["v.使卷曲"] },
|
||||
{ "name": "earthquake", "usphone": "['ә:θkweik]", "ukphone": "", "trans": ["n.地震"] },
|
||||
{ "name": "slumber", "usphone": "['slʌmbә]", "ukphone": "", "trans": ["v.睡眠"] },
|
||||
{ "name": "ninepin", "ukphone": "", "trans": ["n.九柱戏中的木柱"] },
|
||||
{ "name": "rigid", "usphone": "['ridʒid]", "ukphone": "", "trans": ["a.坚硬的"] },
|
||||
{ "name": "delicate", "usphone": "['delikit]", "ukphone": "", "trans": ["a.灵敏的"] },
|
||||
{ "name": "seismometer", "usphone": "[saiz'mɔmitә]", "ukphone": "", "trans": ["n.地震仪"] },
|
||||
{ "name": "penholder", "ukphone": "", "trans": ["n.笔杆"] },
|
||||
{ "name": "legibly", "usphone": "['ledʒәbli]", "ukphone": "", "trans": ["ad.字迹清楚地"] },
|
||||
{ "name": "drum", "usphone": "[drʌm]", "ukphone": "", "trans": ["n.鼓状物"] },
|
||||
{ "name": "wriggle", "usphone": "['rigl]", "ukphone": "", "trans": ["v.扭动"] },
|
||||
{ "name": "bluebottle", "usphone": "['blu:bɔtl]", "ukphone": "", "trans": ["n.绿头苍蝇"] },
|
||||
{ "name": "graph", "usphone": "[græf]", "ukphone": "", "trans": ["n.图表"] },
|
||||
{ "name": "graphic", "usphone": "['græfik]", "ukphone": "", "trans": ["a.图示的"] },
|
||||
{ "name": "longitudinal", "usphone": "['lɔndʒi'tju:dinl]", "ukphone": "", "trans": ["a.纵向的"] },
|
||||
{ "name": "transverse", "usphone": "['trænzvә:s]", "ukphone": "", "trans": ["a.横向的"] },
|
||||
{ "name": "Mercury", "usphone": "['mә:kjuri]", "ukphone": "", "trans": ["n.水星"] },
|
||||
{ "name": "hydrogen", "usphone": "['haidridʒәn]", "ukphone": "", "trans": ["n.氢气"] },
|
||||
{ "name": "prevailing", "usphone": "[pri'veiliŋ]", "ukphone": "", "trans": ["a.普遍的"] },
|
||||
{ "name": "uniquely", "ukphone": "", "trans": ["a..唯一地"] },
|
||||
{ "name": "rational", "usphone": "['ræʃәnl]", "ukphone": "", "trans": ["a.合理的"] },
|
||||
{ "name": "radio frequency", "ukphone": "", "trans": ["n.无线电频率"] },
|
||||
{ "name": "cm", "ukphone": "", "trans": ["n.厘米(=centimetre)"] },
|
||||
{ "name": "megacycle", "usphone": "['megәsaikl]", "ukphone": "", "trans": ["n.兆周"] },
|
||||
{ "name": "emission", "usphone": "[i'miʃәn]", "ukphone": "", "trans": ["n.散发"] },
|
||||
{ "name": "interstellar", "usphone": "['intә'stelә]", "ukphone": "", "trans": ["a.星际的"] },
|
||||
{ "name": "rendezvous", "usphone": "['rɔndәvu:]", "ukphone": "", "trans": ["n.约会地点"] },
|
||||
{ "name": "encounter", "usphone": "[in'kauntә]", "ukphone": "", "trans": ["n.相遇"] },
|
||||
{ "name": "commonplace", "usphone": "['kɔmәnpleis]", "ukphone": "", "trans": ["a.平凡的"] },
|
||||
{ "name": "aberrant", "usphone": "[æ'berәnt]", "ukphone": "", "trans": ["a.脱离常轨的,异常的"] },
|
||||
{ "name": "trivial", "usphone": "['triviәl]", "ukphone": "", "trans": ["a.微不足道的"] },
|
||||
{ "name": "predominant", "usphone": "[pri'dɔminәnt]", "ukphone": "", "trans": ["a.占优势的,起支配作用的"] },
|
||||
{ "name": "manifest", "usphone": "['mænifest]", "ukphone": "", "trans": ["a.明显的"] },
|
||||
{ "name": "pristine", "usphone": "['pristain]", "ukphone": "", "trans": ["a.纯洁的,质朴的"] },
|
||||
{ "name": "stereotype", "usphone": "[stiәriәtaip]", "ukphone": "", "trans": ["n.陈规"] },
|
||||
{ "name": "vernacular", "usphone": "[vә'nækjulә]", "ukphone": "", "trans": ["n.方言"] },
|
||||
{ "name": "accommodation", "usphone": "[ә,kɔmә'deiʃәn]", "ukphone": "", "trans": ["n.适应"] },
|
||||
{ "name": "incumbent", "usphone": "[in'kʌmbәnt]", "ukphone": "", "trans": ["a.义不容辞的,有责任的"] },
|
||||
{ "name": "preliminary", "usphone": "[pri'liminәri]", "ukphone": "", "trans": ["a.初步的"] },
|
||||
{ "name": "proposition", "usphone": "['prɔpә'ziʃәn]", "ukphone": "", "trans": ["n.主张"] },
|
||||
{ "name": "preferential", "usphone": "[prefә'renʃәl]", "ukphone": "", "trans": ["a.优先的"] },
|
||||
{ "name": "controversial", "usphone": "['kɔntrә'vә:ʃәl]", "ukphone": "", "trans": ["a.引起争论的"] },
|
||||
{ "name": "cactus", "usphone": "['kæktәs]", "ukphone": "", "trans": ["n.仙人掌"] },
|
||||
{ "name": "termite", "usphone": "['tә:mait]", "ukphone": "", "trans": ["n.白蚁"] },
|
||||
{ "name": "nebula", "usphone": "['nebjulә]", "ukphone": "", "trans": ["n.星云"] },
|
||||
{ "name": "variant", "usphone": "['vєәriәnt]", "ukphone": "", "trans": ["a.不同的"] },
|
||||
{ "name": "barbarian", "usphone": "[ba:'bєәriәn]", "ukphone": "", "trans": ["n.野蛮人"] },
|
||||
{ "name": "pagan", "usphone": "['peigәn]", "ukphone": "", "trans": ["n.异教徒"] },
|
||||
{ "name": "sophistication", "usphone": "[sә'fisti'keiʃәn]", "ukphone": "", "trans": ["n.老练"] },
|
||||
{ "name": "premise", "usphone": "['premis, pri'maiz]", "ukphone": "", "trans": ["n.前提"] },
|
||||
{ "name": "supernatural", "usphone": "['sju:pә'nætʃәrәl]", "ukphone": "", "trans": ["a.超自然的"] },
|
||||
{ "name": "dispute", "usphone": "[dis'pju:t]", "ukphone": "", "trans": ["v.争夺"] },
|
||||
{ "name": "mosquito", "usphone": "[mәs'ki:tәu]", "ukphone": "", "trans": ["n.蚊虫"] },
|
||||
{ "name": "subdue", "usphone": "[sʌb'dju:]", "ukphone": "", "trans": ["v.征服"] },
|
||||
{ "name": "drainage", "usphone": "['dreinidʒ]", "ukphone": "", "trans": ["n.下水系统"] },
|
||||
{ "name": "envision", "usphone": "[en'viʒәn]", "ukphone": "", "trans": ["n.预想"] },
|
||||
{ "name": "Morocco", "usphone": "[mә'rɔkәu]", "ukphone": "", "trans": ["n.摩洛哥"] },
|
||||
{ "name": "latitude", "usphone": "['lætitju:d]", "ukphone": "", "trans": ["n.纬度"] },
|
||||
{ "name": "heretic", "usphone": "['herәtik]", "ukphone": "", "trans": ["n.异教徒,异端邪说"] },
|
||||
{ "name": "conceive", "usphone": "[kәn'si:v]", "ukphone": "", "trans": ["v.想像"] },
|
||||
{ "name": "suffice", "usphone": "[sә'fais]", "ukphone": "", "trans": ["v.足够"] },
|
||||
{ "name": "nuclear", "usphone": "['nju:kliә]", "ukphone": "", "trans": ["a.原子弹的"] },
|
||||
{ "name": "original", "usphone": "[ә'ridʒәnәl]", "ukphone": "", "trans": ["a.有独到见解的"] },
|
||||
{ "name": "gifted", "usphone": "['giftid]", "ukphone": "", "trans": ["a.有天才的"] },
|
||||
{ "name": "psychologist", "usphone": "[sai'kɔlәdʒist]", "ukphone": "", "trans": ["n.心理学家"] },
|
||||
{ "name": "spasm", "usphone": "['spæzәm]", "ukphone": "", "trans": ["n.一阵(感情)发作"] },
|
||||
{ "name": "futile", "usphone": "['fju:tail]", "ukphone": "", "trans": ["a.无用的"] },
|
||||
{ "name": "insinuate", "usphone": "[in'sinjueit]", "ukphone": "", "trans": ["v.使潜入,暗示"] },
|
||||
{ "name": "convulsive", "usphone": "[kәn'vʌlsiv]", "ukphone": "", "trans": ["a.起痉挛的"] },
|
||||
{ "name": "illumination", "usphone": "[i'lju:mi'neiʃәn]", "ukphone": "", "trans": ["n.启发,照明"] },
|
||||
{ "name": "undue", "usphone": "['ʌn'dju:]", "ukphone": "", "trans": ["a.不适当的"] },
|
||||
{ "name": "grip", "usphone": "[grip]", "ukphone": "", "trans": ["n.紧张"] },
|
||||
{ "name": "recuperation", "usphone": "[ri'kju:pә'reiʃәn]", "ukphone": "", "trans": ["n.休息"] },
|
||||
{ "name": "improvise", "usphone": "['imprәvaiz]", "ukphone": "", "trans": ["v.临时作成"] },
|
||||
{ "name": "sedulously", "ukphone": "", "trans": ["ad.孜孜不倦地"] },
|
||||
{ "name": "vivify", "usphone": "['vivifai]", "ukphone": "", "trans": ["v.使生气勃勃"] },
|
||||
{ "name": "aggravate", "usphone": "['ægrәveit]", "ukphone": "", "trans": ["v.加剧"] },
|
||||
{ "name": "trifling", "usphone": "['traifliŋ]", "ukphone": "", "trans": ["a.微小的"] },
|
||||
{ "name": "gratify", "usphone": "['grætifai]", "ukphone": "", "trans": ["v.使满意"] },
|
||||
{ "name": "caprice", "usphone": "[kә'pri:s]", "ukphone": "", "trans": ["n.任性"] },
|
||||
{ "name": "satiation", "usphone": "['seiʃi'eiʃәn]", "ukphone": "", "trans": ["n.满足"] },
|
||||
{ "name": "frantically", "usphone": "['fræntikәli]", "ukphone": "", "trans": ["ad.狂乱地"] },
|
||||
{ "name": "avenge", "usphone": "[ә'vendʒ]", "ukphone": "", "trans": ["v.替…报复"] },
|
||||
{ "name": "boredom", "usphone": "['bɔ:dәm]", "ukphone": "", "trans": ["n.厌烦"] },
|
||||
{ "name": "clatter", "usphone": "['klætә]", "ukphone": "", "trans": ["n.喧闹的谈话"] },
|
||||
{ "name": "sustenance", "usphone": "['sʌstәnәns]", "ukphone": "", "trans": ["n.支撑力"] },
|
||||
{ "name": "appetite", "usphone": "['æpitait]", "ukphone": "", "trans": ["n.欲望"] },
|
||||
{ "name": "grudge", "usphone": "[grʌdʒ]", "ukphone": "", "trans": ["v.怨恨"] },
|
||||
{ "name": "absorbing", "usphone": "[әb'sɔ:biŋ]", "ukphone": "", "trans": ["a.引人入胜的"] },
|
||||
{ "name": "banish", "usphone": "['bæniʃ]", "ukphone": "", "trans": ["v.排除,放弃"] },
|
||||
{ "name": "assumption", "usphone": "[ә'sʌmpʃәn]", "ukphone": "", "trans": ["n.假定"] },
|
||||
{ "name": "manoeuvre", "usphone": "[mә'nu:vә]", "ukphone": "", "trans": ["v.(驱车)移动"] },
|
||||
{ "name": "myriad", "usphone": "['miriәd]", "ukphone": "", "trans": ["a.无数的"] },
|
||||
{ "name": "paradox", "usphone": "['pærәdɔks]", "ukphone": "", "trans": ["n.自相矛盾的事"] },
|
||||
{ "name": "cynic", "usphone": "['sinik]", "ukphone": "", "trans": ["n.愤世嫉俗者"] },
|
||||
{ "name": "sociologist", "usphone": "['sәusi'ɔlәdʒist]", "ukphone": "", "trans": ["n.社会学家"] },
|
||||
{ "name": "shun", "usphone": "[ʃʌn]", "ukphone": "", "trans": ["v.避开"] },
|
||||
{ "name": "affluent", "usphone": "['æfluәnt]", "ukphone": "", "trans": ["a.富有的"] },
|
||||
{ "name": "chambermaid", "ukphone": "", "trans": ["n.女招待员"] },
|
||||
{ "name": "boo", "usphone": "[bu:]", "ukphone": "", "trans": ["n.呸的一声"] },
|
||||
{ "name": "maitre d'hotel", "ukphone": "", "trans": ["n.[法语]总管"] },
|
||||
{ "name": "snobbery", "usphone": "['snɔbәri]", "ukphone": "", "trans": ["n.势利"] },
|
||||
{ "name": "hierarchy", "usphone": "['haiәra:ki]", "ukphone": "", "trans": ["n.等级制度"] },
|
||||
{ "name": "entail", "usphone": "[in'teil]", "ukphone": "", "trans": ["v.使成为必要"] },
|
||||
{ "name": "inclement", "usphone": "[in'klemәnt]", "ukphone": "", "trans": ["a.险恶的"] },
|
||||
{ "name": "package tour", "ukphone": "", "trans": ["n.由旅行社安排一切的一揽子旅游"] },
|
||||
{ "name": "insularity", "usphone": "['insju'læriti]", "ukphone": "", "trans": ["n.偏狭"] },
|
||||
{ "name": "cater", "usphone": "['keitә]", "ukphone": "", "trans": ["v.迎合"] },
|
||||
{ "name": "cosmopolitan", "usphone": "['kɔzmә'pɔlitәn]", "ukphone": "", "trans": ["a.世界的"] },
|
||||
{ "name": "preponderance", "usphone": "[pri'pɔndәrәns]", "ukphone": "", "trans": ["n.优势"] },
|
||||
{ "name": "overwhelmingly", "usphone": "['әuvә'hwelmiŋli]", "ukphone": "", "trans": ["ad.以压倒优势地,清一色地"] },
|
||||
{ "name": "patronage", "usphone": "['pætrәnidʒ]", "ukphone": "", "trans": ["n.恩惠,惠顾"] },
|
||||
{ "name": "sauerkraut", "usphone": "['sauәkraut]", "ukphone": "", "trans": ["n.泡菜"] },
|
||||
{ "name": "vie", "usphone": "[vai]", "ukphone": "", "trans": ["v.竞争"] },
|
||||
{ "name": "municipality", "usphone": "[mju:'nisi'pæliti]", "ukphone": "", "trans": ["n.市政当局"] },
|
||||
{ "name": "itinerant", "usphone": "[i'tinәrәnt]", "ukphone": "", "trans": ["n.巡回者"] },
|
||||
{ "name": "heath", "usphone": "[hi:θ]", "ukphone": "", "trans": ["n.荒地"] },
|
||||
{ "name": "alienate", "usphone": "['eiljәneit]", "ukphone": "", "trans": ["v.使疏远"] },
|
||||
{ "name": "eternal", "usphone": "[i'tә:nl]", "ukphone": "", "trans": ["a.永久的"] },
|
||||
{ "name": "portfolio", "usphone": "[pɔ:t'fouljou]", "ukphone": "", "trans": ["n.投资组合"] },
|
||||
{ "name": "tipster", "usphone": "['tipstә]", "ukphone": "", "trans": ["n.(提供证券投机等消息为生的)情报贩子"] },
|
||||
{ "name": "fritter", "usphone": "['fritә]", "ukphone": "", "trans": ["v.挥霍,浪费"] },
|
||||
{ "name": "reputable", "usphone": "['repjutәbl]", "ukphone": "", "trans": ["a.享有声望的"] },
|
||||
{ "name": "broker", "usphone": "['brәukә]", "ukphone": "", "trans": ["n.经纪人"] },
|
||||
{ "name": "finance", "usphone": "[fai'næns, fi-]", "ukphone": "", "trans": ["n.资金,财源"] },
|
||||
{ "name": "mortgage", "usphone": "['mɔ:gidʒ]", "ukphone": "", "trans": ["n.抵押贷款"] },
|
||||
{ "name": "pension", "usphone": "['penʃәn]", "ukphone": "", "trans": ["n.养老金"] },
|
||||
{ "name": "priority", "usphone": "[prai'ɔriti]", "ukphone": "", "trans": ["n.优先权"] },
|
||||
{ "name": "gilt", "usphone": "[gilt]", "ukphone": "", "trans": ["n.金边证券(高度可靠的证券)"] },
|
||||
{ "name": "convertible", "usphone": "[kәn'vә:tәbl]", "ukphone": "", "trans": ["n.可换证券"] },
|
||||
{ "name": "sanguine", "usphone": "['sæŋgwin]", "ukphone": "", "trans": ["a.乐观的"] },
|
||||
{ "name": "heady", "usphone": "['hedi]", "ukphone": "", "trans": ["a.令人陶醉的"] },
|
||||
{ "name": "alongside", "usphone": "[ә'lɔŋ'said]", "ukphone": "", "trans": ["prep.在…旁边,和…一起"] },
|
||||
{ "name": "pedestrian", "usphone": "[pi'destriәn]", "ukphone": "", "trans": ["a.平淡无奇的,乏味的"] }
|
||||
]
|
||||
@@ -0,0 +1,101 @@
|
||||
[
|
||||
{ "name": "fs.Dir", "trans": ["类,表示目录流。创建者fs.opendir(),fs.opendirSync()或 fsPromises.opendir()。"] },
|
||||
{ "name": "fs.Dirent", "trans": ["类,通过从读取返回的目录条目的表示形式,可以是目录中的文件或子目录fs.Dir。目录条目是文件名和文件类型对的组合。"] },
|
||||
{ "name": "fs.FSWatcher", "trans": ["类,成功调用fs.watch()方法将返回一个新fs.FSWatcher 对象。只要修改了特定的监视文件,所有fs.FSWatcher对象都会发出一个'change'事件。"] },
|
||||
{ "name": "fs.StatWatcher", "trans": ["类,成功调用fs.watchFile()方法将返回一个新fs.StatWatcher 对象。 "] },
|
||||
{ "name": "fs.ReadStream", "trans": ["类,使用的实例fs.ReadStream创建并返回 fs.createReadStream()。"] },
|
||||
{ "name": "fs.Stats", "trans": ["类,fs.Stats对象提供有关文件的信息。"] },
|
||||
{ "name": "fs.WriteStream", "trans": ["类,使用的实例fs.WriteStream创建并返回 fs.createWriteStream()。"] },
|
||||
{ "name": "fs.access(path[, mode], callback)", "trans": ["测试用户对所指定的文件或目录的权限path。该mode参数是一个可选整数,它指定要执行的可访问性检查。检查“文件访问常量”中可能的值mode。可以创建由两个或多个值(例如fs.constants.W_OK | fs.constants.R_OK)的按位或组成的掩码。 "] },
|
||||
{ "name": "fs.accessSync(path[, mode])", "trans": ["同步测试用户对所指定的文件或目录的权限path。该mode参数是一个可选整数,它指定要执行的可访问性检查。"] },
|
||||
{ "name": "fs.appendFile(path, data[, options], callback)", "trans": ["异步将数据追加到文件,如果该文件尚不存在,则创建该文件。data可以是字符串或Buffer。 "] },
|
||||
{ "name": "fs.appendFileSync(path, data[, options])", "trans": ["将数据同步追加到文件,如果该文件尚不存在,则创建该文件。data可以是字符串或Buffer。"] },
|
||||
{ "name": "fs.chmod(path, mode, callback)", "trans": ["异步更改文件的权限"] },
|
||||
{ "name": "fs.chmodSync(path, mode)", "trans": ["同步更改文件的权限"] },
|
||||
{ "name": "fs.chown(path, uid, gid, callback)", "trans": ["异步更改文件的所有者和组。"] },
|
||||
{ "name": "fs.chownSync(path, uid, gid)", "trans": ["同步更改文件的所有者和组。"] },
|
||||
{ "name": "fs.close(fd, callback)", "trans": ["异步关闭文件"] },
|
||||
{ "name": "fs.closeSync(fd)", "trans": ["同步关闭文件"] },
|
||||
{ "name": "fs.constants", "trans": ["返回一个包含文件系统操作常用常量的对象。当前定义的特定常数在FS常数中进行了描述 。"] },
|
||||
{ "name": "fs.copyFile(src, dest[, mode], callback)", "trans": ["异步复制src到dest。默认情况下,dest如果已经存在,则被覆盖。除可能的异常外,没有其他任何参数被赋予回调函数。Node.js不保证复制操作的原子性。如果在打开目标文件进行写入后发生错误,Node.js将尝试删除目标。mode是一个可选整数,它指定复制操作的行为。可以创建由两个或多个值(例如fs.constants.COPYFILE_EXCL | fs.constants.COPYFILE_FICLONE)的按位或组成的掩码 。"] },
|
||||
{ "name": "fs.copyFileSync(src, dest[, mode])", "trans": ["同步复制src到dest。默认情况下,dest如果已经存在,则被覆盖。返回undefined。Node.js不保证复制操作的原子性。如果在打开目标文件进行写入后发生错误,Node.js将尝试删除目标。mode是一个可选整数,它指定复制操作的行为。可以创建由两个或多个值(例如fs.constants.COPYFILE_EXCL | fs.constants.COPYFILE_FICLONE)的按位或组成的掩码 。"] },
|
||||
{ "name": "fs.createReadStream(path[, options])", "trans": ["创建可读流,此方法返回的流具有 64 kb 的默认 highWaterMark"] },
|
||||
{ "name": "fs.createWriteStream(path[, options])", "trans": ["创建可写流"] },
|
||||
{ "name": "fs.exists(path, callback)", "trans": ["弃用: 改为使用 fs.stat() 或 fs.access()。"] },
|
||||
{ "name": "fs.existsSync(path)", "trans": ["如果路径存在,则返回 true,否则返回 false。"] },
|
||||
{ "name": "fs.fchmod(fd, mode, callback)", "trans": ["异步的fchmod(2), 会依参数 mode 权限来更改参数fildes所指文件的权限"] },
|
||||
{ "name": "fs.fchmodSync(fd, mode)", "trans": ["同步fchmod(2), 会依参数mode权限来更改参数fildes所指文件的权限。 "] },
|
||||
{ "name": "fs.fchown(fd, uid, gid, callback)", "trans": ["异步的fchown(2), 会将参数fd指定文件的所有者变更为参数owner代表的用户,而将该文件的组变更为参数group组"] },
|
||||
{ "name": "fs.fchownSync(fd, uid, gid)", "trans": ["同步的fchown(2), 会将参数fd指定文件的所有者变更为参数owner代表的用户,而将该文件的组变更为参数group组"] },
|
||||
{ "name": "fs.fdatasync(fd, callback)", "trans": ["异步的fdatasync(2), 用来刷新数据到磁盘"] },
|
||||
{ "name": "fs.fdatasyncSync(fd)", "trans": ["同步的fdatasync(2), 用来刷新数据到磁盘 "] },
|
||||
{ "name": "fs.fstat(fd[, options], callback)", "trans": ["异步的fstat(2)。回调获得两个参数(err, stats)where stats是fs.Stats对象。fstat()与相同stat(),除了要声明的文件由文件描述符指定fd。"] },
|
||||
{ "name": "fs.fstatSync(fd[, options])", "trans": ["同步的 fstat(2)。"] },
|
||||
{ "name": "fs.fsync(fd, callback)", "trans": ["异步的 fsync(2), 同步内存中所有已修改的文件数据到储存设备"] },
|
||||
{ "name": "fs.fsyncSync(fd)", "trans": ["同步的 fsync(2), 同步内存中所有已修改的文件数据到储存设备"] },
|
||||
{ "name": "fs.ftruncate(fd[, len], callback)", "trans": ["异步的 ftruncate(2), 参数fd指定的文件大小改为参数length指定的大小"] },
|
||||
{ "name": "fs.ftruncateSync(fd[, len])", "trans": ["ftruncateSync, 参数fd指定的文件大小改为参数length指定的大小"] },
|
||||
{ "name": "fs.futimes(fd, atime, mtime, callback)", "trans": ["更改文件描述符指向的对象的文件系统时间戳。"] },
|
||||
{ "name": "fs.futimesSync(fd, atime, mtime)", "trans": ["fs.futimes() 的同步版本"] },
|
||||
{ "name": "fs.lchmod(path, mode, callback)", "trans": ["异步的 lchmod(2), 用于修改连接文件权限"] },
|
||||
{ "name": "fs.lchmodSync(path, mode)", "trans": ["同步的 lchmod(2),用于修改连接文件权限"] },
|
||||
{ "name": "fs.lchown(path, uid, gid, callback)", "trans": ["异步的 lchown(2),函数改变文件的所有者以及组。如果命名文件是符号链接,则lchown()会更改链接本身的所有者或组,而不是链接所指向的对象。先前所有者或主要组对该对象的权限被撤消。"] },
|
||||
{ "name": "fs.lchownSync(path, uid, gid)", "trans": ["同步的 lchown(2), 函数改变文件的所有者以及组。如果命名文件是符号链接,则lchown()会更改链接本身的所有者或组,而不是链接所指向的对象。先前所有者或主要组对该对象的权限被撤消。"] },
|
||||
{ "name": "fs.lutimes(path, atime, mtime, callback)", "trans": ["异步的更改文件时间戳, lutimes()以与utimes(2)相同的方式更改文件的访问和修改时间,不同之处在于,如果filename引用符号链接,则不会取消引用该链接:相反,符号链接的时间戳为改变了。"] },
|
||||
{ "name": "fs.lutimesSync(path, atime, mtime)", "trans": ["同步的更改文件时间戳,lutimes()以与utimes(2)相同的方式更改文件的访问和修改时间,不同之处在于,如果filename引用符号链接,则不会取消引用该链接:相反,符号链接的时间戳为改变了。"] },
|
||||
{ "name": "fs.link(existingPath, newPath, callback)", "trans": ["异步的 link(2), 把一个或多个目标文件链接成可执行文件。"] },
|
||||
{ "name": "fs.linkSync(existingPath, newPath)", "trans": ["同步的 link(2), 把一个或多个目标文件链接成可执行文件。"] },
|
||||
{ "name": "fs.lstat(path[, options], callback)", "trans": ["异步的 lstat(2), 获取文件状态"] },
|
||||
{ "name": "fs.lstatSync(path[, options])", "trans": ["同步的 lstat(2), 获取文件状态"] },
|
||||
{ "name": "fs.mkdir(path[, options], callback)", "trans": ["异步地创建目录"] },
|
||||
{ "name": "fs.mkdirSync(path[, options])", "trans": ["同步地创建目录。也可参见 mkdir(2)。"] },
|
||||
{ "name": "fs.mkdtemp(prefix[, options], callback)", "trans": [ "创建一个唯一的临时目录。"] },
|
||||
{ "name": "fs.mkdtempSync(prefix[, options])", "trans": ["同步的创建一个唯一的临时目录。"] },
|
||||
{ "name": "fs.open(path[, flags[, mode]], callback)", "trans": ["异步地打开文件。 参见 open(2)。mode 用于设置文件模式(权限和粘滞位),但仅限于创建文件时。 在 Windows 上,只能操作写权限,参见 fs.chmod()。"] },
|
||||
{ "name": "fs.opendir(path[, options], callback)", "trans": ["异步地打开目录。参见 opendir(3)。 "] },
|
||||
{ "name": "fs.opendirSync(path[, options])", "trans": ["同步地打开目录。参见 opendir(3)。 "] },
|
||||
{ "name": "fs.openSync(path[, flags, mode])", "trans": ["同步的打开文件,参见 open(2)."] },
|
||||
{ "name": "fs.read(fd, buffer, offset, length, position, callback)", "trans": ["从 fd 指定的文件中读取数据。buffer 是数据(从 fd 读取)要被写入的 buffer。offset 是 buffer 中开始写入的偏移量。length 是整数,指定要读取的字节数。position 参数指定从文件中开始读取的位置。 如果 position 为 null,则从当前文件位置读取数据,并更新文件位置。 如果 position 是整数,则文件位置会保持不变。"] },
|
||||
{ "name": "fs.read(fd, [options,] callback)", "trans": ["同fs.read,会接受一个同步的fs对象"] },
|
||||
{ "name": "fs.readdir(path[, options], callback)", "trans": ["异步的 readdir(3)。 读取目录的内容。"] },
|
||||
{ "name": "fs.readdirSync(path[, options])", "trans": ["readdir(3)。 读取目录的内容。"] },
|
||||
{ "name": "fs.readFile(path[, options], callback)", "trans": ["异步地读取文件的全部内容。 "] },
|
||||
{ "name": "fs.readFileSync(path[, options])", "trans": ["同步地读取文件的全部内容。"] },
|
||||
{ "name": "fs.readlink(path[, options], callback)", "trans": ["异步的 readlink(2), 读取符号链接的值。"] },
|
||||
{ "name": "fs.readlinkSync(path[, options])", "trans": ["同步的 readlink(2), 读取符号链接的值 "] },
|
||||
{ "name": "fs.readSync(fd, buffer, offset, length, position)", "trans": ["fs.read(),从 fd 指定的文件中读取数据。buffer 是数据(从 fd 读取)要被写入的 buffer。offset 是 buffer 中开始写入的偏移量。length 是整数,指定要读取的字节数。position 参数指定从文件中开始读取的位置。 如果 position 为 null,则从当前文件位置读取数据,并更新文件位置。 如果 position 是整数,则文件位置会保持不变。"] },
|
||||
{ "name": "fs.readSync(fd, buffer, [options])", "trans": ["同fs.read,会接受一个同步的fs对象"] },
|
||||
{ "name": "fs.readv(fd, buffers[, position], callback)", "trans": ["异步的读取数据到多个缓冲区"] },
|
||||
{ "name": "fs.readvSync(fd, buffers[, position])", "trans": ["同步的读取数据到多个缓冲区"] },
|
||||
{ "name": "fs.realpath(path[, options], callback)", "trans": ["异步的通过解析 .、 .. 和符号链接异步地计算规范路径名。"] },
|
||||
{ "name": "fs.realpath.native(path[, options], callback)", "trans": ["异步的通过解析 .、 .. 和符号链接异步地计算规范路径名。仅支持可转换为 UTF8 字符串的路径。 "] },
|
||||
{ "name": "fs.realpathSync(path[, options])", "trans": ["同步的 fs.realpath()"] },
|
||||
{ "name": "fs.realpathSync.native(path[, options])", "trans": ["同步的 fs.realpath.native()"] },
|
||||
{ "name": "fs.rename(oldPath, newPath, callback)", "trans": ["异步地把 oldPath 文件重命名为 newPath 提供的路径名。 如果 newPath 已存在,则覆盖它。 "] },
|
||||
{ "name": "fs.renameSync(oldPath, newPath)", "trans": ["同步地把 oldPath 文件重命名为 newPath 提供的路径名。 如果 newPath 已存在,则覆盖它。 "] },
|
||||
{ "name": "fs.rmdir(path[, options], callback)", "trans": ["异步的 rmdir(2)"] },
|
||||
{ "name": "fs.rmdirSync(path[, options])", "trans": ["同步的 rmdir(2)。"] },
|
||||
{ "name": "fs.rm(path[, options], callback)", "trans": ["异步删除文件和目录(以标准POSIX rm实用程序为模型)。"] },
|
||||
{ "name": "fs.rmSync(path[, options])", "trans": ["同步删除文件和目录(以标准POSIX rm实用程序为模型)。"] },
|
||||
{ "name": "fs.stat(path[, options], callback)", "trans": ["异步的 stat(2)"] },
|
||||
{ "name": "fs.statSync(path[, options])", "trans": ["同步的 stat(2)"] },
|
||||
{ "name": "fs.symlink(target, path[, type], callback)", "trans": ["异步的 symlink(2),它会创建名为 path 的链接,该链接指向 target。"] },
|
||||
{ "name": "fs.symlinkSync(target, path[, type])", "trans": ["同步的 symlink(2),它会创建名为 path 的链接,该链接指向 target。"] },
|
||||
{ "name": "fs.truncate(path[, len], callback)", "trans": ["异步的 truncate(2)。将文件截断为指定的长度。"] },
|
||||
{ "name": "fs.truncateSync(path[, len])", "trans": ["同步的 truncate(2)。将文件截断为指定的长度。"] },
|
||||
{ "name": "fs.unlink(path, callback)", "trans": ["异步地删除文件或符号链接。 "] },
|
||||
{ "name": "fs.unlinkSync(path)", "trans": ["同步的 unlink(2)。"] },
|
||||
{ "name": "fs.unwatchFile(filename[, listener])", "trans": ["停止监视 filename 的变化。 如果指定了 listener,则仅移除此特定监听器,否则,将移除所有监听器,从而停止监视 filename。"] },
|
||||
{ "name": "fs.utimes(path, atime, mtime, callback)", "trans": ["更改 path 指向的对象的文件系统时间戳。 "] },
|
||||
{ "name": "fs.utimesSync(path, atime, mtime)", "trans": ["更改 path 指向的对象的文件系统时间戳。 "] },
|
||||
{ "name": "fs.watch(filename[, options][, listener])", "trans": ["监视 filename 的更改,其中 filename 是文件或目录。 "] },
|
||||
{ "name": "fs.watchFile(filename[, options], listener)", "trans": ["监视 filename 的更改。 每当访问文件时都会调用 listener 回调。"] },
|
||||
{ "name": "fs.write(fd, buffer[, offset[, length[, position]]], callback)", "trans": ["写入 buffer 到 fd 指定的文件。 如果 buffer 是普通的对象,则它必须具有自身的 toString 函数属性。offset 决定 buffer 中要被写入的部位, length 是整数,指定要写入的字节数。position 指定文件开头的偏移量(数据要被写入的位置)。 如果 typeof position !== 'number',则数据会被写入当前的位置。 参见 pwrite(2)。"] },
|
||||
{ "name": "fs.write(fd, string[, position[, encoding]], callback)", "trans": ["将 string 写入到 fd 指定的文件。"] },
|
||||
{ "name": "fs.writeFile(file, data[, options], callback)", "trans": ["当 file 是文件名时,则异步地写入数据到文件(如果文件已存在,则覆盖文件)。 data 可以是字符串或 buffer。当 file 是文件描述符时,则其行为类似于直接调用 fs.write()(建议使用)。"] },
|
||||
{ "name": "fs.writeFileSync(file, data[, options])", "trans": ["详见此 API 的异步版本的文档:fs.writeFile()。 "] },
|
||||
{ "name": "fs.writeSync(fd, buffer[, offset[, length[, position]]])", "trans": ["详见此 API 的异步版本的文档:fs.write(fd, buffer...)。"] },
|
||||
{ "name": "fs.writeSync(fd, string[, position[, encoding]])", "trans": ["详见此 API 的异步版本的文档: fs.write(fd, string...)。 "] },
|
||||
{ "name": "fs.writev(fd, buffers[, position], callback)", "trans": ["使用 writev() 将一个 ArrayBufferView 数组写入 fd 指定的文件。"] },
|
||||
{ "name": "fs.writevSync(fd, buffers[, position])", "trans": ["使用 writev() 将一个 ArrayBufferView 数组写入 fd 指定的文件。"] }
|
||||
]
|
||||
@@ -0,0 +1,18 @@
|
||||
[
|
||||
{ "name": "path.basename()", "trans": ["path.basename() 方法会返回参数 path 的最后一部分,类似于 Unix 的 basename 命令。"] },
|
||||
{ "name": "path.delimiter", "trans": ["提供平台特定的路径定界符:'; 用于 Windows', ': 用于 POSIX' "] },
|
||||
{ "name": "path.dirname()", "trans": ["path.dirname() 方法会返回 path 的目录名,类似于 Unix 的 dirname 命令。 尾部的目录分隔符会被忽略"] },
|
||||
{ "name": "path.extname()", "trans": ["path.extname() 方法会返回 path 的扩展名,即 path 的最后一部分中从最后一次出现 .(句点)字符直到字符串结束。 如果在 path 的最后一部分中没有 .,或者如果 path 的基本名称(参见 path.basename())除了第一个字符以外没有 .,则返回空字符串。"] },
|
||||
{ "name": "path.format()", "trans": ["path.format() 方法从对象返回路径字符串。 与 path.parse() 相反。"] },
|
||||
{ "name": "path.isAbsolute()", "trans": ["path.isAbsolute() 方法检测 path 是否为绝对路径。"] },
|
||||
{ "name": "path.join()", "trans": ["path.join() 方法会将所有给定的 path 片段连接到一起(使用平台特定的分隔符作为定界符),然后规范化生成的路径。长度为零的 path 片段会被忽略。 如果连接后的路径字符串为长度为零的字符串,则返回 '.',表示当前工作目录。 "] },
|
||||
{ "name": "path.normalize()", "trans": ["path.normalize() 方法规范化给定的 path,解析 '..' 和 '.' 片段。 "] },
|
||||
{ "name": "path.parse()", "trans": ["path.parse() 方法会返回一个对象,其属性表示 path 的有效元素。 尾部的目录分隔符会被忽略。"] },
|
||||
{ "name": "path.posix", "trans": ["path.posix 属性提供对 path 方法的 POSIX 特定实现的访问。"] },
|
||||
{ "name": "path.relative()", "trans": ["path.relative() 方法根据当前工作目录返回 from 到 to 的相对路径。 如果 from 和 to 各自解析到相同的路径(分别调用 path.resolve() 之后),则返回零长度的字符串。"] },
|
||||
{ "name": "path.resolve()", "trans": ["path.resolve() 方法会将路径或路径片段的序列解析为绝对路径。 "] },
|
||||
{ "name": "path.sep", "trans": ["提供平台特定的路径片段分隔符:Windows 上是 /\\; POSIX 上是 /。 "] },
|
||||
{ "name": "path.toNamespacedPath()", "trans": ["仅在 Windows 系统上,返回给定 path 的等效名称空间前缀路径。 如果 path 不是字符串,则将返回 path 而不进行修改。 "] },
|
||||
{ "name": "path.win32", "trans": ["path.win32 属性提供对特定于 Windows 的 path 方法的实现的访问。"] }
|
||||
]
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user